Skip to content

Eclyps0/RecaptchaV3-Solver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

RecaptchaV3 Solver

Usage

GO

func main() {
	bg := "" //in some cases can be left empty
	getURL := "https://www.google.com/recaptcha/api2/anchor?ar=1&k=6LcR_okUAAAAAPYrPe-HK_0RULO1aZM15ENyM-Mf&co=aHR0cHM6Ly9hbnRjcHQuY29tOjQ0Mw..&hl=en&v=rKbTvxTxwcw5VqzrtN-ICwWt&size=invisible&cb=vzuqg89a4k12"
	postURL := "https://www.google.com/recaptcha/api2/reload?k=6LcR_okUAAAAAPYrPe-HK_0RULO1aZM15ENyM-Mf"
	result, err := BypassV3(getURL, postURL, bg)
	if err != nil {
		fmt.Println("Error:", err)
	} else {
		fmt.Println("Result:", result)
		ipscore, err := postRequest(result) // test the solution
		if err != nil {
			fmt.Println("Error:", err)
			return
		}
		println(ipscore)
	}
}

Python 3.X

if __name__ == "__main__":
    bg = ""  # in some cases can be left empty
    get_url = "https://www.google.com/recaptcha/api2/anchor?ar=1&k=6LcR_okUAAAAAPYrPe-HK_0RULO1aZM15ENyM-Mf&co=aHR0cHM6Ly9hbnRjcHQuY29tOjQ0Mw..&hl=en&v=rKbTvxTxwcw5VqzrtN-ICwWt&size=invisible&cb=vzuqg89a4k12"
    post_url = "https://www.google.com/recaptcha/api2/reload?k=6LcR_okUAAAAAPYrPe-HK_0RULO1aZM15ENyM-Mf"
    
    try:
        result = bypass_v3(get_url, post_url, bg)
        print("Result:", result)
        ipscore = post_request(result) # test the solution
        print(ipscore)
    except Exception as e:
        print("Error:", e)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors