Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
catchup-captcha
Advanced tools
Catchup is a simple node package made with pure JavaScript
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.
$ npm install catchup-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" />
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.
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
FAQs
A simple captcha for using in front-end
The npm package catchup-captcha receives a total of 45 weekly downloads. As such, catchup-captcha popularity was classified as not popular.
We found that catchup-captcha demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.