Jump to content
UBot Underground

How to reenter captcha if captcha service enters wrong captcha


Recommended Posts

Hello fellow ubot members! I've made several hotmail and yahoo email registration bots. My only question is, how can I make sure if the captcha service I am using enters the right captcha? would this have to fall under the if and then commands? If they enter the wrong captcha, I would like for them to reenter the new one and try again.

 

If anyone could help me out with this current issue, I'll be more than happy to release a few email bots I made and some social networking sign ups, I'm just stuck at this one problem.

Link to post
Share on other sites

could anyone be so kind and write a little tutorial or link me to one. I can't seem to do this right. I've been looking all over the web and have not seen a tutorial on this yet, I'll just keep looking. any help is greatly appreciated

Link to post
Share on other sites

wait for element(<src=w"https://www.google.com/recaptcha/api/image?*">, "", "Appear") (WAIT FOR CAPTCHA TO APPEAR)
   type text(<name="recaptcha_response_field">, $solve captcha(<class="recaptcha_image_cell">), "Standard")(FIRST CAPTCHA TRY)
   click(<outerhtml=w"<button type=\"submit\">*</button>">, "Left Click", "No")(SUBMIT FORM)
   wait for element(<src=w"https://www.google.com/recaptcha/api/image?*">, 5, "Appear")(WAIT FOR NEW CAPTCHA TO APPEAR IF FAILED)
   loop while($search page("Sorry")) {(SEARCH PAGE FOR ERROR MESSAGE)
       wait for element(<src=w"https://www.google.com/recaptcha/api/image?*">, "", "Appear")(WAIT FOR IT TO APPEAR, THIS STOPPED INFINITE LOOP ON PAGE RELOAD)
       type text(<name="recaptcha_response_field">, $solve captcha(<class="recaptcha_image_cell">), "Standard")(TRY CAPTCHA AGAIN)
       click(<outerhtml=w"<button type=\"submit\">*</button>">, "Left Click", "No")(SUBMIT AGAIN)
   }

 

This works for tumblr, every site will be slightly different.

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...