Jump to content
UBot Underground

Solving Recaptcha Manually


Recommended Posts

Hello.  I would like to know how to solve manually a recaptcha test, using a pop up window, just like a regular captcha window in ubot.  I know there is a free plugin (heopas'), but I could not figure out how to set it up.

 

h3Zq0Iz.png

 

Thanks every one.

 

 

Luis Carlos

Link to post
Share on other sites

Here you go:

set(#site,"https://www.google.com/recaptcha/api2/demo","Global")
navigate(#site,"Wait")
wait for element(<id="recaptcha-demo">,"","Appear")
set(#siteKey,$find regular expression($document text,"(?<=data-sitekey=\").*?(?=\")"),"Global")
set(#cap,$plugin function("HeopasCustom.dll", "$Heopas ReCaptcha Solve", #siteKey, #site),"Global")
change attribute(<id="g-recaptcha-response">,"innertext",#cap)
click(<id="recaptcha-demo-submit">,"Left Click","No")

The important parts like getting the site key and entering the response into the text box should work everywhere else too.

  • Like 1
Link to post
Share on other sites

Thanks for your help.  Maybe I am missing something, but when I try the code, an error pops up "Access is denied"

 

Like in this video  https://www.screencast.com/t/sxhsZRhA8sET

 

Thank you again.

 

 

Luis Carlos

 

 

Here you go:

set(#site,"https://www.google.com/recaptcha/api2/demo","Global")
navigate(#site,"Wait")
wait for element(<id="recaptcha-demo">,"","Appear")
set(#siteKey,$find regular expression($document text,"(?<=data-sitekey=\").*?(?=\")"),"Global")
set(#cap,$plugin function("HeopasCustom.dll", "$Heopas ReCaptcha Solve", #siteKey, #site),"Global")
change attribute(<id="g-recaptcha-response">,"innertext",#cap)
click(<id="recaptcha-demo-submit">,"Left Click","No")

The important parts like getting the site key and entering the response into the text box should work everywhere else too.

Link to post
Share on other sites
  • 1 year later...

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