Paypal Valid Email Checker


SUBMITTED BY: Guest

DATE: Oct. 22, 2013, 12:07 p.m.

FORMAT: Text only

SIZE: 7.9 kB

HITS: 2642

  1. <?php
  2. @set_time_limit(0);
  3. function curl($url='',$var='',$Follow=False){
  4. global $set;
  5. $curl = curl_init();
  6. curl_setopt($curl, CURLOPT_URL, $url);
  7. curl_setopt($curl, CURLOPT_CONNECTTIMEOUT,20);
  8. 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');
  9. curl_setopt($curl, CURLOPT_COOKIE,'PP1.txt');
  10. curl_setopt($curl, CURLOPT_COOKIEFILE,'PP1.txt');
  11. curl_setopt($curl, CURLOPT_COOKIEJAR,'PP1.txt');
  12. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 3);
  13. curl_setopt($curl, CURLOPT_HEADER, 0);
  14. curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);
  15. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
  16. if ($Follow !== False) {
  17. curl_setopt($curl,CURLOPT_FOLLOWLOCATION,true);
  18. }
  19. $result = curl_exec($curl);
  20. curl_close($curl);
  21. return $result;
  22. }
  23. echo "<head>
  24. <style type=\"text/css\"><!--
  25. body {
  26. font-family: 'Open Sans', sans-serif; font-size:13px}
  27. hr {border:inset 1px #E5E5E5}
  28. #form-container
  29. {
  30. border: solid 1px #ddd;
  31. border-radius:10px;
  32. -moz-border-radius: 10px;
  33. -webkit-border-radius: 10px;
  34. box-shadow: 0px 0px 15px #888;
  35. -moz-box-shadow: 0px 0px 15px #888;
  36. -webkit-box-shadow: 0px 0px 15px #888;
  37. margin:30px auto;
  38. padding:10px;
  39. width:910px;
  40. text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  41. }
  42. #form-container1
  43. {
  44. border: solid 1px #ddd;
  45. border-radius:10px;
  46. -moz-border-radius: 10px;
  47. -webkit-border-radius: 10px;
  48. box-shadow: 0px 0px 15px #888;
  49. -moz-box-shadow: 0px 0px 15px #888;
  50. -webkit-box-shadow: 0px 0px 15px #888;
  51. margin:30px auto;
  52. padding:10px;
  53. width:280px;
  54. text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  55. }
  56. input[type=text], textarea
  57. {
  58. background:#fff;
  59. border:solid 1px #E5E5E5;
  60. border-radius:5px;
  61. -moz-border-radius: 5px;
  62. -webkit-border-radius: 5px;
  63. }
  64. textarea { width:100%;height:200px; resize:none }
  65. input[type=text] { width:160px;text-align:center }
  66. input[type=text]:focus, textarea:focus { background:#EDF3FC; border:solid 1px #D5E3F9; }
  67. .submit-button
  68. {
  69. background: #57A02C;
  70. border:solid 1px #57A02C;
  71. border-radius:5px;
  72. -moz-border-radius: 5px;
  73. -webkit-border-radius: 5px;
  74. -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.6);
  75. -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);
  76. text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
  77. border-bottom: 1px solid rgba(0,0,0,0.25);
  78. position: relative;
  79. color:#FFF;
  80. display: inline-block;
  81. cursor:pointer;
  82. font-size:13px;
  83. padding:3px 8px;
  84. }
  85. .submit-button:hover { background:#82D051;border:solid 1px #86CC50; }
  86. .table
  87. {
  88. border: solid 1px #ddd;
  89. border-radius:10px;
  90. -moz-border-radius: 5px;
  91. -webkit-border-radius: 5px;
  92. padding-left:10px;
  93. }
  94. .unverified
  95. {
  96. color:#800000;
  97. font-weight: bold;
  98. }
  99. .business{
  100. color:yellow;
  101. font-weight: bold;
  102. }
  103. .premier{
  104. color:#00FF00;
  105. font-weight: bold;
  106. }
  107. .verified{
  108. color:#800080;
  109. font-weight: bold;
  110. }
  111. .nolog{
  112. font-size: 10px;
  113. font: red;
  114. }
  115. --></style>
  116. <title>Valid Email Checker By Gz SnIPeR</title>
  117. </head><div align=\"center\"></center>";
  118. $emails = $_POST['emails'];
  119. print '<div id="form-container"> <form method="POST">
  120. <p align="center"><font face="Times New Roman" size="6">PayPal Valid Email
  121. Checker<br>
  122. Gz SnIPeR</font></p>
  123. <p><textarea rows="10" name="emails" cols="48">'.$emails.'</textarea></p>
  124. <p><input class="submit-button" type="submit" value="Submit" name="B1"></p>
  125. </form> </div>';
  126. if (!empty($emails)) {
  127. $emails = explode("\r\n", $emails);
  128. $yes = 0;
  129. $not = 0;
  130. $inv = 0;
  131. $count = 1;
  132. print "<p align=\"left\">Checking <font color=\"#000000\"> <b>".count($emails)."</b></font> emails ....<br></p><p align=\"left\">";
  133. foreach ( $emails as $email ) {
  134. $email = trim($email);
  135. print $count .". Checking <b><font color=\"#000000\">".$email."</font> ..... </b>";
  136. $count++;
  137. if(filter_var($email, FILTER_VALIDATE_EMAIL)){
  138. $_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);
  139. if(!strpos($_CheckAction, "region")) {
  140. print "<font size=\"3\" color=\"#006600\">Yes</font> <br>";
  141. $yes++;
  142. $vaild_yes .=$email."\n";
  143. }
  144. else {
  145. print "<font color=\"#FF0000\">NO</font><br>";
  146. $not++;
  147. $vaild_no .=$email."\n";
  148. }
  149. }
  150. else {
  151. print "<font color=\"#FF0000\">Invaild email</font><br>";
  152. $inv++;
  153. $invaild .=$email."\n";
  154. }
  155. }
  156. print '<p><table border="0" width="100%">
  157. <tr>
  158. <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>
  159. <td><p align="center"><font face="Times New Roman" size="4">Not PayPal emails</font> <b>(<font color="#FF0000">'.$not.'</font>)</b> </p> </td>
  160. <td><p align="center"><font face="Times New Roman" size="4">Invalid emails</font> <b>(<font color="#FF0000">'.$inv.'</font>)</b> </p> </td>
  161. </tr>
  162. <tr>
  163. <td><div id="form-container1"><textarea rows="10" name="S1" cols="43">'.$vaild_yes.'</textarea></div></td>
  164. <td><div id="form-container1"><textarea rows="10" name="S2" cols="43">'.$vaild_no.'</textarea></div></td>
  165. <td><div id="form-container1"><textarea rows="10" name="S3" cols="43">'.$invaild.'</textarea></div></td>
  166. </tr>
  167. </table></p>';
  168. }
  169. ?><p>&nbsp;</p>
  170. <p>Copyright ©&nbsp; <span class="auto-style8">2013 </span></p>
  171. <p><span class="auto-style8">Gz SnIPeR</span>

comments powered by Disqus