To use BypassV2, open your terminal and navigate to the folder that contains BypassV2 content ::
pip install -r requirements.txt
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)
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)
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)
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)
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()
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.