This is kind of a big bot, well the main features will be that you can store all your mules on it and when you hack an account you will have to list it also and you can swap info from the mule to the hacked account, the user will just click on the mule he wants to use and put in the account he hacked and the bot will change all the info to the same as the one of the hacked account and the hacked account will take the mule's info.
So what do you think ? Who wants to help meh ? oh and ima use vb.net since it's the language that i'm good at.
---------- Post added at 11:13 AM ---------- Previous post was at 10:07 AM ----------
Arti i know tha you are always look at the programming section![]()
Results 1 to 10 of 10
Thread: i'm going to work on a gaia bot
-
02-21-2012 10:13 AM #1Je suis le professeur de français à Thomas
- Join Date
- May 2010
- Location
- France, Paris
- Posts
- 1,848
- Rep
- 148
i'm going to work on a gaia bot
-
02-21-2012 11:36 PM #2Minecraft Donator
Spartan Warrior
- Join Date
- Apr 2010
- Location
- Snatchin Up Your Children
- Posts
- 1,353
- Rep
- 115
-
02-22-2012 08:58 AM #3Je suis le professeur de français à Thomas
- Join Date
- May 2010
- Location
- France, Paris
- Posts
- 1,848
- Rep
- 148
-
02-22-2012 04:44 PM #4
Its pretty easy to make gaia login. Here is mine I wrote in under 10 minutes, including the httpwrapper. This is python2.7.
Gaia Login:
HTTPWrapper:Code:def login(self, Username, Password): self.User = Username self.Pass = Password LoginPage = self.HTTP.Req("http://www.gaiaonline.com/auth/login/") Token = self.HTTP.GetBetween(LoginPage, "name=\"token\" value=\"", "\" />") Sid = self.HTTP.GetBetween(LoginPage, "name=\"sid\" value=\"", "\" />") LoginPost = self.HTTP.Req("http://www.gaiaonline.com/auth/login", {"token": Token, "sid": Sid, "redirect": "", "username": self.User, "password": self.Pass, "signInButton": "Log+In", "chap": ""}) Index = self.HTTP.Req("http://www.gaiaonline.com/?login_success=0") if(self.User.lower() in Index.lower()): self.LoggedIn = True else: self.LoggedIn = False return self.LoggedIn
Code:import urllib import urllib2 import cookielib class HTTPWrapper: def __init__(self, KeepCookies=True): if(KeepCookies): self.cj = cookielib.CookieJar() self.HTTP = urllib2.build_opener(urllib2.HTTPCookieProcessor(self.cj)) else: self.HTTP = urllib2.build_opener() def Req(self, URL, data={}): return self.HTTP.open(URL,urllib.urlencode(data)).read() def GetBetween(self, s, leader, trailer): try: end_of_leader = s.index(leader) + len(leader) start_of_trailer = s.index(trailer, end_of_leader) return s[end_of_leader:start_of_trailer] except: return ""Last edited by MattSmith; 02-22-2012 at 05:50 PM.
GET RID OF JOSEPH KONY!
Follow My Dev Blog!
Originally Posted by Artificial
Originally Posted by Artificial
-
02-22-2012 10:54 PM #5Je suis le professeur de français à Thomas
- Join Date
- May 2010
- Location
- France, Paris
- Posts
- 1,848
- Rep
- 148
I know how to make one but it keeps giving me positive results with false information so it means it's not logging in at all.
And can someone teach how to make an httpwrapper ?
I would like to so I can add my own shitzel
-
02-23-2012 02:22 AM #6
He said he was going to use VB.Net, Matt.
@Jah, To make your own wrappers you can either use Sockets to fully customize everything or you can use HttpWebRequest. Web Requests are a tad easier to use to make your own wrappers, however if you want full control over everything and more functionality, you would have to do some work around it. Using sockets you would need to have a little more knowledge I guess. However I guess you can say they're both the same up to a certain level. Fairly easy.
As for the program, if you were a programmer that knew what you were doing, the program it's self shouldn't take any longer then an hour.
Edit: Scratch that what I said about Sockets and HttpWebRequests. I think the WebRequests are just an interface with Sockets/TCP to make it easier. Not to sure though.
-
02-23-2012 02:39 PM #7Je suis le professeur de français à Thomas
- Join Date
- May 2010
- Location
- France, Paris
- Posts
- 1,848
- Rep
- 148
-
02-23-2012 06:29 PM #8
GET RID OF JOSEPH KONY!
Follow My Dev Blog!
Originally Posted by Artificial
Originally Posted by Artificial
-
02-23-2012 08:45 PM #9
Make sure you are making an instance per account that way they can all be logged in together working at the same time, else you would have to log in, log out, log in etc etc.
Multiple instance example in C#.
This will support up to 100 accounts.PHP Code:HTTPWrapper.HTTPInterface[] Wrapper = new HTTPWrapper.HTTPInterface[100];
Wrapper[0] = new HTTPWrapper.HTTPInterface();
Of course you would want to stick it into a loop of some sort or use an array to hold all the account information then you can just relay which account you want. Index numbers, etc.
Array example in case you don't know.
Of course you can extend all of those to your preferable needs. Once again supports up to 100 accounts.PHP Code:String[] accountInformation = new String[100,3];
accountInformation[0, 0] = Username;
accountInformation[0, 1] = Password;
accountInformation[0, 2] = Email;
-
02-23-2012 11:28 PM #10Je suis le professeur de français à Thomas
- Join Date
- May 2010
- Location
- France, Paris
- Posts
- 1,848
- Rep
- 148


.
Reply With Quote





Bookmarks