Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- Tingal make doang ga usah colak coleklah
- */
- $m="\033[1;31m";
- $k="\033[1;33m";
- $h="\033[1;32m";
- $b="\033[1;34m";
- $wht="\033[37m";
- $cyan = "\033[1;36m";
- $f = file_get_contents("https://www.ultratools.com/tools/emailTestResult");
- preg_match("/<input type=\"hidden\" name=\"as_sfid\" value=\"(.*?)\" \/>/", $f, $token);
- $live = 0;
- $die = 0;
- $i = 0;
- $listcode = $argv[1];
- $codelistlist = file_get_contents($listcode);
- $code_list_array = file($listcode);
- $code = explode(PHP_EOL, $codelistlist);
- $count = count($code);
- $url = 'https://www.ultratools.com/tools/emailTestResult';
- foreach($code as $mail) {
- $tgl = date("Y-m-d");
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($ch, CURLOPT_POSTFIELDS, 'emailOrDomain='.$mail.'&as_sfid='.$token[1][0]);
- $x = curl_exec($ch);
- if (preg_match("/Success/", $x)) {
- echo $cyan."[".$i++."/".$count."]$k LIVE| $mail $wht \n";
- $fopen = fopen("LiveMail[".$tgl."].txt", "a+");
- $fwrite = fwrite($fopen, "$mail\n");
- fclose($fopen);
- $live++;
- }else{
- echo $cyan."[".$i++."/".$count."]$m DIE | $mail $wht\n";
- $die++;
- }
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment