
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Free demo (no credit card required) -> https://app.metabypass.tech/application
Solve image captcha , reCaptcha v2 & v3
Auto handler for reCaptcha v2
Simple syntax
Error logger
Go to your project root directory and run this command in terminal:
gem install metabypass
Image Captcha
require 'metabypass'
# ---------------------------- CREDENTIALS -----------------------------
#get your credentials from https://app.metabypass.tech/application
client_id = 'YOUR_CLIENT_ID'
client_secret = 'YOUR_CLIENT_SECRET'
email = 'YOUR_EMAIL'
password = 'YOUR_PASSWORD'
# Metabypass instance
metabypass = Metabypass.new(client_id,client_secret,email,password)
# ----------------------------IMAGE CAPTCHA SAMPLE -----------------------------
#you can pass base64 encoded image file or path of image file
img="samples/icaptcha1.jpg"
#you can pass some optional params too. more details: https://app.metabypass.tech/docs.html?#api_3
numeric=0; #default
min_len=0; #default
max_len=0; #default
image_captcha= metabypass.image_captcha(img,numeric,min_len,max_len)
puts metabypass.end_result
reCaptcha v2
require 'metabypass'
# ---------------------------- CREDENTIALS -----------------------------
#get your credentials from https://app.metabypass.tech/application
client_id = 'YOUR_CLIENT_ID'
client_secret = 'YOUR_CLIENT_SECRET'
email = 'YOUR_EMAIL'
password = 'YOUR_PASSWORD'
# Metabypass instance
metabypass = Metabypass.new(client_id,client_secret,email,password)
# --------------------------- reCAPTCHA V2 SAMPLE -----------------------------
url="SITE_URL"
sitekey="SITE_KEY"
recaptcha_v2= metabypass.recaptcha_v2_handler(url,sitekey)
puts metabypass.end_result
reCaptcha v3
require 'metabypass'
# ---------------------------- CREDENTIALS -----------------------------
#get your credentials from https://app.metabypass.tech/application
client_id = 'YOUR_CLIENT_ID'
client_secret = 'YOUR_CLIENT_SECRET'
email = 'YOUR_EMAIL'
password = 'YOUR_PASSWORD'
# Metabypass instance
metabypass = Metabypass.new(client_id,client_secret,email,password)
# --------------------------- reCAPTCHA V3 SAMPLE -----------------------------
url="SITE_URL"
sitekey="SITE_KEY"
recaptcha_v3= metabypass.recaptcha_v3(url,sitekey)
puts metabypass.end_result
reCaptcha invisible
require 'metabypass'
# ---------------------------- CREDENTIALS -----------------------------
#get your credentials from https://app.metabypass.tech/application
client_id = 'YOUR_CLIENT_ID'
client_secret = 'YOUR_CLIENT_SECRET'
email = 'YOUR_EMAIL'
password = 'YOUR_PASSWORD'
# Metabypass instance
metabypass = Metabypass.new(client_id,client_secret,email,password)
# --------------------------- reCAPTCHA INVISIBLE SAMPLE -----------------------------
url="SITE_URL"
sitekey="SITE_KEY"
recaptcha_invisible= metabypass.recaptcha_invisible(url,sitekey)
puts metabypass.end_result
FAQs
Unknown package
We found that metabypass demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.