xTerradon / hcaptcha-solver

Automated hCaptcha solver using binary image classification networks
https://pypi.org/project/hcaptcha-solver/
22 stars 7 forks source link

will there be an API implementation? #8

Open softweri opened 1 year ago

softweri commented 1 year ago

Will there be an API for sending captcha? and shipping option siteUrl = "https://captcha.io/" siteKey = "xxxxxx-xxxxxx-xxx-xxxxxxxxx"

xTerradon commented 1 year ago

Hey, thanks for your interest! I just researched a bit, and apparently is is possible to bypass a captcha using only the siteUrl and the siteKey using a token, but I don't know exactly how/if that (still) works. Does hCaptcha not check if the user that got the token is the same as the one that used the token?!

I will look into that - if it is indeed possible to bypass it this way I will definitely implement an easier approach using just those two variables. Similar to Captcha_Solver.get_token(site_url, site_key) -> str.

If you have additional sources for that implementation, feel free to share.