Advertisement
RHDyarAP

Vermail

Mar 21st, 2019
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.75 KB | None | 0 0
  1. <?php
  2.  
  3. /*
  4.  
  5. UDAH GRATIS  !!
  6. GA USAH CURAT CORET ANJEEENG !!!
  7.  
  8.  
  9. */
  10. system(clear);
  11. $m="\033[1;31m";
  12. $k="\033[1;33m";
  13. $h="\033[1;32m";
  14. $b="\033[1;34m";
  15. $wht="\033[37m";
  16. $cyan = "\033[1;36m";
  17.  
  18. //$f = file_get_contents("https://www.ultratools.com/tools/emailTestResult");
  19. //preg_match("/<input type=\"hidden\" name=\"as_sfid\" value=\"(.*?)\" \/>/", $f, $token);
  20. $live = 0;
  21. $die = 0;
  22. $i = 0;
  23. $listcode = $argv[1];
  24. $codelistlist = file_get_contents($listcode);
  25. $code_list_array = file($listcode);
  26. $code = explode(PHP_EOL, $codelistlist);
  27. $count = count($code);
  28. $url = 'https://www.ultratools.com/tools/emailTestResult';
  29.     echo $b."=====================================$wht\n";
  30.     echo $k."        ===[Email Verifer]===        $wht\n";
  31.     echo $h."       contact: fb.com/annai23       $wht\n";
  32.     echo $b."================[".$wht."RHD".$b."]================$wht\n";
  33.     sleep(2);
  34.     if($argv[1]){
  35. foreach ($code as $key => $mail) {
  36.    
  37. $tgl = date("Y-m-d");
  38. $ch = curl_init();
  39. curl_setopt($ch, CURLOPT_URL, $url);
  40. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  41. curl_setopt($ch, CURLOPT_POSTFIELDS, 'emailOrDomain='.$mail);
  42. curl_setopt($ch, CURLOPT_ENCODING, 'gzip, deflate');
  43.  
  44. $headers = array();
  45. $headers[] = 'User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:65.0) Gecko/20100101 Firefox/65.0';
  46. $headers[] = 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8';
  47. $headers[] = 'Accept-Language: en-US,en;q=0.5';
  48. $headers[] = 'Referer: https://www.ultratools.com/tools/emailTestResult';
  49. $headers[] = 'Content-Type: application/x-www-form-urlencoded';
  50. $headers[] = 'Connection: keep-alive';
  51. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
  52. $x = curl_exec($ch);
  53. preg_match_all('|<span class="value">(.*?)</span>|si', $x, $mx);
  54. if (preg_match("|>Success</span>|", $x)) {
  55.     echo $cyan."[".$i++."/".$count."]$k| LIVE| $mail | ".$h."MX Record ".$wht."=>$h ".$mx[1][0]."$wht \n";
  56.          $fopen = fopen("LiveMail[".$tgl."].txt", "a+");
  57.          $fwrite = fwrite($fopen, "$mail \n");
  58.         fclose($fopen);
  59.     $live++;
  60. }else if (preg_match("|<strong>Sorry, there was a problem.</strong>|", $x)) {
  61. echo $cyan."[".$i++."/".$count."]$b| INV | $mail".$wht." \n";
  62. }else{
  63.     echo $cyan."[".$i++."/".$count."]$m| DIE | $mail | ".$h."MX Record ".$wht."=>$h ".$mx[1][0]."$wht \n";
  64.     $die++;
  65. }
  66. }
  67.     echo $b."=========".$wht." [$h RH Dyar Aryana Putra$wht ]$b =========$wht\n";
  68. }else{
  69.     echo $b."=====================================$wht\n";
  70.     echo $k."        ===[Email Verifer]===        $wht\n";
  71.     echo $h."             RH Dyar AP              $wht\n";
  72.     echo $b."=====================================$wht\n";
  73.     echo $m."SALAH GOBLOK !!!!!!!!!!!!!!!!!! $wht \n";
  74.     echo $m."Usage comand : php ".$argv[0]." list.txt $wht \n";
  75. }
  76.  
  77. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement