-
Notifications
You must be signed in to change notification settings - Fork 0
/
usage.cpp
39 lines (31 loc) · 1.3 KB
/
usage.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Main file
#include "inc/metabypass.cpp"
int main() {
// //-------------- Image Captcah---------------
// int numeric=0;
// int minLen=0;
// int maxLen=0;
// std::string base64_encoded=convert_image_to_base64("samples/icaptcha1.jpg");
// std::string result=imageCaptcha(base64_encoded,numeric,minLen,maxLen);
// std::cout << result << std::endl;
// //-------------- Image Captcah---------------
// //-------------- reCAPTCHA V2---------------
// std::string site_url="SITE_URL";
// std::string site_key="SITE_KEY";
// std::string result=recaptchaV2Handler(site_url,site_key);
// std::cout << result << std::endl;
// //-------------- reCAPTCHA V2---------------
// //-------------- reCAPTCHA V3---------------
// std::string site_url="SITE_URL";
// std::string site_key="SITE_KEY";
// std::string result=recaptchaV3(site_url,site_key);
// std::cout << result << std::endl;
// //-------------- reCAPTCHA V3---------------
// //-------------- reCAPTCHA Invisible---------------
// std::string site_url="SITE_URL";
// std::string site_key="SITE_KEY";
// std::string result=recaptchaInvisible(site_url,site_key);
// std::cout << result << std::endl;
// //-------------- reCAPTCHA Invisible---------------
return 0;
}