Skip to content

Bypass Google Recaptcha V2 using undetected driver with proxy rotator.

Notifications You must be signed in to change notification settings

x404xx/Bypass-Recaptcha-V2-SELENIUM

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Google Recaptcha v2

BypassV2 tool for bypassing google recaptcha v2 using undetected-chromedriver.

Installation

To use BypassV2, open your terminal and navigate to the folder that contains BypassV2 content ::

pip install -r requirements.txt

Parameters (boolean)

debug (For debugging information)
headless (For headless mode) - Not recommended because sometimes it will get blocked.
use_proxy (Use a proxy) - Very fast checking (Concurrent)
use_agent (Use a custom user agent)

Without Proxy

import os

from api import RecaptchaBypass


os.system('cls' if os.name == 'nt' else 'clear')

demo_url = 'https://www.google.com/recaptcha/api2/demo'

bypass_instance = RecaptchaBypass()
bypass_instance.bypass_recaptcha_v2(demo_url)

Without Proxy + Debug

import os

from api import RecaptchaBypass


os.system('cls' if os.name == 'nt' else 'clear')

demo_url = 'https://www.google.com/recaptcha/api2/demo'

bypass_instance = RecaptchaBypass(debug=True)
bypass_instance.bypass_recaptcha_v2(demo_url)

Using Proxy + Bypassing

Not all proxies are working; some of them will get blocked.

import os

from api import RecaptchaBypass


os.system('cls' if os.name == 'nt' else 'clear')

demo_url = 'https://www.google.com/recaptcha/api2/demo'

bypass_instance = RecaptchaBypass(use_proxy=True)
bypass_instance.bypass_recaptcha_v2(demo_url)

Using Proxy + Check IP

import os

from api import RecaptchaBypass


os.system('cls' if os.name == 'nt' else 'clear')

demo_url = 'https://www.google.com/recaptcha/api2/demo'

bypass_instance = RecaptchaBypass(use_proxy=True)
bypass_instance.check_ip()

Legal Disclaimer

Note This was made for educational purposes only, nobody which directly involved in this project is responsible for any damages caused. You are responsible for your actions.

Releases

No releases published

Packages

No packages published

Languages