Skip to main content

No project description provided

Project description

Selenium-recaptcha-solver

You can use this package to solve ReCAPTCHA challenges with selenium.

It supports single-step and multi-step audio solving for ReCAPTCHA V2 with >90% success rate.

Please use this package responsibly and for non-exploitative ends.

Notice: This project is no longer being maintained.

Requirements

Python 3.7+

Main dependencies:

  • SpeechRecognition python package to transcribe speech
  • Pydub for file conversions
  • Requests for HTTP requests
  • Selenium for web driver

If you're getting an error related to FFmpeg not being installed or in your PATH, get it here: https://ffmpeg.org/download.html

If the error persists, make sure FFmpeg is properly installed for your OS and in your PATH.

Installation

python -m pip install selenium-recaptcha-solver

Usage example with ReCAPTCHA demo site

from selenium_recaptcha_solver import RecaptchaSolver
from selenium.webdriver.common.by import By
from selenium import webdriver
from selenium.webdriver.chrome.options import Options


test_ua = 'Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36'

options = Options()

options.add_argument("--headless")  # Remove this if you want to see the browser (Headless makes the chromedriver not have a GUI)
options.add_argument("--window-size=1920,1080")

options.add_argument(f'--user-agent={test_ua}')

options.add_argument('--no-sandbox')
options.add_argument("--disable-extensions")

test_driver = webdriver.Chrome(options=options)

solver = RecaptchaSolver(driver=test_driver)

test_driver.get('https://www.google.com/recaptcha/api2/demo')

recaptcha_iframe = test_driver.find_element(By.XPATH, '//iframe[@title="reCAPTCHA"]')

solver.click_recaptcha_v2(iframe=recaptcha_iframe)

You can check a detailed use case in the tests folder of this project (Its execution is shown below in the demonstration chapter).

Demonstration

Image from Gyazo

Avoiding detection

To decrease your chances of ReCAPTCHA detecting automated queries, try the following:

  • Use a custom user-agent header (Make sure it's not a headless user-agent!)
  • Use a hard-to-detect web driver
  • Use proxies to avoid IP blacklisting

An example of a good user-agent: Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36

An example of a bad user-agent: are Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/92.0.4512.0 Safari/537.36

Note the last part of the user-agent; the headless specification is usually there.

Questions

If the documentation hasn't covered something, or you have questions about how to use the package or how it works, please reach out.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

selenium_recaptcha_solver-1.9.1.tar.gz (7.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

selenium_recaptcha_solver-1.9.1-py3-none-any.whl (8.4 kB view details)

Uploaded Python 3

File details

Details for the file selenium_recaptcha_solver-1.9.1.tar.gz.

File metadata

File hashes

Hashes for selenium_recaptcha_solver-1.9.1.tar.gz
Algorithm Hash digest
SHA256 0e64c79e02c0affbd5b1efe92406bfc5e1506a98eab178da067958ecf9de17d6
MD5 3e1209958c5b9a970aa192f27c06d0fe
BLAKE2b-256 6735356697968b45daec128fc92e7afcbe1d5303838b5aa23ede750332221b07

See more details on using hashes here.

File details

Details for the file selenium_recaptcha_solver-1.9.1-py3-none-any.whl.

File metadata

File hashes

Hashes for selenium_recaptcha_solver-1.9.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b3fdea1806f767f87ff11a00e93da600b439d8dfafeeb2beaff4dfcdc77c3767
MD5 aa22ecb9c8cc7b082b832954f89d6ede
BLAKE2b-256 297015a89f26970bfda3b268debdfe83e27fb9f975bbe13349b1dd90aa31f86b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page