All Projects → JustTalDevelops → go-hcaptcha

JustTalDevelops / go-hcaptcha

Licence: other
A Go library for solving hCaptchas with any image recognition API.

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to go-hcaptcha

dcat-auth-captcha
Sliding captcha for dcat-admin auth / dcat-admin登陆 滑动验证插件 多平台支持
Stars: ✭ 38 (-65.77%)
Mutual labels:  hcaptcha
TikTokBot
Bot save videos from instagram and then post them to Tik-Tok
Stars: ✭ 21 (-81.08%)
Mutual labels:  captcha-solver
epic-awesome-gamer
🍷 Gracefully claim weekly free games and monthly content from Epic Store.
Stars: ✭ 600 (+440.54%)
Mutual labels:  hcaptcha
ulozto-captcha-breaker
Deep learning model using Tensorflow that breaks ulozto captcha codes.
Stars: ✭ 65 (-41.44%)
Mutual labels:  captcha-solver
Awesome Web Scraping
List of libraries, tools and APIs for web scraping and data processing.
Stars: ✭ 4,510 (+3963.06%)
Mutual labels:  captcha-solver
Buster
Captcha solver extension for humans
Stars: ✭ 4,244 (+3723.42%)
Mutual labels:  captcha-solver
Z-Spider
一些爬虫开发的技巧和案例
Stars: ✭ 33 (-70.27%)
Mutual labels:  captcha-solver
twse-captcha-solver-dl4j
A deeplearning based captcha solver for http://bsr.twse.com.tw/bshtm/
Stars: ✭ 29 (-73.87%)
Mutual labels:  captcha-solver
react-hcaptcha
hCaptcha Component Library for ReactJS
Stars: ✭ 169 (+52.25%)
Mutual labels:  hcaptcha
2captcha-php
PHP package for easy integration with the API of 2captcha captcha solving service to bypass recaptcha, hcaptcha, funcaptcha, geetest and solve any other captchas.
Stars: ✭ 25 (-77.48%)
Mutual labels:  hcaptcha
2captcha-python
Python 3 package for easy integration with the API of 2captcha captcha solving service to bypass recaptcha, hcaptcha, funcaptcha, geetest and solve any other captchas.
Stars: ✭ 140 (+26.13%)
Mutual labels:  hcaptcha
hcaptcha-bundle
A Symfony 4+ bundle to bring hCaptcha into your forms
Stars: ✭ 15 (-86.49%)
Mutual labels:  hcaptcha
hcaptcha-solver-python-selenium
hCaptcha solver and bypasser for Python Selenium. Simple website to try to solve hCaptcha.
Stars: ✭ 32 (-71.17%)
Mutual labels:  hcaptcha
2captcha-go
Golang Module for easy integration with the API of 2captcha captcha solving service to bypass recaptcha, hcaptcha, funcaptcha, geetest and solve any other captchas.
Stars: ✭ 31 (-72.07%)
Mutual labels:  hcaptcha
Captcha-Tools
All-in-one Python (And now Go!) module to help solve captchas with Capmonster, 2captcha and Anticaptcha API's!
Stars: ✭ 23 (-79.28%)
Mutual labels:  hcaptcha

go-hcaptcha

A Go library for solving hCaptchas with any image recognition API.

1v1 me, bro!

Basic Usage

In order to solve, you need the site URL (not the domain!), and the site key, which can be found in the HTML of the website with the hCaptcha challenge.

Below is a basic example of how to use the solver with the two using a simple guessing solver.

c, err := NewChallenge(siteUrl, siteKey)
if err != nil {
    panic(err)
}
err = c.Solve(&GuessSolver{})
if err != nil {
    panic(err)
}
fmt.Println(c.Token()) // P0_eyJ0eXAiOiJKV1QiLC...

Custom Solvers

Custom solvers can be implemented with ease. All solvers need to implement the Solver interface. You can link this with any image recognition API you want.

You can see an example of this with the GuessSolver implementation in solver.go.

Credits

2.0.1

A few changes to support the modern API, and general code cleanup along with a switch to mathgl for Bézier curve creation.

2.0.0

The motion data capturing required with hCaptcha would not be possible without the work of @h0nde and his py-hcaptcha solver in Python.

1.0.2:

There were quite a lot of changes with the hCaptcha API, so the solver was updated to reflect these changes, with the generous help of @aw1875 and his puppeteer-hcaptcha solver in JavaScript.

1.0.0

This project was inspired by the work of @JimmyLaurent and his hcaptcha-solver also in JavaScript. I'd like to thank him for his work, and for being a motivation to create this library.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].