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
Solve image captcha , reCaptcha v2 & v3 , invisible reCaptcha
Auto handler for reCaptcha v2
Use easily with the shell everywhere
to request we used the curl library in codes. so make sure that the curl library has been installed on your machine.
first , you need to credentials
- Go to Application Section
- You can see credentials like below image
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:
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"