Advertisement
ConsoleX

Script Checker Email Paypal

May 1st, 2014
763
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 5.61 KB | None | 0 0
  1. <?php
  2. @set_time_limit(0);
  3.  
  4. function curl($url='',$var='',$Follow=False){
  5.     global $set;
  6.     $curl = curl_init();
  7.     curl_setopt($curl, CURLOPT_URL, $url);
  8.     curl_setopt($curl, CURLOPT_CONNECTTIMEOUT,20);
  9.     curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.64 Safari/537.31');
  10.     curl_setopt($curl, CURLOPT_COOKIE,'PP1.txt');
  11.     curl_setopt($curl, CURLOPT_COOKIEFILE,'PP1.txt');
  12.     curl_setopt($curl, CURLOPT_COOKIEJAR,'PP1.txt');
  13.     curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 3);
  14.     curl_setopt($curl, CURLOPT_HEADER, 0);
  15.     curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);
  16.     curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
  17.     if ($Follow !== False) {
  18.     curl_setopt($curl,CURLOPT_FOLLOWLOCATION,true);
  19.     }
  20.     $result = curl_exec($curl);
  21.     curl_close($curl);
  22.     return $result;
  23. }
  24. echo "<head>
  25. <style type=\"text/css\"><!--
  26.     body {
  27.    
  28.     font-family: 'Open Sans', sans-serif; font-size:13px}
  29.     hr {border:inset 1px #E5E5E5}
  30.     #form-container
  31.     {
  32.         border: solid 1px #ddd;
  33.         border-radius:10px;
  34.         -moz-border-radius: 10px;
  35.         -webkit-border-radius: 10px;
  36.         box-shadow: 0px 0px 15px #888;
  37.         -moz-box-shadow: 0px 0px 15px #888;
  38.         -webkit-box-shadow: 0px 0px 15px #888;
  39.         margin:30px auto;
  40.         padding:10px;
  41.         width:910px;
  42.         text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  43.     }
  44.    
  45.    
  46.    
  47.         #form-container1
  48.     {
  49.         border: solid 1px #ddd;
  50.         border-radius:10px;
  51.         -moz-border-radius: 10px;
  52.         -webkit-border-radius: 10px;
  53.         box-shadow: 0px 0px 15px #888;
  54.         -moz-box-shadow: 0px 0px 15px #888;
  55.         -webkit-box-shadow: 0px 0px 15px #888;
  56.         margin:30px auto;
  57.         padding:10px;
  58.         width:280px;
  59.         text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  60.     }
  61.    
  62.    
  63.     input[type=text], textarea
  64.     {
  65.         background:#fff;
  66.         border:solid 1px #E5E5E5;
  67.         border-radius:5px;
  68.         -moz-border-radius: 5px;
  69.         -webkit-border-radius: 5px;
  70.     }
  71.     textarea { width:100%;height:200px; resize:none }
  72.     input[type=text] { width:160px;text-align:center }
  73.     input[type=text]:focus, textarea:focus { background:#EDF3FC; border:solid 1px #D5E3F9; }
  74.     .submit-button
  75.     {
  76.         background: #57A02C;
  77.         border:solid 1px #57A02C;
  78.         border-radius:5px;
  79.             -moz-border-radius: 5px;
  80.             -webkit-border-radius: 5px;
  81.         -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.6);
  82.         -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);
  83.         text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
  84.         border-bottom: 1px solid rgba(0,0,0,0.25);
  85.         position: relative;
  86.         color:#FFF;
  87.         display: inline-block;
  88.         cursor:pointer;
  89.         font-size:13px;
  90.         padding:3px 8px;
  91.     }
  92.     .submit-button:hover { background:#82D051;border:solid 1px #86CC50; }
  93.     .table
  94.     {
  95.         border: solid 1px #ddd;
  96.         border-radius:10px;
  97.         -moz-border-radius: 5px;
  98.         -webkit-border-radius: 5px;
  99.         padding-left:10px;
  100.     }
  101.    
  102.     .unverified
  103.     {
  104.         color:#800000;
  105.         font-weight: bold; 
  106.     }
  107.     .business{
  108.         color:yellow;
  109.         font-weight: bold;
  110.     }
  111.     .premier{
  112.         color:#00FF00;
  113.         font-weight: bold;
  114.     }
  115.     .verified{
  116.         color:#800080;
  117.         font-weight: bold;
  118.     }
  119.     .nolog{
  120.         font-size: 10px;
  121.         font: red;
  122.     }
  123.  
  124.  
  125. --></style>
  126. <title>Valid Email Checker By Gz SnIPeR</title>
  127. </head><div align=\"center\"></center>";
  128.  
  129. $emails = $_POST['emails'];
  130. print '<div id="form-container"> <form method="POST">
  131.  
  132. <p align="center"><font face="Times New Roman" size="6">PayPal Valid Email
  133. Checker<br>
  134. Gz SnIPeR</font></p>
  135.  
  136.     <p><textarea rows="10" name="emails" cols="48">'.$emails.'</textarea></p>
  137.     <p><input class="submit-button" type="submit" value="Submit" name="B1"></p>
  138. </form> </div>';
  139. if (!empty($emails)) {
  140. $emails = explode("\r\n", $emails);
  141. $yes = 0;
  142. $not = 0;
  143. $inv = 0;
  144. $count = 1;
  145. print "<p align=\"left\">Checking <font color=\"#000000\"> <b>".count($emails)."</b></font> emails ....<br></p><p align=\"left\">";
  146. foreach ( $emails as $email ) {
  147.     $email = trim($email);
  148.     print $count .". Checking <b><font color=\"#000000\">".$email."</font>  ..... </b>";
  149.     $count++;
  150.     if(filter_var($email, FILTER_VALIDATE_EMAIL)){
  151. $_CheckAction = curl('https://www.paypal.com/cgi-bin/webscr?cmd=_send-money&myAllTextSubmitID=&cmd=_send-money&type=external&payment_source=p2p_mktgpage&payment_type=Gift&sender_email='.$email.'&email=gz%40s.com&currency=USD&amount=10&amount_ccode=USD&submit.x=Continue',CURLOPT_FAILONERROR,TRUE);
  152.             if(!strpos($_CheckAction, "region")) {
  153.                 print "<font size=\"3\" color=\"#006600\">Yes</font> <br>";
  154.                 $yes++;
  155.                 $vaild_yes .=$email."\n";
  156.             }
  157.         else {
  158.             print "<font color=\"#FF0000\">NO</font><br>";
  159.             $not++;
  160.             $vaild_no .=$email."\n";
  161.         }
  162.     }
  163.     else {
  164.         print "<font color=\"#FF0000\">Invaild email</font><br>";
  165.         $inv++;
  166.         $invaild .=$email."\n";
  167. }
  168. }
  169.  
  170. print '<p><table border="0" width="100%">
  171.    
  172.  
  173.  
  174.  
  175.         <tr>
  176.         <td><p align="center"><font face="Times New Roman" size="4">PayPal emails</font> <b>(<font color="#006600"><b>'.$yes.'</b></font>)</b> </p></td>
  177.         <td><p align="center"><font face="Times New Roman" size="4">Not PayPal emails</font> <b>(<font color="#FF0000">'.$not.'</font>)</b> </p> </td>
  178.         <td><p align="center"><font face="Times New Roman" size="4">Invalid emails</font> <b>(<font color="#FF0000">'.$inv.'</font>)</b> </p> </td>
  179. </tr>
  180.  
  181.     <tr>
  182.  
  183.    
  184.    
  185.    
  186.         <td><div id="form-container1"><textarea rows="10" name="S1" cols="43">'.$vaild_yes.'</textarea></div></td>
  187.         <td><div id="form-container1"><textarea rows="10" name="S2" cols="43">'.$vaild_no.'</textarea></div></td>
  188.         <td><div id="form-container1"><textarea rows="10" name="S3" cols="43">'.$invaild.'</textarea></div></td>
  189.     </tr>
  190. </table></p>';
  191. }
  192.  
  193. ?><p>&nbsp;</p>
  194.     <p>Copyright ©&nbsp; <span class="auto-style8">2013 </span></p>
  195.     <p><span class="auto-style8">Gz SnIPeR</span>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement