Jump to content
UBot Underground

How to setup recaptcha retry limits inside your bots


Recommended Posts

I'd like to request a tutorial, as captcha's are everywhere, that shows how to setup a Custom Function that will check retry a recaptcher based on a user input of attempts.

 

I'm sure many of us have soft that requires solving, so having an option to say RETRY captcha's 3 times before moving on, would be great!

Link to post
Share on other sites

You can place the captcha solving commands in a custom command, and then use a loop with an if/then statement

 

i.e. If $search page(the captcha was entered incorrectly), Then(run Captcha solving commands)

 

Else, do other stuff

 

 

John

  • Like 1
Link to post
Share on other sites

Hey Ninja,

 

This is actually relatively easy.

 

Create a UI dropdown command and put in however many times you want to be able to retry.

 

Then use that variable in a if/then statement.

 

I have attached a very simple bot to this post as reference.

 

Keep in mind that you might have to change the $search page based on the type of site you are posting to.

 

HTH

Justin

 

ui drop down("Captcha Re-trys", "1,2,3,4,5", #captcha)

if($search page("Please try again.")) {

then {

loop(#captcha) {

type text(<name="recaptcha_response_field">, $solve captcha(<style="display:block;">), "Standard")

click(<name="submit">, "Left Click", "No")

}

}

}

  • Like 1
Link to post
Share on other sites
  • 4 months later...
  • 4 weeks later...

How does this actually work since captchas are randomly selected especially if a certain site gives awful set of captchas that even humans are having a hard time reading? http://imagicon.info/cat/5-34/vbulletin-eek.gif

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...