How can i crack fiverr signup captcha?

Discussions and Tech Support specific to the iMacros Firefox add-on.
Forum rules
iMacros EOL - Attention!

The renewal maintenance has officially ended for Progress iMacros effective November 20, 2023 and all versions of iMacros are now considered EOL (End-of-Life). The iMacros products will no longer be supported by Progress (aside from customer license issues), and these forums will also no longer be moderated from the Progress side.

Thank you again for your business and support.

Sincerely,
The Progress Team

Before asking a question or reporting an issue:
1. Please review the list of FAQ's.
2. Use the search box (at the top of each forum page) to see if a similar problem or question has already been addressed.
3. Try searching the iMacros Wiki - it contains the complete iMacros reference as well as plenty of samples and tutorials.
4. We can respond much faster to your posts if you include the following information: CLICK HERE FOR IMPORTANT INFORMATION TO INCLUDE IN YOUR POST
Post Reply
new movies
Posts: 44
Joined: Thu May 26, 2011 8:14 pm

How can i crack fiverr signup captcha?

Post by new movies » Fri Nov 15, 2013 12:48 pm

I am making an imacros which auto register on fiverr using proxy and signup to the page.But i got strucked in cracking the captcha.
Its simple captcha but i dont know how to solve it.
Here is the screenshot
Image

Any help would be greatly appreciated.
S0UF
Posts: 8
Joined: Tue Feb 22, 2011 3:11 pm

Re: How can i crack fiverr signup captcha?

Post by S0UF » Mon Nov 18, 2013 3:09 pm

Don't be malicious with iMacros...
User avatar
bobis
Posts: 364
Joined: Sat Sep 11, 2010 3:34 pm
Contact:

Re: How can i crack fiverr signup captcha?

Post by bobis » Mon Nov 18, 2013 9:58 pm

1. scrape the text
2. split by space
3. substring first value and third value
4. convert both from string to number
5. add 1st to 2nd
6. post your answer
Get Best iMacros scripts at http://imacrosbot.com/
new movies
Posts: 44
Joined: Thu May 26, 2011 8:14 pm

Re: How can i crack fiverr signup captcha?

Post by new movies » Tue Nov 19, 2013 8:44 pm

seems like quite complicated
Trax
Posts: 43
Joined: Thu Sep 13, 2012 4:07 pm
Contact:

Re: How can i crack fiverr signup captcha?

Post by Trax » Wed Nov 27, 2013 7:08 pm

Actually it's quite easy :

Code: Select all

var main, enterCaptcha;

main = "CODE:";
main += "TAB T=1" + "\n";
main += "URL GOTO=http://fiverr.com/" + "\n";
main += "TAG POS=1 TYPE=A ATTR=TXT:JOIN" + "\n";
main += "TAG POS=4 TYPE=DIV FORM=ACTION:/users ATTR=CLASS:label-wrap EXTRACT=TXT" + "\n";

enterCaptcha = "CODE: ";
enterCaptcha += "TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/users ATTR=ID:user_captcha_solution CONTENT={{answer}}" + "\n";
enterCaptcha += "TAG POS=1 TYPE=INPUT:CHECKBOX FORM=ACTION:/users ATTR=NAME:user[terms_of_use] CONTENT=YES" + "\n";
enterCaptcha += "TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:/users ATTR=NAME:commit" + "\n";

iimPlay(main);
var  extract = iimGetLastExtract().split(/\s\D/);
iimSet("answer", Number(extract[0]) + Number(extract[1]));
iimPlay(enterCaptcha);
new movies
Posts: 44
Joined: Thu May 26, 2011 8:14 pm

Re: How can i crack fiverr signup captcha?

Post by new movies » Thu Nov 28, 2013 8:31 pm

wow dude you are awesome.....
it works..................
Please Add me on skype as ur friend sudeepguptaspecial
Post Reply