Advertisement
dr-iman

Zone-h Mass Poster

Jun 13th, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 2.81 KB | None | 0 0
  1. #!/usr/bin/perl
  2. # Coded By : DR-IMAN
  3. # Site : Guardiran.org
  4.  
  5. use URI::URL;
  6. use LWP::UserAgent;
  7. use Term::ANSIColor;
  8. use IO::Socket::INET;
  9. use HTTP::Request;
  10. use HTTP::Request::Common qw(POST);
  11. use HTTP::Request::Common qw(GET);
  12. system(($^O eq 'MSWin32') ? 'cls' : 'clear');
  13. print qq(
  14.  
  15.  _______  _______  __    _  _______         __   __    
  16. |       ||       ||  |  | ||       |       |  | |  |  
  17. |____   ||   _   ||   |_| ||    ___| ____  |  |_|  |  
  18.  ____|  ||  | |  ||       ||   |___ |____| |       |  
  19. | ______||  |_|  ||  _    ||    ___|       |       |  
  20. | |_____ |       || | |   ||   |___        |   _   |  
  21. |_______||_______||_|  |__||_______|       |__| |__|  
  22.  __   __  _______  _______  _______                    
  23. |  |_|  ||   _   ||       ||       |                  
  24. |       ||  |_|  ||  _____||  _____|                  
  25. |       ||       || |_____ | |_____                    
  26. |       ||       ||_____  ||_____  |                  
  27. | ||_|| ||   _   | _____| | _____| |                  
  28. |_|   |_||__| |__||_______||_______|                  
  29.  _______  _______  _______  _______  _______  ______  
  30. |       ||       ||       ||       ||       ||    _ |  
  31. |    _  ||   _   ||  _____||_     _||    ___||   | ||  
  32. |   |_| ||  | |  || |_____   |   |  |   |___ |   |_||_
  33. |    ___||  |_|  ||_____  |  |   |  |    ___||    __  |
  34. |   |    |       | _____| |  |   |  |   |___ |   |  | |
  35. |___|    |_______||_______|  |___|  |_______||___|  |_|
  36.  
  37. );
  38.  
  39. print "[START] Targets List :";
  40. my $list=<STDIN>;
  41. chomp($list);
  42.   open (THETARGET, "<$list") || die "[-] Can't open the Targets List !";
  43. @TARGETS = <THETARGET>;
  44. close THETARGET;
  45. $link=$#TARGETS + 1;
  46. foreach $tofuck(@TARGETS){
  47.  
  48. chomp($tofuck);
  49.  
  50.  
  51.  
  52. $req = HTTP::Request->new(GET=>$tofuck);
  53. $useragent = LWP::UserAgent->new();
  54. $response = $useragent->request($req);
  55. $ar = $response->content;
  56. if ($ar =~ /Hacked|/){
  57. open (TEXT, '>>Defaced.txt');
  58. print TEXT "\n$tofuck   =>  Posted !!\n\n";
  59. close (TEXT);
  60. print colored ("Wait",'white on_red'),"\n";
  61.                                 $dmn= $tofuck;
  62.                                 $def="dr-iman";
  63.                                 $zn="http://zone-h.org/notify/single";
  64.                                 $lwp=LWP::UserAgent->new;
  65.                                 $res=$lwp  -> post($zn,[
  66.                 'defacer'     => $def,
  67.                 'domain1'   => $dmn,
  68.                 'hackmode' => '15',
  69.                 'reason'       => '1',
  70.                 'submit'       => 'Send',
  71.                                 ]);
  72.                 if ($res->content =~ /color="red">(.*)<\/font><\/li>/) {
  73.                 print "$dmn submit $1\n";
  74.                                 }
  75.                                 else
  76.                                 {
  77.                                 print colored ("[ERROR] Submited During Last Year",'white on_red'),"\n";
  78.                                      }
  79. }
  80. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement