proof of concept to solve CaptchaFox slide CAPTCHAs automatically using Python.
Requirements:
- Python 3.8+
- requests, pillow, numpy
Install dependencies:
pip install requests pillow numpyRun the test script:
python test.pyOr use in your own code:
from solver.main import solve
token = solve(
url="https://captchafox.com/",
key="sk_xtNxpk6fCdFbxh1_xJeGflSdCE9tn99G",
ua="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36"
)
print("solved:", token)- use only for educational purposes 👌