An async Python library to automate solving ReCAPTCHA v2 by audio, using Microsoft Azure's Speech-to-Text API.
This project is for educational and research purposes only. Any actions and or activities related to the material contained on this GitHub Repository is solely your responsibility. The misuse of the information in this GitHub Repository can result in criminal charges brought against the persons in question. The author will not be held responsible in the event any criminal charges be brought against any individuals misusing the information in this GitHub Repository to break the law.
This script was first featured on Reddit at /r/Python - see here for the thread. I've finally decided to release the script.
Check out this presentation of the script in action!
Linux, macOS, and Windows!
Python 3.6.5+ and FFmpeg
pip install -r requirements.txt
Please edit config.example.py and save as config.py
If you would like to use it in your own script
from config import settings
from solver import Solver
client = Solver(
settings['pageurl'],
settings['sitekey'],
options=options,
proxy=proxy,
#proxy_auth=auth_details(),
)
answer = await client.start()
print(answer)
Or use the included multithread script.
Don't forget to edit variable count for amount of threads to use!
python run.py
Or you can use
python app.py
and access http://localhost:5000/get?pageurl=PAGEURL&sitekey=SITEKEY
Replace PAGEURL and SITEKEY with the websites ReCAPTCHA details.