C sharp-based CAPTCHA solver (Metabypass)
Free demo (no credit card required) -> https://app.metabypass.tech/application
Get the credentials from the Application section of the MetaBypass website:
- Go to Application Section
- You can see credentials like the below image
To obtain the results for each type of captcha, do the following steps:
-
Create a C# Console Application
-
Download meyabypass-csharp.dll and token.txt files.
-
In the Solution Explorer, right-click on the "References". Select "Add Reference". Click on the "Browse" button to navigate to the location where you have the meyabypass-csharp.dll file.
-
Put token.txt in YOUR_SOlUTION_PATH/bin/debug
-
In Program.cs write the following codes for each type of captcha:
-
Text_Captcha
using System; namespace YOUR_NAME_SPACE { class Program { static void Main(string[] args) { metabypass_csharp.Program.ClientId = "YOUR_CLIENT_ID"; metabypass_csharp.Program.ClientSecret = "YOUR_CLIENT_SECRET"; metabypass_csharp.Program.Username = "YOUR_ACCOUNT_EMAIL"; metabypass_csharp.Program.Password = "YOUR_ACCOUNT_PASSWORD"; var res = metabypass_csharp.Program.TextCaptcha(metabypass_csharp.Program.ImageToBase64("YOUR_CAPTCHA_IMAGE_PATH")); Console.WriteLine(res); Console.ReadKey(); } } }
-
Recaptcha V2
using System; namespace YOUR_NAME_SPACE { class Program { static void Main(string[] args) { metabypass_csharp.Program.ClientId = "YOUR_CLIENT_ID"; metabypass_csharp.Program.ClientSecret = "YOUR_CLIENT_SECRET"; metabypass_csharp.Program.Username = "YOUR_ACCOUNT_EMAIL"; metabypass_csharp.Program.Password = "YOUR_ACCOUNT_PASSWORD"; var res = metabypass_csharp.Program.RecaptchaV2("YOUR_SITE_KEY", "YOUR_SITE_URL"); Console.WriteLine(res); Console.ReadKey(); } } }
-
Recaptcha V3
using System; namespace YOUR_NAME_SPACE { class Program { static void Main(string[] args) { metabypass_csharp.Program.ClientId = "YOUR_CLIENT_ID"; metabypass_csharp.Program.ClientSecret = "YOUR_CLIENT_SECRET"; metabypass_csharp.Program.Username = "YOUR_ACCOUNT_EMAIL"; metabypass_csharp.Program.Password = "YOUR_ACCOUNT_PASSWORD"; var res = metabypass_csharp.Program.RecaptchaV3("YOUR_SITE_KEY", "YOUR_SITE_URL"); Console.WriteLine(res); Console.ReadKey(); } } }
-
Notice: You should use .Net Framework 4.6.1