Bypass HCAPTCHA/FunCAPTCHA Callback using selenium (invisible - without submit button)

duongdinhtu93

New member
This thead guide you to submit bypass of FunCAPTCHA/HCAPTCHA Callback using selenium and AnyCaptchaCallbackHooker extension
1. Download AnyCaptchaCallbackHooker extension
2. Use this code to add extension on selenium
ChromeOptions options = new ChromeOptions();
options.AddExtension("PATH_TO_AnyCaptchaCallbackHooker.crx");
anccallbackhooker.jpg

3. Go to the URL where you need to bypass hcaptcha/funcaptcha callback

4. find and switch to iframe which contain button with id = anycaptchaSolveButton (anycaptchaSolvingButton will automatically be created as soon as hcaptcha/funcaptcha callback finishes rendering)
anycaptchasolvebutton.jpg
5. Use AnyCaptcha - HCAPTCHA or FunCAPTCHA to get the response token

6. Execute the following javascript command to submit the token
document.getElementById('anycaptchaSolveButton').onclick('TOKEN_FROM_STEP_5');

We have tested it on a lot of websites(twilio, gleam, roblox, twitch...) that use funcaptcha/hcaptcha callback and I think our extension is the best at the moment.
Note: AnyCaptchaCallbackHooker.crx cannot be installed manually, you must use the above code to install.

IMPORTANT!!! if anycaptchaSolveButton is in an iframe, you need to execute the above javascript command inside that iframe (Switch to iframe)
Website: anycaptcha.com
Video tutorial:
Document guide: docs.anycaptcha.com/extensions/bypass-hcaptcha-funcaptcha-callback-with-extension
 
Last edited by a moderator:
  • Like
Reactions: hil