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.
Uses stopforumspam.com API to compare usernames, emails, and ip addresses to their spam database.
#node-stopforumspam
Helps weed out spam accounts during signups. Allows you to check usernames, emails and/or ip addresses against stopforumspam.com API.
npm install spamcheck
var sfs = require('spamcheck'); // get our object
// call checkspammer with any mixture of the following properties in the object to check: ['username', 'email', 'password']
sfs.checkSpammer({ip: req.connection.remoteAddress, email: req.body.email}, function(err, isSpammer) {
if (err) console.log(err);
if (isSpammer) {
// user is spam, send back a custom status code with nice message or our spammer.
res.send(452, 'You are listed as a spammer and registration will not continue.');
} else {
// user is not spam, register the user.
// insert into the db, etc.
}
});
Please visit the stopforumspam.com API documenation to fully understand the way this works.
StopForumSpam.com will allow up to 20,000 API requests daily. If you need more, please see their database page. They provide hourly updates to their database that you can download and work with directly and locally.
FAQs
Uses stopforumspam.com API to compare usernames, emails, and ip addresses to their spam database.
We found that spamcheck 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.