Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
npm install basic
var http = require('http');
var basic = require('../../lib/index');
var auth = basic(function (user, pass, callback) {
if (user === 'let' && pass === 'me in') return callback(null);
callback(401);
});
http.createServer(function (req, res) {
auth(req, res, function (err) {
var head = (err) ? {'WWW-Authenticate': 'Basic realm="Secure Area"'} : {};
res.writeHead(err || 200, head);
res.end();
});
}).listen(8000);
curl --head -H "Authorization:Basic bGV0Om1lIGlu" http://localhost:8000
npm test
FAQs
HTTP Basic Auth for Node.js
The npm package basic receives a total of 700 weekly downloads. As such, basic popularity was classified as not popular.
We found that basic 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.