New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

catchup-captcha

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

catchup-captcha

A simple captcha for using in front-end

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
45
increased by350%
Maintainers
1
Weekly downloads
 
Created
Source

Catchup

Catchup is a simple node package made with pure JavaScript

Description

Catchup produces a random 6 digit and alphabetical character (by default) as a string to be read by human beings. Users must enter the exact match of the characters generated to become validated as a non-robotic user.

Setup

$ npm install catchup-captcha

How it works

Get a captcha

import catchup from "catchup-captcha";
const captcha = new catchup({
	stringLength: 6,
	lineNoise: 25,
	dotNoise: 150,
})

let captchaData = captcha.draw();

The draw() method returns an object contains "code" and "imageData" as the example below:

{code: 'OTJ8U1', imageData: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwA…LmbVC6xICfjElY2KTsV/8P0j3QF9cHWJSAAAAAElFTkSuQmCC'}

Then you can use 'imageData' property to use as source of image tag like this:

document.getElementById("captchaImage").src = captchaData.imageData;
<img src="" id="captchaImage" />

Important

It is obvious that to prevent from attacks, you better store the generated captcha with the user who is requesting for it, so the attacker can't send you the similar riddle and his solution. This package is not doing it as it maybe differences in different project flows.

From author

Of course that this package is not perfect and can be extended in many ways. Please FEEL FREE TO CONTRIBUTE, DEVELOP AND FIX BUGS by a pull request. I'd be glad to hear your suggestions or anything else from you through alireza_mortezaei@hotmail.com

Keywords

FAQs

Package last updated on 13 Dec 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc