Socket
Socket
Sign inDemoInstall

captcha-verification

Package Overview
Dependencies
66
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    captcha-verification

this creates a new captcha based upon your configs and help you keep robiots off your website


Version published
Weekly downloads
1
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Captcha Verification

captcha-verification is a lightweight npm package that allows you to create random Captcha images to prevent robots from accessing your website. Captchas are widely used to verify that a user is human and not a malicious script or bot.

Installation

To install the Captcha Verification package, use npm:

npm install captcha-verification

Usage

const captcha = require('random-verification');

// Generate a random Captcha image

const config = {
  color: 'R',
  difficulty: 'medium'
}

const { captcha, hash } = captcha.generate();

// captcha contains the Captcha image in PNG format as a base4 string.
// hash contains the image content in encrypted format to verify the user input
// You can send the captchaImage to the user in the response or save it to a file.

// To verify the user's input against the generated Captcha:

const userInput = 'user-input-from-form';

const isValid = captcha.verify(hash, userInput);

if (isValid) {
  
  // Captcha input is valid, proceed with the user's request.

} else {
  
  // Captcha input is invalid, show an error message or take appropriate action.

}

Configs

KeyDefaultDescriptionPossible Keys
DifficultyeasyCaptcha noise ordereasy, medium
ColorBlackColor of the textr, g, b
Len6Number of characters in captcha1 - n

License

This package is open-source and available under the MIT License.

Contributing

Contributions are welcome! If you find any issues or have suggestions for improvements, feel free to open an issue or submit a pull request on the GitHub repository, here.

About

Random Captcha Generator is maintained and developed by Kaustubh.


By using Captcha Verification, you can easily implement Captcha functionality in your web application to enhance security and protect it from unwanted automated access. If you have any questions or need assistance, feel free to contact us or open an issue on the GitHub repository. Happy coding!

Keywords

FAQs

Last updated on 08 Aug 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc