All Projects → x2bool → NCaptcha

x2bool / NCaptcha

Licence: MIT License
.NET/Mono CAPTCHA

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to NCaptcha

Z-Spider
一些爬虫开发的技巧和案例
Stars: ✭ 33 (+120%)
Mutual labels:  captcha
breakingcaptcha
Breaking captchas!!
Stars: ✭ 38 (+153.33%)
Mutual labels:  captcha
SimCaptcha
✅ 一个简单易用的点触验证码 (前端+后端)
Stars: ✭ 49 (+226.67%)
Mutual labels:  captcha
hcaptcha-solver-python-selenium
hCaptcha solver and bypasser for Python Selenium. Simple website to try to solve hCaptcha.
Stars: ✭ 32 (+113.33%)
Mutual labels:  captcha
adonis-recaptcha2
Google reCAPTCHA for AdonisJS
Stars: ✭ 24 (+60%)
Mutual labels:  captcha
bypass-captcha-examples
Different complex captcha bypass examples: Steam, Netflix, Data Dome, Adobe, etc.
Stars: ✭ 62 (+313.33%)
Mutual labels:  captcha
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 (+106.67%)
Mutual labels:  captcha
login-captcha
laravel-admin 登录添加验证
Stars: ✭ 37 (+146.67%)
Mutual labels:  captcha
Slider Captcha Crack
🌈Slider_Captcha_Crack某教育网站滑动验证码破解(识别率100%)
Stars: ✭ 49 (+226.67%)
Mutual labels:  captcha
recaptcha
An easy-to-use reCAPTCHA package
Stars: ✭ 55 (+266.67%)
Mutual labels:  captcha
hcaptcha-bundle
A Symfony 4+ bundle to bring hCaptcha into your forms
Stars: ✭ 15 (+0%)
Mutual labels:  captcha
League-of-Legends-Accounts-Creator
Accounts Creator for League of Legends.
Stars: ✭ 46 (+206.67%)
Mutual labels:  captcha
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 (+833.33%)
Mutual labels:  captcha
go-captcha
Go Captcha is a behavioral captcha, which implements the generation of random verification text and the verification of click position information.
Stars: ✭ 86 (+473.33%)
Mutual labels:  captcha
CaptchaSolver
Um simples projeto para fazer o reconhecimento do captcha usado pelo jogo bombcrypto.
Stars: ✭ 52 (+246.67%)
Mutual labels:  captcha
captcha-breaking-library
Neural network, contour analysis, bitmap vector subtraction CAPTCHA solving library and scripting language with perceptive color space segmentation
Stars: ✭ 76 (+406.67%)
Mutual labels:  captcha
wagtail-django-recaptcha
A simple recaptcha field for Wagtail Form Pages
Stars: ✭ 47 (+213.33%)
Mutual labels:  captcha
recaptcha-2-phpbbmod
reCAPTCHA v2 for phpBB Olympus 3.0
Stars: ✭ 14 (-6.67%)
Mutual labels:  captcha
react-hcaptcha
hCaptcha Component Library for ReactJS
Stars: ✭ 169 (+1026.67%)
Mutual labels:  captcha
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 (+66.67%)
Mutual labels:  captcha

NCaptcha (.NET CAPTCHA)

License

MIT, for more details see LICENSE file.

Example

Captcha captcha;

// simple way

captcha = new Captcha(new {
    Width = 100, // image width in pixels
    Height = 50, // image height in pixels
    Foreground = "black", // font color; html color (#RRGGBB) or System.Drawing.Color
    Background = Color.White, // background color; html color (#RRGGBB) or System.Drawing.Color
    KeyLength = 5, // key length
    Waves = true, // enable waves filter (distortions)
    Overlay = true // enable overlaying
});

// use builder (more control)

captcha = new Captcha.Builder()
    .Background(myBackground)
    .Keygen(myKeygen)
    .Drawer(myDrawer)
    .Filters(myFilters)
    .Build();

// access key and image

var key = captcha.Key;
var image = captcha.Image;
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].