Advertisement
AZZATSSINS_CYBERSERK

ZoneH Mass Submit (CLI)

Jun 13th, 2017
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.07 KB | None | 0 0
  1. <?php
  2. ini_set('display_errors', 0);
  3. error_reporting(0);
  4. /*AZZATSSINS*/
  5. print "  __   ____  ____   __  ____  ____  ____  __  __ _  ____
  6. / _\ (__  )(__  ) / _\(_  _)/ ___)/ ___)(  )(  ( \/ ___)
  7. /    \ / _/  / _/ /    \ )(  \___ \\___ \ )( /    /\___ \
  8. \_/\_/(____)(____)\_/\_/(__) (____/(____/(__)\_)__)(____/
  9.  
  10. ___________________________ZoneH___________________________";
  11. echo "\nNick: ";$nick=trim(fgets(STDIN,1024));
  12. echo "\nSites List (FILE): ";$setlis=trim(fgets(STDIN,1024));
  13. $domain = explode("\n", file_get_contents($setlis));
  14.     echo "Notify with nick [ ".$nick." ] \n";
  15. function zoneh($url,$nick) {
  16. $ch = curl_init("http://www.zone-h.com/notify/single");
  17. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  18. curl_setopt($ch, CURLOPT_POST, true);
  19. curl_setopt($ch, CURLOPT_POSTFIELDS, "defacer=$nick&domain1=$url&hackmode=1&reason=1&submit=Send");
  20. return curl_exec($ch);
  21. curl_close($ch);
  22. }
  23. foreach($domain as $url) {
  24. $zoneh = zoneh($url,$nick);
  25. if(preg_match("/color=\"red\">OK<\/font><\/li>/i", $zoneh)) {
  26. echo "\n".$url." -> OK";
  27. } else {
  28. echo "\n".$url." -> NO";
  29.     }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement