killakem
Regular Member
- Oct 20, 2011
- 383
- 249
Hi guys,
A late 200th post share from me......
I found this social network when I was doing research for a CPA offer I wanted to promote. Its called bl4ack planet.c0m (I masked the URL a bit so they cant find this post too easy and patch this bot out existence) Has a shit load of users and tons online at anyone point.
I decided to create a bot to message users with my CPA offer. so THIS IS NOT EWHORING as my message read a little something like this.
"Hi blah blah, iv been meeting all this chicks from this naughty dating site etc etc, check it out mylink" this was from a male also so I wouldn't consider it ewhoring
It can be twisted in many ways!! With the right twist you should be able to make 50-100$ a day and more if you had a socket based bot that sent a shit load of messages. I was going to add information about running this in multiple windows but i dont want to encourage everyone to kill it too quickly. Even tho I know you will!!
First things first!! BEATING THE SPAM DEFENCE!! The bot uses deathbycaptcha to break the captchas and also proxys to prevent ghosting of my IP's (U will have to add your own proxy support). it can be modified to support other captcha providers.
At first i was just scraping profile URLs then i decided to automate it all.
The bot will:
I will not be giving you the message to send and selecting an offer for you to forward too. Im giving away a method that WORKS and thats making me money!! Why U ask?? because im doing other stuff and dont do too many of these things through my CPA accounts i prefer to quit while im ahead.
This is my first and last attempt at using VBS with imacro's. Id rather use ubot its soo much quicker to do everything.
Enjoy!!
Save the code as yourfilename.vbs nd change the red bits to your details.
You will need IMacro's scripting edition (Its on the forum search for it or get the trial) and Firefox installed. You can use IE instead by changing the -fx to -ie.
Download from here:
http://www.2shared.com/file/MF8GlESI/WORKING_With-DBC.html
Virus Total:
https://www.virustotal.com/file/b32...0a9f66e237fa815d3bbdb5f3/analysis/1335286220/
The code below is all out of format due to the "CODE" tags.
A late 200th post share from me......
I found this social network when I was doing research for a CPA offer I wanted to promote. Its called bl4ack planet.c0m (I masked the URL a bit so they cant find this post too easy and patch this bot out existence) Has a shit load of users and tons online at anyone point.
I decided to create a bot to message users with my CPA offer. so THIS IS NOT EWHORING as my message read a little something like this.
"Hi blah blah, iv been meeting all this chicks from this naughty dating site etc etc, check it out mylink" this was from a male also so I wouldn't consider it ewhoring
It can be twisted in many ways!! With the right twist you should be able to make 50-100$ a day and more if you had a socket based bot that sent a shit load of messages. I was going to add information about running this in multiple windows but i dont want to encourage everyone to kill it too quickly. Even tho I know you will!!
First things first!! BEATING THE SPAM DEFENCE!! The bot uses deathbycaptcha to break the captchas and also proxys to prevent ghosting of my IP's (U will have to add your own proxy support). it can be modified to support other captcha providers.
At first i was just scraping profile URLs then i decided to automate it all.
The bot will:
- Login with your credential
- Do a search
- sequence through every result page messaging each user as it goes
- To send a message you have to complete a captcha!! as I said is have implemented deathbycaptcha support.
I will not be giving you the message to send and selecting an offer for you to forward too. Im giving away a method that WORKS and thats making me money!! Why U ask?? because im doing other stuff and dont do too many of these things through my CPA accounts i prefer to quit while im ahead.
This is my first and last attempt at using VBS with imacro's. Id rather use ubot its soo much quicker to do everything.
Enjoy!!
Save the code as yourfilename.vbs nd change the red bits to your details.
You will need IMacro's scripting edition (Its on the forum search for it or get the trial) and Firefox installed. You can use IE instead by changing the -fx to -ie.
Download from here:
http://www.2shared.com/file/MF8GlESI/WORKING_With-DBC.html
Virus Total:
https://www.virustotal.com/file/b32...0a9f66e237fa815d3bbdb5f3/analysis/1335286220/
The code below is all out of format due to the "CODE" tags.
Code:
Option ExplicitDim iim, status
Set iim= CreateObject ("imacros")
status = iim.iimOpen("-fx -tray")
Dim macro
Dim i
Dim pos
macro = "VERSION BUILD=8001865" + vbNewLine
macro = macro + "TAB T=1" + vbNewLine
macro = macro + "TAB CLOSEALLOTHERS" + vbNewLine
macro = macro + "SET !REPLAYSPEED SLOW" + vbNewLine
macro = macro + "URL GOTO=http://www.blackplanet.com/" + vbNewLine
macro = macro + "TAG POS=1 TYPE=INPUT:TEXT FORM=ID:site_login ATTR=ID:user CONTENT=[COLOR=#ff0000]BPUSERNAME[/COLOR]" + vbNewLine
macro = macro + "TAG POS=1 TYPE=INPUT:PASSWORD FORM=ID:site_login ATTR=ID:password CONTENT=[COLOR=#ff0000]BPPASSWORD[/COLOR]" + vbNewLine
macro = macro + "SET !ENCRYPTION NO" + vbNewLine
macro = macro + "TAG POS=1 TYPE=BUTTON:SUBMIT FORM=ID:site_login ATTR=ID:login_button" + vbNewLine
status = iim.iimPlayCode(macro)
For i = 1 to 50
macro = "VERSION BUILD=8001865" + vbNewLine
macro = macro + "TAB T=1" + vbNewLine
macro = macro + "TAB CLOSEALLOTHERS" + vbNewLine
macro = macro + "SET !REPLAYSPEED FAST" + vbNewLine
status = iim.iimSet("pagecnt", CStr(i))
macro = macro + "URL GOTO=http://www.blackplanet.com/user_search/index.html?
find_member_details_form_submit=1&layout=1§ion=member_browse&do_save=1&sex_ids[]
=2&min_age=23&max_age=33&usa_selected_tab=radius_search&native_country_id=USA&usa_country_id=USA&usa_radius_id=&usa_postal_code=Zip
+Code&usa_city=City+%28optional%29&usa_state_id=&is_online=1&rel_status_ids[]=16&rel_status_ids[]=8&rel_status_ids[2]={{pagecnt}}" + vbNewLine
macro = macro + "WAIT SECONDS=1" + vbNewLine
status = iim.iimPlayCode(macro)
For pos = 1 to 20
macro = "VERSION BUILD=8001865" + vbNewLine
macro = macro + "TAB T=1" + vbNewLine
macro = macro + "TAB CLOSEALLOTHERS" + vbNewLine
macro = macro + "SET !ERRORIGNORE YES" + vbNewLine
macro = macro + "SET !EXTRACT_TEST_POPUP NO" + vbNewLine
macro = macro + "SET !REPLAYSPEED FAST" + vbNewLine
macro = macro + "SET !TIMEOUT 120" + vbNewLine
macro = macro + "SET !EXTRACT NULL" + vbNewLine
status = iim.iimSet("pagepos", CStr(pos))
macro = macro + "TAG POS={{pagepos}} TYPE=SPAN ATTR=TXT:Send<SP>a<SP>Note" + vbNewLine
macro = macro + "FRAME NAME=notePlopUp_frame" + vbNewLine
macro = macro + "TAG POS=1 TYPE=INPUT:TEXT FORM=ID:_form0 ATTR=NAME:subject" + vbNewLine
macro = macro + "TAG POS=1 TYPE=TEXTAREA FORM=ID:_form0 ATTR=NAME:body" + vbNewLine
macro = macro + "TAG POS=1 TYPE=INPUT:TEXT FORM=ID:_form0 ATTR=NAME:subject CONTENT=[COLOR=#ff0000]MSGSUBJECT[/COLOR]" + vbNewLine
macro = macro + "TAG POS=1 TYPE=TEXTAREA FORM=ID:_form0 ATTR=NAME:body CONTENT=""[COLOR=#ff0000]YOURMESSAGE[/COLOR]""" + vbNewLine
macro = macro + "SET !REPLAYSPEED SLOW" + vbNewLine
macro = macro + "FILEDELETE NAME=C:\captcha\captcha.png" + vbNewLine
macro = macro + "ONDOWNLOAD FOLDER=C:\captcha\ FILE=captcha.png WAIT=YES" + vbNewLine
macro = macro + "TAG POS=3 TYPE=IMG ATTR=HREF:http://* CONTENT=EVENT:SAVE_ELEMENT_SCREENSHOT" + vbNewLine
macro = macro + "WAIT SECONDS=1" + vbNewLine
macro = macro + "TAB OPEN" + vbNewLine
macro = macro + "TAB T=2" + vbNewLine
macro = macro + "URL GOTO=http://api.deathbycaptcha.com/decaptcher?function=picture2&print_format=html" + vbNewLine
macro = macro + "TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:http://api.deathbycaptcha.com/decaptcher ATTR=NAME:username
CONTENT=[COLOR=#ff0000]DBCUsername[/COLOR]" + vbNewLine
macro = macro + "TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:http://api.deathbycaptcha.com/decaptcher ATTR=NAME:password
CONTENT=[COLOR=#ff0000]DBCPASSWORD[/COLOR]" + vbNewLine
macro = macro + "TAG POS=1 TYPE=INPUT:FILE FORM=ACTION:http://api.deathbycaptcha.com/decaptcher ATTR=NAME:pict CONTENT=C:
\captcha\captcha.png" + vbNewLine
macro = macro + "TAG POS=1 TYPE=INPUT ATTR=TYPE:submit" + vbNewLine
macro = macro + "WAIT SECONDS=1" + vbNewLine
macro = macro + "TAG POS=6 TYPE=TD ATTR=* EXTRACT=TXT" + vbNewLine
macro = macro + "SET !VAR1 {{!EXTRACT}}" + vbNewLine
macro = macro + "TAB T=1" + vbNewLine
macro = macro + "SET !REPLAYSPEED FAST" + vbNewLine
macro = macro + "FRAME NAME=notePlopUp_frame" + vbNewLine
macro = macro + "TAG POS=1 TYPE=INPUT:TEXT FORM=ID:_form0 ATTR=ID:recaptcha_response_field CONTENT={{!VAR1}}" + vbNewLine
macro = macro + "TAG POS=1 TYPE=BUTTON:SUBMIT FORM=ID:_form0 ATTR=TXT:*" + vbNewLine
macro = macro + "WAIT SECONDS=1" + vbNewLine
macro = macro + "FRAME F=0" + vbNewLine
status = iim.iimPlayCode(macro)
next
Next
Last edited: