I have a working iMacros fb wall poster script - need help with solving captchas

rovad

Junior Member
Joined
Dec 27, 2009
Messages
199
Reaction score
66
I've been toying with iMacros for a couple of days and now I finally have a working script that does the posting. However the problem are captchas, I can't figure out how to take the godamn image and send it to captchatrader (it's cheapest so I chose it)
The stupid image link I take from the FB code when the captcha appears constantly shows different images.
 
I haven't something for Captchatrader...only for DeathByCaptcha.
I don't really know if this code that i developed some month ago still works...but should be a 80%.

I've coded it for Lock*erz.com anyway the same should be for Facebook too.

Code:
TAB T=1
FILEDELETE NAME=c:\captcha.jpg
ONDOWNLOAD FOLDER=c:\ FILE=captcha.jpg
TAG POS=1 TYPE=IMG ATTR=WIDTH:300 CONTENT=EVENT:SAVEITEM
TAB OPEN
TAB T=2
URL GOTO=http://www.deathbycaptcha.com/user/login
TAG POS=1 TYPE=INPUT ATTR=NAME:username CONTENT=USERNAME
TAG POS=1 TYPE=INPUT ATTR=NAME:password CONTENT=PASSWORD
TAG POS=1 TYPE=BUTTON ATTR=NAME:submit
URL GOTO=http://www.deathbycaptcha.com/user/info
URL GOTO=http://www.deathbycaptcha.com/user/captcha
TAG POS=1 TYPE=INPUT ATTR=TYPE:file CONTENT=C:\captcha.jpg
TAG POS=1 TYPE=INPUT ATTR=TYPE:submit
TAG POS=1 TYPE=B ATTR=ID:captcha-text EXTRACT=TXT
SET !VAR1 {{!EXTRACT}}
TAB CLOSE
TAB T=1
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:NoFormName ATTR=ID:recaptcha_response_field CONTENT={{!EXTRACT}}
SET !EXTRACT NULL
TAG POS=1 TYPE=INPUT:SUBMIT FORM=NAME:NoFormName ATTR=VALUE:Submit

Hope it can help you! Good Luck!
 
Last edited:
It's not that I can't figure out how to code a macro, that's piece of cake, the problem is I can't figure out how to save the CORRECT image. Because when I save the image and check it, it's totally different captcha. Facebook somehow doesn't allow the correct image to be saved.
 
FB is a bitch with imacros, i gave up after few days wasted time.
 
It's not that I can't figure out how to code a macro, that's piece of cake, the problem is I can't figure out how to save the CORRECT image. Because when I save the image and check it, it's totally different captcha. Facebook somehow doesn't allow the correct image to be saved.

If the problem is that Facebook doesn't allow you to save the captcha, make a screenshot on it.

http://wiki.imacros.net/Browser_Automation#Save_Element_Screenshot

Then upload your image.

Here a piece of code that i've user to autocreate Facebook fanpage (it should still work with both -Recaptcha and Facebook- captcha):

Code:
SET !ERRORIGNORE YES
FILEDELETE NAME=c:\captcha.jpg
ONDOWNLOAD FOLDER=c:\ FILE=captcha.jpg
TAG POS=1 TYPE=IMG ATTR=WIDTH:200 CONTENT=EVENT:SAVE_ELEMENT_SCREENSHOT
TAG POS=1 TYPE=IMG ATTR=WIDTH:300 CONTENT=EVENT:SAVEITEM
TAB OPEN
SET !ERRORIGNORE NO
SET !TIMEOUT_STEP 100
TAB T=2
URL GOTO=http://www.deathbycaptcha.com/user/login
TAG POS=1 TYPE=INPUT ATTR=NAME:username CONTENT=USERNAME
TAG POS=1 TYPE=INPUT ATTR=NAME:password CONTENT=PASSWORD
TAG POS=1 TYPE=BUTTON ATTR=NAME:submit
URL GOTO=http://www.deathbycaptcha.com/user/info
URL GOTO=http://www.deathbycaptcha.com/user/captcha
TAG POS=1 TYPE=INPUT ATTR=TYPE:file CONTENT=C:\captcha.jpg
TAG POS=1 TYPE=INPUT ATTR=TYPE:submit
TAG POS=1 TYPE=B ATTR=ID:captcha-text EXTRACT=TXT
SET !VAR1 {{!EXTRACT}}
TAB CLOSE
TAB T=1
TAG POS=1 TYPE=INPUT:TEXT ATTR=ID:captcha_response CONTENT={{!EXTRACT}}
SET !EXTRACT NULL
WAIT SECONDS=2
TAG POS=1 TYPE=INPUT:BUTTON ATTR=NAME:submit&&VALUE:Submit
 
FB is a bitch with imacros, i gave up after few days wasted time.

Dude, your post and your signature don't match at all. I won't give up now, i mean fuk a few bucks after all if I need to spend on some captcha solving, the most important thing is that it works - I don't need big volume of wall posts for start anyway, just a few to test and then later MAYBE expand a bit... I think I might be onto something, if that doesn't work I'm gonna try taking a screenshot like auuu suggested

EDIT: What's cheapest captcha solving service? Thanks
 
Last edited:
Dude, your post and your signature don't match at all. I won't give up now, i mean fuk a few bucks after all if I need to spend on some captcha solving, the most important thing is that it works - I don't need big volume of wall posts for start anyway, just a few to test and then later MAYBE expand a bit... I think I might be onto something, if that doesn't work I'm gonna try taking a screenshot like auuu suggested

EDIT: What's cheapest captcha solving service? Thanks

With my macro all should works fine for both captcha...since if find recaptcha, it'll save it. If it find the Facebook's captcha it'll screenshot it.

For my own i use deathbycaptcha:
Rate per 1000 CAPTCHAs: US$1.39
 
Back
Top