Skip to content

metabypass/captcha-solver-compiled-cpp

Repository files navigation

MetaBypass ( AI Captcha Solver )

C++ wrapper to work with MetaBypass services

This is C++ compiled version. to use C++ pure version check this repo

Free demo (no credit card required) -> https://app.metabypass.tech/application


Features

Solve image captcha , reCaptcha v2 & v3 , invisible reCaptcha
Auto handler for reCaptcha v2
Use easily with the shell everywhere



Notice

to request we used the curl library in codes. so make sure that the curl library has been installed on your machine.



Usage


first , you need to credentials

  1. Go to Application Section
  2. You can see credentials like below image

Screenshot 2023-05-21 120957

and click on "Copy Json" button to copy your credentials easily. then store your credentials in json file. your json file should be like this:

{
  "grant_type": "password",
  "client_id": "YOUR_CLIENT_ID",
  "client_secret": "YOUR_CLIENT_SECRET",
  "client_name": "not important.can be empty",
  "username": "YOUR_EMAIL",
  "password": "YOUR_PASSWORD"
}

now you can use compiled files. see exampls:


Examples


imageCaptcha
--img-path : image captcha file path
--credentials-path: your credentails.json file path

./image_captcha --img-path "samples/icaptcha1.jpg" --credentials-path "credentials.json"


reCAPTCHA v2
--credentials-path: your credentails.json file path

./recaptcha_v2 --site-url "SITE_URL" --site-key "SITE_KEY" --credentials-path "credentials.json"


reCAPTCHA v3
--credentials-path: your credentails.json file path

./recaptcha_v3 --site-url "SITE_URL" --site-key "SITE_KEY" --credentials-path "credentials.json"


reCAPTCHA invisible
--credentials-path: your credentails.json file path

./recaptcha_invisible --site-url "SITE_URL" --site-key "SITE_KEY" --credentials-path "credentials.json"

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published