
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
nodejs-captcha-st
Advanced tools
Creates Captcha in base64 format
npm install st-nodejs-captcha
// import library
var captcha = require("st-nodejs-captcha");
// Create new Captcha
var newCaptcha = captcha();
// Value of the captcha
var value = newCaptcha.value
// Image in base64
var imagebase64 = newCaptcha.image;
// Width of the image
var width = newCaptcha.width;
// Height of the image
var height = newCaptcha.heigth;
"use strict";
var http = require("http");
var captcha = require("st-nodejs-captcha");
var PORT = 8181;
function handleRequest(req, res) {
if (req.method === "GET" && (req.url === '/' || req.url.indexOf("index") > -1)){
let result = captcha();
let source = result.image;
res.end(
`
<!doctype html>
<html>
<head>
<title>Test Captcha</title>
</head>
<body>
<label>Test image</label>
<img src="${source}" />
</body>
</html>
`
);
}else{
res.end('');
}
}
//Create a server
var server = http.createServer({}, handleRequest);
//Start server
server.listen(PORT, function() {
console.log("Server listening on: https://localhost:" + PORT);
});
It is recommended to store the value of the captcha in order to check the validity of the user's answer to challange
FAQs
Create captcha in nodejs
We found that nodejs-captcha-st 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.