Skip to content

Latest commit

 

History

History
105 lines (61 loc) · 2.85 KB

README.md

File metadata and controls

105 lines (61 loc) · 2.85 KB

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.