Question regarding captcha

kouchiroz

Newbie
Joined
Nov 2, 2024
Messages
15
Reaction score
6
I need to send an API request to a website which uses HCaptcha enterprise. Currently when I press submit on a form it may or not show a captcha modal, and once the captcha has been successfully completed a request is sent to the endpoint with my username, password and the token returned by Hcaptcha api. Is there any way to automate this process, or is it currently impossible? I am willing to complete the captcha myself, I just need a way to make the request via code. I tried injecting a clone of the captcha element in the page and completing it; I got a token after completing the challenge but it doesn't pass the endpoint validation
 
Automating HCaptcha is tough due to server-side checks. Ensure your token matches the session context or consider services like 2Captcha (with caution). For legit use, ask the site about API options.
 
Automating HCaptcha is tough due to server-side checks. Ensure your token matches the session context or consider services like 2Captcha (with caution). For legit use, ask the site about API options.
Honestly, before opening this thread I've tried everything I could think of, but server just won't validate my session. As of now I'm using javascript to insert an HCaptcha element inside the page and after solving it I send the request to the API, but no luck.
 
I need to send an API request to a website which uses HCaptcha enterprise. Currently when I press submit on a form it may or not show a captcha modal, and once the captcha has been successfully completed a request is sent to the endpoint with my username, password and the token returned by Hcaptcha api. Is there any way to automate this process, or is it currently impossible? I am willing to completautomating the real browser flow (Playwright/Puppeteer/Selenium) and triggering the actual widget already rendered on the page instead of injecting your own. Then manually solve the captcha and capture the token/request afterward.

I need to send an API request to a website which uses HCaptcha enterprise. Currently when I press submit on a form it may or not show a captcha modal, and once the captcha has been successfully completed a request is sent to the endpoint with my username, password and the token returned by Hcaptcha api. Is there any way to automate this process, or is it currently impossible? I am willing to complete the captcha myself, I just need a way to make the request via code. I tried injecting a clone of the captcha element in the page and completing it; I got a token after completing the challenge but it doesn't pass the endpoint validation
By automating the real browser flow (Playwright/Puppeteer/Selenium) and triggering the actual widget already rendered on the page instead of injecting your own. Then manually solve the captcha and capture the token/request afterward.
 
I don't think there are captcha solvers available which can bypass it. I might be wrong.
 
Back
Top