All Projects → CharlesPikachu → Hackcaptcha

CharlesPikachu / Hackcaptcha

Licence: mit
provide api functions for captcha recognition.

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Hackcaptcha

Captcha Killer
burp验证码识别接口调用插件
Stars: ✭ 368 (+1372%)
Mutual labels:  captcha
Captcha crack
选字验证码破解,试验过网易和极验,破解率99
Stars: ✭ 541 (+2064%)
Mutual labels:  captcha
Captcha Tensorflow
Image Captcha Solving Using TensorFlow and CNN Model. Accuracy 90%+
Stars: ✭ 660 (+2540%)
Mutual labels:  captcha
Baiduyun deeplearning competition
百度云魅族深度学习应用大赛
Stars: ✭ 393 (+1472%)
Mutual labels:  captcha
Jigsaw
canvas滑动验证码
Stars: ✭ 466 (+1764%)
Mutual labels:  captcha
Recaptcha
reCAPTCHA = REcognize CAPTCHA: A Burp Suite Extender that recognize CAPTCHA and use for intruder payload 自动识别图形验证码并用于burp intruder爆破模块的插件
Stars: ✭ 596 (+2284%)
Mutual labels:  captcha
Captcha
行为验证码(滑动拼图、点选文字),前后端(java)交互,包含h5/Android/IOS/flutter/uni-app的源码和实现
Stars: ✭ 370 (+1380%)
Mutual labels:  captcha
Geetest break
极验验证码破解-源码+手册
Stars: ✭ 681 (+2624%)
Mutual labels:  captcha
Angular Recaptcha
AngularJS directive to add a reCaptcha widget to your form
Stars: ✭ 502 (+1908%)
Mutual labels:  captcha
Pythonspidernotes
Python入门网络爬虫之精华版
Stars: ✭ 5,634 (+22436%)
Mutual labels:  captcha
Captcha recognize
Image Recognition captcha without image segmentation 无需图片分割的验证码识别
Stars: ✭ 449 (+1696%)
Mutual labels:  captcha
Easyocr
Java OCR 识别组件(基于Tesseract OCR 引擎)。能自动完成图片清理、识别 CAPTCHA 验证码图片内容的一体化工作。Java Image cleanup, OCR recognition component (based Tesseract OCR engine, automatically cleanup image and identification CAPTCHA verification code picture content).
Stars: ✭ 466 (+1764%)
Mutual labels:  captcha
Rucaptcha
Captcha gem for Rails Application. No dependencies. No ImageMagick, No RMagick.
Stars: ✭ 607 (+2328%)
Mutual labels:  captcha
Undetected Chromedriver
Custom Selenium Chromedriver | Zero-Config | Passes ALL bot mitigation systems (like Distil / Imperva/ Datadadome / CloudFlare IUAM)
Stars: ✭ 365 (+1360%)
Mutual labels:  captcha
Captcha Break
captcha break based on opencv2, tesseract-ocr and some machine learning algorithm.
Stars: ✭ 667 (+2568%)
Mutual labels:  captcha
Captcha
A Lightweight Pure JavaScript Captcha for Node.js. No C/C++, No ImageMagick, No Canvas.
Stars: ✭ 372 (+1388%)
Mutual labels:  captcha
Awesome Captcha
🔑 Curated list of awesome captcha libraries and crack tools.
Stars: ✭ 566 (+2164%)
Mutual labels:  captcha
Phpauth
PHPAuth is a secure PHP Authentication class that easily integrates into any site.
Stars: ✭ 748 (+2892%)
Mutual labels:  captcha
Challenge Bypass Extension
Privacy Pass: a privacy-enhancing protocol and browser extension.
Stars: ✭ 679 (+2616%)
Mutual labels:  captcha
Captchaimageview
Custom ImageView to generate captcha image.
Stars: ✭ 609 (+2336%)
Mutual labels:  captcha

hackcaptcha

Provide api functions for captcha recognition, this repo is created mainly for https://github.com/CharlesPikachu/DecryptLogin
You can star this repository to keep track of the project if it's helpful for you, thank you for your support.

Documents

in Chinese

https://hackcaptcha-en.readthedocs.io/zh/latest/

in English

https://hackcaptcha-en.readthedocs.io/en/latest/

Support List

Captcha Type Number of supported algorithms Number of supported webapis in Chinese
Slider 1 0 滑块验证码
Digital 0 1 数字验证码
Click 1 0 点击验证码

Install

Pip install

run "pip install hackcaptcha"

Source code install

(1) Offline
Step1: git clone https://github.com/CharlesPikachu/hackcaptcha.git
Step2: cd hackcaptcha -> run "python setup.py install"
(2) Online
run "pip install git+https://github.com/CharlesPikachu/[email protected]"

Quick Start

hack captcha by algorithms

from hackcaptcha.crackers import AlgorithmsCracker

cracker = AlgorithmsCracker()
# slider captcha
infos_return = cracker.slider(imagepath='CAPTCHA IMAGE PATH', algorithm_type='canny')
# digital captcha
# click captcha
infos_return = cracker.click(imagepath='CAPTCHA IMAGE PATH', algorithm_type='zt12306', text_model_path='text.h5', object_model_path='object.h5')

hack captcha by webapis

from hackcaptcha.crackers import WebapisCracker

cracker = WebapisCracker()
# slider captcha
# digital captcha
infos_return = cracker.digital(imagepath='CAPTCHA IMAGE PATH', webapi_type='baidu', app_id='AppID', api_key='API Key', secret_key='Secret Key')
# click captcha

References

[1]. https://github.com/zhaipro/easy12306

More

WeChat Official Accounts

Charles_pikachu
img

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].