Jump to content
UBot Underground

Ubot And Invisible Recaptcha


Recommended Posts

Google release new invisible recaptcha. The following code solve this captcha.

 

navigate("https://www.google.com/recaptcha/api2/demo?invisible=true","Wait")
wait for element(<title="recaptcha widget">,"","Appear")
set(#iframesrc,$scrape attribute(<title="recaptcha widget">,"src"),"Global")
set(#datasitekey,$find regular expression(#iframesrc,"(?<=k=).*?(?=&)"),"Global")
set(#response,$plugin function("HeopasCustom.dll", "$Heopas ReCaptcha Solve", #datasitekey),"Global")
change attribute(<id="g-recaptcha-response">,"value",#response)
set(#functiontorun,$scrape attribute(<class="g-recaptcha">,"data-callback"),"Global")
run javascript("{#functiontorun}();")
stop script

 

You can send datasitekey to 2captcha or prompt user to solve it manual using my plugin.

 

Download plugin here

Link to post
Share on other sites
  • 2 weeks later...

Solving invisible captchas like on demo is easy. However I have problem with sth like on:

search.google.com/search-console/mobile-friendly

 

where the data-callback function is needed, but it is hidden inside javascript. Do you have an idea how to solve this? I'm willing to pay for this.

Link to post
Share on other sites
  • 3 months later...

Google release new invisible recaptcha. The following code solve this captcha.

 

navigate("https://www.google.com/recaptcha/api2/demo?invisible=true","Wait")

wait for element(<title="recaptcha widget">,"","Appear")

set(#iframesrc,$scrape attribute(<title="recaptcha widget">,"src"),"Global")

set(#datasitekey,$find regular expression(#iframesrc,"(?<=k=).*?(?=&)"),"Global")

set(#response,$plugin function("HeopasCustom.dll", "$Heopas ReCaptcha Solve", #datasitekey),"Global")

change attribute(<id="g-recaptcha-response">,"value",#response)

set(#functiontorun,$scrape attribute(<class="g-recaptcha">,"data-callback"),"Global")

run javascript("{#functiontorun}();")

stop script

 

You can send datasitekey to 2captcha or prompt user to solve it manual using my plugin.

 

Download plugin here

hello heopas,

 

Thanks for the plugin really look cool. I am having a problem. whenever i solve the recaptcha in the pop up window and click the OK button. The captcha does not gets solved in the browser. Nothing happens. Why is this happening.

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