Advertisement
dr-iman

Aljyyosh Mass Poster

Jun 13th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 3.19 KB | None | 0 0
  1. #!/usr/bin/perl -U
  2. #
  3. # usage : perl a.pl Results.txt
  4. # Tools By : DR-IMAN
  5. # Site : Guardiran.org
  6. # Tel : DarkCod3r
  7.  
  8. use HTTP::Request;
  9. use LWP::UserAgent;
  10. use IO::Select;
  11. use HTTP::Response;
  12. sub do_visit()
  13. {
  14.   $useragen=LWP::UserAgent->new;
  15.   $useragent="Mozilla/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0";
  16.   $useragen->agent($useragent);
  17.   $useragen->timeout(7);
  18.   our $response=$useragen->get($url);
  19.   our $content=$response->content;
  20. }
  21. print "
  22.  
  23.  
  24. _______ __ __                         __    
  25. |   _   |  |__.--.--.--.--.-----.-----|  |--.
  26. |       |  |  |  |  |  |  |  _  |__ --|     |
  27. |___|___|__|  |___  |___  |_____|_____|__|__|
  28.          |___|_____|_____|                  
  29. _______                                    
  30. |   |   .---.-.-----.-----.                  
  31. |       |  _  |__ --|__ --|                  
  32. |__|_|__|___._|_____|_____|                  
  33.                                            
  34. ______             __                      
  35. |   __ .-----.-----|  |_.-----.----.        
  36. |    __|  _  |__ --|   _|  -__|   _|        
  37. |___|  |_____|_____|____|_____|__|          
  38.                                            
  39.                                              
  40. [-][-][-][-][-][-][-][-][-][-]                                                
  41.  [-] Coded By : DR-IMAN     [-]
  42. [-] Site : Guardiran.org   [-]
  43. [-] Tel : DarkCod3r        [-]
  44. [-][-][-][-][-][-][-][-][-][-]
  45.  
  46. [*] usage : perl a.pl Results.txt
  47.  
  48. \n";
  49. $file=$ARGV[0];
  50. open(SHELL, "<$file");
  51.          my(@line) = <SHELL>;
  52.          @line = sort(@line);
  53.          my($http);
  54.      lc($http);
  55.          foreach $http (@line)
  56.            {
  57.            chomp($http);
  58.            $http =~ s/^\s+//;
  59.            $http =~ s/\s+$//;
  60.                
  61.           if($http=~/http/)
  62.           {
  63.               our $url=$http;
  64.               do_visit();
  65.          if($content=~/Hacked/ || $content=~/hacked/)
  66.               {
  67.           $Results=lc($url);
  68. #              print "$Results \n";
  69. system "echo $Results >> empes.txt";
  70. ## submit to aljyyosh ##
  71.  
  72.                 $target=$Results;
  73.                 $notifier="Guardiran Security Team";
  74.                 if ($target =~ /http:\/\//)
  75.                 {
  76.                 $U="http://aljyyosh.org/single.php";
  77.                 $lwp=LWP::UserAgent->new;
  78.                 $res=$lwp  -> post($U,[
  79.                 'hacker'     => $notifier,
  80.                 'site'   => $target,
  81.                 'how' => '30',
  82.                 'why'       => '5',
  83.                 'addsite'       => 'Send',
  84.                 'alj'       => 'aljyyosh',
  85.                 ]);
  86.                 if ($res->content =~ /color="red">(.*)<\/font><\/li>/) {
  87.                 print "$Results addsite $1\n";
  88.                 }
  89.                 else
  90.                 {
  91.                 print "$Results \n";
  92.                 }
  93.                 }
  94.                 else
  95.                 {
  96.                 $new="http://" . "$target";
  97.                 $U="http://aljyyosh.org/single.php";
  98.                 $lwp=LWP::UserAgent->new;
  99.                 $res=$lwp  -> post($U,[
  100.                 'hacker'     => $notifier,
  101.                 'site'   => $target,
  102.                 'how' => '1',
  103.                 'why'       => '1',
  104.                 'addsite'       => 'Send',
  105.                 'alj'       => 'aljyyosh',
  106.                 ]);
  107.                 if ($res->content =~ /color="red">(.*)<\/font><\/li>/) {
  108.                 print "$Results addsite $1\n";
  109.                 }
  110.                 else
  111.                 {
  112.                 print "$Results \n";
  113.                 }
  114.                 }
  115.  
  116. ## submit Done ###
  117.               }
  118. #         else{
  119. #         $Results=lc($url);
  120. #         print "$Result not found \n";  
  121. #       }
  122.           }
  123. }
  124. close(SHELL);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement