All Projects → trekjs → Captcha

trekjs / Captcha

Licence: mit
A Lightweight Pure JavaScript Captcha for Node.js. No C/C++, No ImageMagick, No Canvas.

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Captcha

wagtail-django-recaptcha
A simple recaptcha field for Wagtail Form Pages
Stars: ✭ 47 (-87.37%)
Mutual labels:  captcha
login-captcha
laravel-admin 登录添加验证
Stars: ✭ 37 (-90.05%)
Mutual labels:  captcha
Cnn keras
CNN | Keras/PyTorch | CAPTCHA recognition(卷积神经网络、Keras/PyTorch框架、验证码识别)
Stars: ✭ 256 (-31.18%)
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 (-62.37%)
Mutual labels:  captcha
CaptchaSolver
Um simples projeto para fazer o reconhecimento do captcha usado pelo jogo bombcrypto.
Stars: ✭ 52 (-86.02%)
Mutual labels:  captcha
NCaptcha
.NET/Mono CAPTCHA
Stars: ✭ 15 (-95.97%)
Mutual labels:  captcha
Slider Captcha Crack
🌈Slider_Captcha_Crack某教育网站滑动验证码破解(识别率100%)
Stars: ✭ 49 (-86.83%)
Mutual labels:  captcha
Ng Recaptcha
Angular component for Google reCAPTCHA
Stars: ✭ 367 (-1.34%)
Mutual labels:  captcha
react-hcaptcha
hCaptcha Component Library for ReactJS
Stars: ✭ 169 (-54.57%)
Mutual labels:  captcha
Gocaptcha
A captcha service written in golang
Stars: ✭ 254 (-31.72%)
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 (-93.28%)
Mutual labels:  captcha
SimCaptcha
✅ 一个简单易用的点触验证码 (前端+后端)
Stars: ✭ 49 (-86.83%)
Mutual labels:  captcha
jcaptcha
可扩展java验证码工具类。支持字母,中文,数字运算;同时可配置验证码尺寸,背景色,干扰项
Stars: ✭ 33 (-91.13%)
Mutual labels:  captcha
bypass-captcha-examples
Different complex captcha bypass examples: Steam, Netflix, Data Dome, Adobe, etc.
Stars: ✭ 62 (-83.33%)
Mutual labels:  captcha
Buster
Captcha solver extension for humans
Stars: ✭ 4,244 (+1040.86%)
Mutual labels:  captcha
breakingcaptcha
Breaking captchas!!
Stars: ✭ 38 (-89.78%)
Mutual labels:  captcha
recaptcha-2-phpbbmod
reCAPTCHA v2 for phpBB Olympus 3.0
Stars: ✭ 14 (-96.24%)
Mutual labels:  captcha
Captcha
行为验证码(滑动拼图、点选文字),前后端(java)交互,包含h5/Android/IOS/flutter/uni-app的源码和实现
Stars: ✭ 370 (-0.54%)
Mutual labels:  captcha
Simple Php Captcha
A simple PHP CAPTCHA script.
Stars: ✭ 361 (-2.96%)
Mutual labels:  captcha
roundcube-rcguard
Roundcube plugin to enforce reCAPTCHA for users who have too many failed logins.
Stars: ✭ 18 (-95.16%)
Mutual labels:  captcha

captcha

A Lightweight Pure JavaScript Captcha for Node.js. No C/C++, No ImageMagick, No canvas. Inspired By rucaptcha.

Installation

$ npm install trek-captcha --save

Examples

'use strict'

const fs = require('fs')
const captcha = require('trek-captcha')

async function run() {
  const { token, buffer } = await captcha()

  // console.log(token, buffer)

  fs.createWriteStream('a.gif').on('finish', () => console.log(token)).end(buffer)
}

run()

API

captcha({ size: 5, style: -1 })

  • size: Defaults to 5.
  • style: Defaults to -1 with random.
// returns
{
  token,
  buffer
}

Badges

Linux Windows codecov


fundon.me  ·  GitHub @fundon  ·  Twitter @_fundon

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