
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.
SOTP is a OTP authentication manager for Express based on notp.
var express = require('express');
var app = express();
var sotp = require('sotp')(app, {
secret: 'my-random-secret', // Required
appName: 'My App Name', // Name to display in Google Auth App - Default = My App
successRedirect: '/homepage', // URL redirection after authentication - Default = /sotp/test
devMode: true // Shown secret QRCode on /sotp/secret - Optionnal - Default = false
});
app.get('/homepage', (req, res) => {
res.send('This is the Homepage ! You are logged in.');
});
app.listen(3000, function () {
console.log('Example app listening on port 3000!');
});
Get the secret QRcode on this page :
http://localhost:3000/sotp/secret
then scan it with the Google Auth App (iOS / Android)
Don't forget to set devMode to false if you no longer require to scan secret QRCode.
Use this page to login with a token :
http://localhost:3000/sotp/login
If authentication is successful, you are redirect to the given URL (/homepage).
FAQs
OTP authentication management for Express
We found that sotp 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.