So I Made My First Bot With Imacros

Can someone try and help me out. I am trying to make a yahoo account creator with imacros. I was trying to get it setup with beatcaptchas but I was having problems, now it still wont work for me when I am entering the captcha myself. Once it submits it just takes me to the signup as if i typed in wrong captcha, but it doesnt load me a new one. Heres my code:

Code:
VERSION BUILD=6230608 RECORDER=FX
TAB T=1
SET !DATASOURCE yahoo.csv
SET !DATASOURCE_COLUMNS 10
SET !DATASOURCE_LINE {{!LOOP}}
SET !ERRORIGNORE YES
SET !EXTRACT_TEST_POPUP NO
CLEAR
URL GOTO=http://ca.yahoo.com/
TAG POS=1 TYPE=A ATTR=TXT:Sign<SP>Up
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody ATTR=ID:firstname CONTENT={{!COL1}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody ATTR=ID:secondname CONTENT={{!COL2}}
TAG POS=1 TYPE=SELECT FORM=NAME:regFormBody ATTR=ID:gender CONTENT=%m
TAG POS=1 TYPE=SELECT FORM=NAME:regFormBody ATTR=ID:mm CONTENT=%5
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody ATTR=ID:dd CONTENT={{!COL3}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody ATTR=ID:yyyy CONTENT={{!COL4}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody ATTR=ID:postalcode CONTENT={{!COL5}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody ATTR=ID:yahooid CONTENT={{!COL6}}
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:regFormBody ATTR=ID:password CONTENT={{!COL7}}
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:regFormBody ATTR=ID:passwordconfirm CONTENT={{!COL7}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody ATTR=ID:altemail CONTENT={{!COL8}}
TAG POS=1 TYPE=SELECT FORM=NAME:regFormBody ATTR=ID:secquestion CONTENT=%What<SP>is<SP>your<SP>oldest<SP>cousin's<SP>name?
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody ATTR=ID:secquestionanswer CONTENT={{!COL9}}
TAG POS=1 TYPE=SELECT FORM=NAME:regFormBody ATTR=ID:secquestion2 CONTENT=%Who<SP>is<SP>your<SP>all-time<SP>favorite<SP>movie<SP>character?
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody ATTR=ID:secquestionanswer2 CONTENT={{!COL10}}
WAIT SECONDS=1
TAG POS=1 TYPE=INPUT:BUTTON FORM=ID:regFormBody ATTR=ID:captchaShuffleLink
WAIT SECONDS=2
PROMPT Please<SP>enter<SP>captcha: !VAR1 
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody ATTR=ID:cword CONTENT={{!var1}}
TAG POS=1 TYPE=INPUT:CHECKBOX FORM=NAME:regFormBody ATTR=ID:tos_agreed_o_0 CONTENT=YES
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:regFormBody ATTR=ID:IAgreeBtn
 
I use iMacros Scripting Edition and have a question: How do you deal with CAPTCHAS?

I cant get it work!
 
edit: sorry for the 7 posts.... bhw was going really slow for me..

I got captchas to work using beatcaptchas.com, $8 per 1000
It takes the captcha image, uploads to their server, then send the completed back to you . It's pretty easy to setup I managed to do it and it's my first day working with imacros.

Heres the code you would use to implement beatcaptchas, and I think it would be similar for any other captcha site.

Code:
FILEDELETE NAME=c:\pic.jpg
ONDOWNLOAD FOLDER=c:\ FILE=pic.jpg
TAG POS=1 TYPE=IMG ATTR=HREF:<INSERT CAPTCHA LINK/ID>
URL GOTO=http://beatcaptchas.com/captcha.php
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:upload.php ATTR=ID:key CONTENT=<INSERT YOUR BEATCAPTCHA.COM KEY>
TAG POS=1 TYPE=INPUT:FILE FORM=ACTION:upload.php ATTR=NAME:file CONTENT=c:\pic.jpg
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:http://beatcaptchas.com/upload.php ATTR=NAME:submit&&VALUE:Submit
TAG POS=1 TYPE=BODY ATTR=TXT:* EXTRACT=TXT
SET !VAR1 {{!EXTRACT}}
 
Last edited:
Thanks a lot for sharing that nice piece of code! I am trying to implement that right now and give beatcaptchas a try! Thanks again!
 
Can someone try and help me out. I am trying to make a yahoo account creator with imacros. I was trying to get it setup with beatcaptchas but I was having problems, now it still wont work for me when I am entering the captcha myself. Once it submits it just takes me to the signup as if i typed in wrong captcha, but it doesnt load me a new one.

I haven't tested your code, but that sounds like you need to use proxies. Yahoo does that when you keep registering from the same IP.
 
Ok here is a video showing you the steps on creating the datasource. Watch it til the end so you can understand why some of you cant find the datasource once you have created it.

I didn't login to Youtube because the accounts show in this video are dead. So the video just shows you how to set it up, and then call the url's. I'm no narrator so there is no audio in this clip. lol!

http://www.dailymotion.com/bhwgogetta/video/16575369


I used URL GOTO={{!COL3}} to rotate and visit each url. You can easily set it up to create accounts, bookmark url's, and even to break captchas. If you are even slightly interested in creating bots, I promise you this is a good starting ground.

Code:
SET !ERRORIGNORE YES

SET !DATASOURCE youtuberate.csv

SET !DATASOURCE_COLUMNS 3

SET !DATASOURCE_LINE {{!LOOP}}

You will use these in most of your bots. Without them you will get errors, or it just flat out won't work.
 
This code will login, go to your video url. Then Subscribe,comment,5 star,and favourite the video. You should be able to figure out what to change after watching gogetta's video.

Code:
VERSION BUILD=6230608 RECORDER=FX
TAB T=1
SET !DATASOURCE youtube.csv
SET !DATASOURCE_COLUMNS 4
SET !DATASOURCE_LINE {{!LOOP}}
CLEAR
URL GOTO=http://www.youtube.com/
TAG POS=1 TYPE=A ATTR=TXT:Sign<SP>In
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:https://www.google.com/accounts/ServiceLoginAuth?service=youtube ATTR=ID:Email CONTENT={{!COL1}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:https://www.google.com/accounts/ServiceLoginAuth?service=youtube ATTR=ID:Passwd CONTENT={{!COL2}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:gaia_loginform ATTR=NAME:signIn&&VALUE:Sign<SP>in
URL GOTO={{!COL3}}
TAG POS=1 TYPE=SPAN ATTR=TXT:Subscribe
TAG POS=1 TYPE=TEXTAREA FORM=NAME:comment_formmain_comment ATTR=NAME:comment CONTENT={{!COL4}}
TAG POS=1 TYPE=INPUT:BUTTON FORM=ID:comment_formmain_comment ATTR=NAME:add_comment_button&&VALUE:Post<SP>Comment
TAG POS=1 TYPE=BUTTON ATTR=ID:star__5
TAG POS=1 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=1 TYPE=A ATTR=TXT:Sign<SP>Out
 
Thanks http://www.blackhatworld.com/blackhat-seo/members/19191-gogetta.html , but how to make it breaking capatcha / entering it ?
 
I Found This valubeable reference for using imacros , now able to make fake alexa hits generator

Code:
http://wiki.imacros.net/Command_Reference
 
I need vs 6.5 clean crack no trojan crap! anyone help? I'll do a BMD link building trade with private domains on ur url. I need the flash part of the script you see.

:D:D:D:D
 
anyone have any luck using proxies? i get an error saying that proxy is not supported in this version!
 
did anyone already figured out how to pop up captchas and to enter them manually?
 
Back
Top