This API solves captchas for sites using Skymavis OAuth. It provides a solution for bypassing the captcha challenge programmatically.
- Install the required dependencies:
pip install -r requirements.txt
-
Configure the
APP_KEY
insolve_captcha.py
:- Open
solve_captcha.py
- Locate the
APP_KEY
variable - Replace the value with the app key of the site you're targeting (e.g., Wildforest)
- Open
-
Set up a proxy:
- In
solve_captcha.py
, find theproxies
dictionary - Replace
"--your-proxy-url--"
with your actual proxy URL for both HTTP and HTTPS
- In
- Start the Flask server:
python app.py
-
The API will be available at
http://localhost:5000
-
To solve a captcha, send a POST request to the
/solve_captcha
endpoint
- URL:
/solve_captcha
- Method: POST
- Response:
{ "result": { "id": "captcha_id", "success": "right" }, "token": "captcha_token", "clicks": 0-330 -> rotation degree }
This tool is for educational purposes only. Make sure you have permission to use it on the target website.
If you encounter any issues, check the console output for error messages. Ensure that your APP_KEY and proxy settings are correct.