Author
Message
[toxic]
Post subject: what would u call this bot?
Posted: Thu Aug 21, 2008 8:03 am
Joined: Fri Jun 27, 2008 10:05 am
Posts: 497
i made a bot that checks all bebo ids from like 1 and goes through thousands of ids and then only grabs out the public ones what would u call it...
id crawler?
or. . . what need a name
if it works good ill release the bot but it will be in multi bot 5 dont like it being in multi bot 5 tough luck :P
_________________
RyaN
Post subject: Re: what would u call this bot?
Posted: Thu Aug 21, 2008 9:47 am
Joined: Sat Oct 20, 2007 5:06 pm
Posts: 756
Location: England
ID Crawler is a good name. Can't wait to see this.
_________________AciidForums.com
Formally known as 'Web-Bug'
Visit my Blog; full of interesting junk! (Updated Daily)
[toxic]
Post subject: Re: what would u call this bot?
Posted: Thu Aug 21, 2008 9:51 am
Joined: Fri Jun 27, 2008 10:05 am
Posts: 497
yes works perfect except 1 tiny problem
it dont do private profiles ill ask slayer why it wont search the string on the page
i tried all strings
like
If InStr(1, strHTML, "You are not authorised") Then
and i tried all sort of things but it wont find the string
so atm the bot has
captcha detector
checkbox to grab ids if person is online
it pwns and it also has a save function
_________________
qazxsw
Post subject: Re: what would u call this bot?
Posted: Thu Aug 21, 2008 9:52 am
Joined: Mon Jan 21, 2008 10:24 am
Posts: 1554
Location: Rep. Of Ireland
Bebo Public Profile Stealer v1.0
_________________
[toxic]
Post subject: Re: what would u call this bot?
Posted: Thu Aug 21, 2008 10:03 am
Joined: Fri Jun 27, 2008 10:05 am
Posts: 497
qazxsw wrote:
Bebo Public Profile Stealer v1.0
:S how can it be used a profile stealer...
it scans for working ids..
like you put a id in say 1029 and it will check if account is valid if it is then it adds to list then goes next id which would be 1030
but it dont do private profiles yet :P
_________________
qazxsw
Post subject: Re: what would u call this bot?
Posted: Thu Aug 21, 2008 10:08 am
Joined: Mon Jan 21, 2008 10:24 am
Posts: 1554
Location: Rep. Of Ireland
I dont know how to hack accounts but seeing how an account can be hacked manually, i presume in theory a hacking bot could be made and maybe integrated into a futer edition on your bot. Alot to ask i know but its just a thought. Surprised no one has made or attempt to make a hacking bot yet, but i dont know how to hack so i dont know how difficult it is to actually do.
_________________
[toxic]
Post subject: Re: what would u call this bot?
Posted: Thu Aug 21, 2008 10:11 am
Joined: Fri Jun 27, 2008 10:05 am
Posts: 497
qazxsw wrote:
I dont know how to hack accounts but seeing how an account can be hacked manually, i presume in theory a hacking bot could be made and maybe integrated into a futer edition on your bot. Alot to ask i know but its just a thought. Surprised no one has made or attempt to make a hacking bot yet, but i dont know how to hack so i dont know how difficult it is to actually do.
well only way i can think of a hacking bot is a brute forcer load a password list then check but bebo has lockout system on bebo mobile aswell
_________________
Aced
Post subject: Re: what would u call this bot?
Posted: Thu Aug 21, 2008 10:15 am
Joined: Tue Apr 15, 2008 9:49 pm
Posts: 1163
_________________ Silent gratitude isn't much use to anyone. - G.B. Stern
[toxic]
Post subject: Re: what would u call this bot?
Posted: Thu Aug 21, 2008 10:16 am
Joined: Fri Jun 27, 2008 10:05 am
Posts: 497
that dont work that site i tried logging in but didnt let me said something about certificate ...
_________________
Aced
Post subject: Re: what would u call this bot?
Posted: Thu Aug 21, 2008 10:17 am
Joined: Tue Apr 15, 2008 9:49 pm
Posts: 1163
yeah got to to let it have a certificate or something because its https:// s=security certified site?
_________________ Silent gratitude isn't much use to anyone. - G.B. Stern
Liam
Post subject: Re: what would u call this bot?
Posted: Thu Aug 21, 2008 10:28 am
Joined: Mon Feb 04, 2008 3:57 am
Posts: 2492
Location: Wales
[toxic] wrote:
If InStr(1, strHTML, "You are not authorised") Then
Take the 1 out
Code:
If InStr(strHTML, "You are not authorised") Then
[toxic]
Post subject: Re: what would u call this bot?
Posted: Thu Aug 21, 2008 10:30 am
Joined: Fri Jun 27, 2008 10:05 am
Posts: 497
Liam wrote:
[toxic] wrote:
If InStr(1, strHTML, "You are not authorised") Then
Take the 1 out
Code:
If InStr(strHTML, "You are not authorised") Then
alright thanks ill try it now
_________________
[toxic]
Post subject: Re: what would u call this bot?
Posted: Thu Aug 21, 2008 10:36 am
Joined: Fri Jun 27, 2008 10:05 am
Posts: 497
still dont work liam
_________________
Liam
Post subject: Re: what would u call this bot?
Posted: Thu Aug 21, 2008 10:37 am
Joined: Mon Feb 04, 2008 3:57 am
Posts: 2492
Location: Wales
What have you got after then?
[toxic]
Post subject: Re: what would u call this bot?
Posted: Thu Aug 21, 2008 10:45 am
Joined: Fri Jun 27, 2008 10:05 am
Posts: 497
Liam wrote:
What have you got after then?
ok this might look weird but dont tease my coding
Code:
txtID.text = txtID.text + 1 strHTML = Wrapper.GetWrapper("http://www.bebo.com/Profile.jsp?MemberId=" & txtID.Text & "") If InStr(1, strHTML, ("You are not authorised") Then ListView1.ListItems.Add = (txtID) Label1.Caption = Label1.Caption + 1 Elseif InStr(1, strHTML, ("Member Since") Then ListView1.ListItems.Add = (txtID) Label1.Caption = Label1.Caption + 1 else label2.caption = label2.caption + 1 Exit Sub
i put the if string as "member since" because all profiles have that and its only string that would be on the page if its public but if its private then it would look for you are not authrise that would count as private so we want it to count as a good id so it adds to the list then if it cant find the string "Member since" or you are not authorised then it would count as nothing cause the account dont work so yer thats my coding way haha dont tease it :P its messy yes but idc :P
p.s its in a timer so no need to add loop the interval is set to 1 so its still alot fast
_________________
TT SlayeR
Post subject: Re: what would u call this bot?
Posted: Thu Aug 21, 2008 11:11 am
Joined: Wed Jul 23, 2008 2:15 am
Posts: 106
It's authorized with a Z not a S. Also, make sure you have signed into an account.
_________________ <3 Bexs Forever <3http://www.dirtycodinghabitz.net Brucey & Easdale - Homies for lifePierce wrote:
Go and have a burger lol
Thanks Easdale
Liam
Post subject: Re: what would u call this bot?
Posted: Thu Aug 21, 2008 11:13 am
Joined: Mon Feb 04, 2008 3:57 am
Posts: 2492
Location: Wales
Also why you adding the 1 that fails to the list?
[toxic]
Post subject: Re: what would u call this bot?
Posted: Thu Aug 21, 2008 11:17 am
Joined: Fri Jun 27, 2008 10:05 am
Posts: 497
TT SlayeR wrote:
It's authorized with a Z not a S. Also, make sure you have signed into an account.
hmm no wonder why u need sign in
haha sorry people ill code it asap lol
what failed?
if its your not authorised you can still add them
im making it for friend adder to get ids.. blaster is slow..
_________________
Liam
Post subject: Re: what would u call this bot?
Posted: Thu Aug 21, 2008 11:21 am
Joined: Mon Feb 04, 2008 3:57 am
Posts: 2492
Location: Wales
[toxic] wrote:
Code:
If InStr(1, strHTML, ("You are not authorised") Then ListView1.ListItems.Add = (txtID) Label1.Caption = Label1.Caption + 1
Well if its not Authorized then doesnt that normaly mean the Bebo is deleted? If so why you adding whats deleted if you get me?
[toxic]
Post subject: Re: what would u call this bot?
Posted: Thu Aug 21, 2008 11:30 am
Joined: Fri Jun 27, 2008 10:05 am
Posts: 497
Liam wrote:
[toxic] wrote:
Code:
If InStr(1, strHTML, ("You are not authorised") Then ListView1.ListItems.Add = (txtID) Label1.Caption = Label1.Caption + 1
Well if its not Authorized then doesnt that normaly mean the Bebo is deleted? If so why you adding whats deleted if you get me?look!
if it says "you are not authorised" there page is private
if it says "Member Since" there on public
if it says something else then its not working account
you can still add private pages man read it properly please
_________________
Who is online
Users browsing this forum: No registered users and 3 guests
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot post attachments in this forum