Please help me to resolve the Funcaptcha of outlook

binbin38

New member
https://2captcha.com/2captcha-api#solving_funcaptcha_new
Hello,
I am trying to decode the captcha of Arkose Labs (FunCaptcha) with a token when doing registration at https://www.onenote.com/hrd
- Everything is fine, i got token from 2captcha which looks like:
Code:
3084f4a302b176cd7.96368058|r=ap-southeast-1|guitextcolor=%23FDD531|metabgclr=%23FFFFFF|metaiconclr=%23202122|meta=3|lang=en|pk=12AB34CD-56F7-AB8C-9D01-2EF3456789A0|cdn_url=https://cdn.funcaptcha.com/fc|surl=https://funcaptcha.com
- Then I change the value of element with [id='FunCaptcha-Token'][name='fc-token'] to the value of the token above:
Code:
document.getElementById("FunCaptcha-Token").value = "token solved";
1602221882161.png
- Problem here, Outlook doesn't have any submit buttons visible. I really have no way to go to the next step. Can someone please help me :(
I tried it with the blue done button but it doesn't work.
For testing: iframe-auth.arkoselabs.com/B7D8911C-5CC8-A9A3-35B0-554ACEE604DA/index.html?mkt=en
P/S:
- For example a captcha with submit button: client-demo.arkoselabs.com/solo-animals
With the example site above, I have done it successfully without any problems.
Thanks
 
Last edited by a moderator:

Mark Miller

2Captcha Engineer
Staff member
FunCaptcha has onCompleted function that can be attached to an enforcement instance, more info:
arkoselabs.atlassian.net/wiki/spaces/DG/pages/214176229/Standard+Setup#Response-Object

So in your case I'm pretty sure that the token is passed to such javascript function that does the job.
You just need to explore the website javascript code, find the setupEnforcement call and onCompleted function definition.
Then you should execute the same javascript code and that's it. But that requires some javascript skills.
 
Last edited by a moderator:

Daniyal javeed

New member
Hi there to solve the capcha some script is here try it out
driver.execute_script("
function onSubmit(token) {
document.getElementById("demo-form").submit();
}

")
 

duongdinhtu93

New member
docs.anycaptcha.com/articles/how-to-submit-bypass-token-to-hotmail-outlook-captcha
Read this article. It's work for me.
 
Last edited by a moderator: