/nonoCAPTCHA

nonoCAPTCHA - defeating Google's reCAPTCHA one step at a time

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

nonoCAPTCHA

An async Python library to automate solving ReCAPTCHA v2 by audio, using Microsoft Azure's Speech-to-Text API.

Disclaimer

This project is only for an Educational purpose. 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.

Public

This script was first featured on Reddit at /r/Python - see here for the thread. I've finally decided to release the script.

Preview

Check out this presentation of the script in action!

nonoCAPTCHA preview

Requirements

Python 3.6.5+

Installation

pip install -r requirements.txt

Configuration

Please edit config.example.py and save as config.py

Usage

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.