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.
Simple way to send alerts via Slack, Email, Discord, SMS, etc. Simplert is currently geared towards personal and smaller apps where you just want a simple way to alert on some event like when a new user signs up. I would advise against using this in any critical production apps as of now.
npm install simplert
npx simplert generate-config
{
"discord": {
"enabled": false,
"token": "",
"send_to": ""
}
}
enabled - whether you want this type of alerting enabled or not token - the token of your discord bot send_to - the name of the discord channel you want to send your alerts too. Make sure your bot has permission on the server to send messages
Note: Make sure you have setup your configuration file
const express = require("express")
const app = express();
const simplert = require("simplert");
simplert.configure("simplert.cfg.json")
app.get("/test", async (req, res) => {
simplert.discord("server test")
res.send("alert sent")
})
app.listen(8849, "127.0.0.1", (req, res) => {
console.log("listening at localhost:8849")
})
const simplert = require("simplert");
simplert.configure("simplert.cfg.json")
async function run() {
await simplert.discord("some event")
await simplert.discord("some other event")
}
run();
Email, Slack, SMS coming eventually
Please open an issue on the repo to report any bugs or improvements as I am sure there are. I would consider this still in beta and not to be used in any critical production apps rather used for personal projects that you just want some simple alerting on.
FAQs
Simple way to send alerts via Slack, Email, Discord, SMS, etc.
The npm package simplert receives a total of 0 weekly downloads. As such, simplert popularity was classified as not popular.
We found that simplert 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.