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.
reserved-email-addresses-list
Advanced tools
List of 1250+ email addresses reserved for security concerns
List of 1250+ email addresses reserved for security concerns
npm:
npm install reserved-email-addresses-list
yarn:
yarn add reserved-email-addresses-list
The string you are comparing with must be converted to lowercase and trimmed of whitespace. It is also highly recommended that you check for strict equality, starts with, and ends with comparisons as well.
const reservedEmailAddressesList = require('reserved-email-addresses-list');
const str = 'Admin '.toLowerCase().trim();
const match = reservedEmailAddresssesList.find(addr => addr === str || addr.startsWith(str) || addr.endsWith(str)))
if (match) throw new Error(`${str} matched a reserved email address of ${match}`);
See index.json for the complete list of all reserved email addresses.
Name | Website |
---|---|
Nick Baugh | http://niftylettuce.com/ |
FAQs
List of 1250+ generic, admin, mailer-daemon, and no-reply usernames reserved for security concerns. Made for Forward Email <https//forwardemail.net>.
The npm package reserved-email-addresses-list receives a total of 706 weekly downloads. As such, reserved-email-addresses-list popularity was classified as not popular.
We found that reserved-email-addresses-list demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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.