
Research
/Security News
Malicious npm Packages Target WhatsApp Developers with Remote Kill Switch
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
rest-email-api
Advanced tools
Welcome to rest-email-api! Now sending emails is as easy as sending an HTTP request.
This email API supports sending templated emails and non-templated emails through a POST body.
Great for sending password reset emails to users, account validation emails, or MFA confirmation emails.
npm install rest-email-api
// index.js
const emailService = require('rest-email-api')
const path = require('path')
emailService.runEmailApi({
port: 3000,
secretKey: 'ANY_SECRET_KEY', // Any super long, random, and hard to guess key
emailUser: 'email@youremail.com',
emailAuth: {
// See nodemailer create transporter method at nodemailer.com/about/#/example for more information.
service: 'gmail',
auth: {
user: 'email@youremail.com',
pass: 'your_password'
}
},
templateDirectory: path.join(__dirname, './templates')
})
For this example, let's set up a "congrats" template to congratulate our recipient for a recent purchase.
.
├── index.js
└── templates
└── congrats
├── html.pug
html.pug
p Congratulations! Enjoy the purchase of your new:
p #{itemId}
Below is an example documented via Postman.
For a templated email:
For an ad-hoc/on the fly email made without a template:
FAQs
A REST API that sends both ad-hoc and templated emails.
The npm package rest-email-api receives a total of 0 weekly downloads. As such, rest-email-api popularity was classified as not popular.
We found that rest-email-api 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
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.
Security News
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.