├── .env ├── .gitignore ├── README.md ├── captcha_token.py ├── chromedriver ├── hcaptcha.html ├── main.py └── requirements.txt /.env: -------------------------------------------------------------------------------- 1 | hcaptcha= 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | h_captcha.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainSilent/hCaptcha-Bypass/HEAD/README.md -------------------------------------------------------------------------------- /captcha_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainSilent/hCaptcha-Bypass/HEAD/captcha_token.py -------------------------------------------------------------------------------- /chromedriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainSilent/hCaptcha-Bypass/HEAD/chromedriver -------------------------------------------------------------------------------- /hcaptcha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainSilent/hCaptcha-Bypass/HEAD/hcaptcha.html -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainSilent/hCaptcha-Bypass/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainSilent/hCaptcha-Bypass/HEAD/requirements.txt --------------------------------------------------------------------------------