Jump to content
UBot Underground

[FREE Plugin] Advanced Captcha (V3)


Recommended Posts

what is "Header Acao" ?

from site say

 

If enabled will include Access-Control-Allow-Origin:* header in the response.\r\nUsed for cross-domain AJAX requests in web applications

Link to post
Share on other sites
  • Replies 224
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

Ubotplugin.com End of Business Good day Ubot community. Over the last 9 years I invested a lot of time in developing the plugins. I hope that it was of good use for all of you. Only in the last

Shouldn't the Plugin do the following for DBC to solve the Captcha Properly: Image Collected > Image Sent to DBC for Solving > DBC responds with CaptchaID > Plugin Pause > LOOP(Poll Captc

3.4.0.0 (Beta) Remove command 2captcha.com Add new commands 2captcha.com audio captcha 2captcha.com click captcha 2captcha.com key captcha 2captcha.com normal captcha 2captcha.com recaptcha v1 2captc

Posted Images

what is "Header Acao" ?

My guess is that it refers to Access Control Allow Origin: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Origin

 

Here's a more friendly explanation of its use: https://stackoverflow.com/questions/10636611/how-does-access-control-allow-origin-header-work

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

 

3.4.4.0 (BETA)
Add new command
2captcha.com recaptcha: all in one recaptcha V2, Invisible, V3
2captcha.com recaptcha: add new option "Header Acao","Pingback Url","Captcha Type"
2captcha.com pingback: pingback (callback) option that allows you to get the answer for your captcha automatically when it's ready. It allows you to get answers without making requests also allows you to avoid account suspension.
2captcha.com normal captcha:
 
Remove commands
2captcha.com recaptcha v1
2captcha.com recaptcha v2
2captcha.com recaptcha v2 invisible
2captcha.com recaptcha v3

 

is anybody have some code to show how the pingback working, and what is the pingback url should be, thanks!

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

3.4.4.1

2captcha.com recaptcha: update command
 
 
set(#AccessKey,"XXXXXXX","Global")
navigate("https://www.google.com/recaptcha/api2/demo?invisible=true","Wait")
wait for browser event("Everything Loaded","")
wait(1)
set(#GoogleKey,$scrape attribute(<class="g-recaptcha">,"data-sitekey"),"Global")
clear list(%Debug)
add list to list(%Debug,$plugin function("Advanced Captcha.dll", "$2captcha.com recaptcha", #AccessKey, #GoogleKey, $url, "", "", 50, 120, "", "", "", "Invisible"),"Delete","Global")
change attribute(<id="g-recaptcha-response">,"value",$list item(%Debug,1))
run javascript("document.getElementById(\"recaptcha-demo-form\").submit();")
comment("run javascript(\"___grecaptcha_cfg.clients[0].aa.l.callback()\")")
 
 
 

 

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

Hi pash,

 

Many time when I use your code above I receive in $list item(%Debug,1) error "Timeout" 

I set max timeout as 180 or even 300 and when 2captcha.com resolve in longer time then 180 i get error  "timeout"

Maybe you must extent this parametr in plugin??

Link to post
Share on other sites
  • 6 months later...
  • 4 weeks later...
  • 1 month later...
  • 2 weeks later...
  • 7 months later...
  • 11 months later...

My code works perfect on google demo site, but can't get it to work on below site, can anyone take a look please?  I don't understand how it can work on one site but the other

https://www.tec.work/account/my-account

Work here on google demo site:  https://www.google.com/recaptcha/api2/demo

navigate("https://www.tec.work/account/my-account","Wait")
wait(4)
set(#url,$url,"Global")
set(#AccessKey,"XXXXXXXXXXXXXXXXXx","Global")
set(#captcha_url,$scrape attribute($element offset(<title="reCAPTCHA">,0),"src"),"Global")
define $trim to between(#trimto) {
    return($find regular expression(#trimto,"(?<=\\&k=)(.*?)(?=\\&)"))
}
set(#GoogleKey,$trim to between(#captcha_url),"Global")
clear list(%Debug)
add list to list(%Debug,$plugin function("Advanced Captcha.dll", "$2captcha.com recaptcha", #AccessKey, #GoogleKey, #url, "", "", 30, 120, "", "", "", "V2"),"Delete","Global")
change attribute(<id="g-recaptcha-response">,"value",$list item(%Debug,1))
run javascript("document.getElementById(\"recaptcha-demo-form\").submit();")

 

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

Can anyone please take a look to the code above?

I think the problem is POST, in the google recaptcha demo above you just send this javascript to POST

run javascript("document.getElementById(\"recaptcha-demo-form\").submit();")

But on this website tec.work/account/my-account and many others recaptcha form isn't wrapped in a form so you can't send post with the javascript above.

Any suggestions guys?

Link to post
Share on other sites

Hey thanks for the quick reply.  I just tried and still won't submit the recaptcha.

 

Here how would you submit any of these 3 recaptchas since they don't have a proper form/post?

https://nopecha.com/demo/recaptcha

 

And this one I understand since its wrapped in <form   action="/recaptcha-v2-checkbox.php"  method="post">

https://recaptcha-demo.appspot.com/recaptcha-v2-checkbox.php

Link to post
Share on other sites

Yes. The JS seems only working after manually hovering some elements, I guess. It's weird.

But honestly, I would simply use the Automaxed Browser Plugin and done:

do it()
define do it {
    plugin command("Browser Automation.dll", "browser navigate", "https://www.your-web-address.com/account/my-account")
    wait(3)
    plugin command("Browser Automation.dll", "browser mouse click", "Class[2]:kuTaGy wixui-button zKbzSQ", "Left Click")
    wait(2)
    plugin command("Browser Automation.dll", "browser mouse over", "Class[0]:recaptcha-checkbox goog-inline-block recaptcha-checkbox-unchecked rc-anchor-checkbox", "Center", "False")
    wait(1)
    plugin command("Browser Automation.dll", "browser mouse click", "Class[0]:recaptcha-checkbox goog-inline-block recaptcha-checkbox-unchecked rc-anchor-checkbox", "Left Click")
}

Link to post
Share on other sites

I'm not sure why your are not getting the recaptcha... You should

I mean I can click the box too with uBot but it asks for recaptcha probably because of my used vpn IP addresses

 

Edited by myubo
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...