Go-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 new folder in your device and open it by your IDE
-
Write the following command in a terminal to create go.mod file
go mod init <WRITE_NAME_YOU_WANT>
-
Then write the below command to get the package from this repository. It creates go.sum in your directory.
go get github.com/metabypass/captcha-solver-go
-
Create main.go file, copy the following codes for each type of captcha, and change function inputs with your values.
-
Text_Captcha
package main import "fmt" import "strconv" import captcha_solver_go "github.com/metabypass/captcha-solver-go" func main() { captcha_solver_go.NewAuthClient("YOUR_CLIENT_ID", "YOUR_CLIENT_SECRET", "YOUR_ACCOUNT_EMAIL", "YOUR_ACCOUNT_PASSWORD") // ****CHANGE HERE WITH YOUR VALUE******* token, code, message := captcha_solver_go.TextCaptcha("YOUR_CAPTCHA_IMAGE_PATH") // ****CHANGE HERE WITH YOUR VALUE******* fmt.Println("code: " + strconv.Itoa(code)) fmt.Println("message: " + message) fmt.Println("token: " + token) }
-
Recaptcha V2
package main import "fmt" import "strconv" import captcha_solver_go "github.com/metabypass/captcha-solver-go" func main() { captcha_solver_go.NewAuthClient("YOUR_CLIENT_ID", "YOUR_CLIENT_SECRET", "YOUR_ACCOUNT_EMAIL", "YOUR_ACCOUNT_PASSWORD") // ****CHANGE HERE WITH YOUR VALUE******* token, code, message := captcha_solver_go.RecaptchaV2("YOUR_SITE_KEY","YOUR_SITE_URL") // ****CHANGE HERE WITH YOUR VALUE******* fmt.Println("code: " + strconv.Itoa(code)) fmt.Println("message: " + message) fmt.Println("token: " + token) }
-
Recaptcha V3
package main import "fmt" import "strconv" import captcha_solver_go "github.com/metabypass/captcha-solver-go" func main() { captcha_solver_go.NewAuthClient("YOUR_CLIENT_ID", "YOUR_CLIENT_SECRET", "YOUR_ACCOUNT_EMAIL", "YOUR_ACCOUNT_PASSWORD") // ****CHANGE HERE WITH YOUR VALUE******* token, code, message := captcha_solver_go.RecaptchaV3("YOUR_SITE_KEY","YOUR_SITE_URL") // ****CHANGE HERE WITH YOUR VALUE******* fmt.Println("code: " + strconv.Itoa(code)) fmt.Println("message: " + message) fmt.Println("token: " + token) }
-
-
Write this command in your terminal to get the result:
go run main.go