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.
pm2-check-express
Advanced tools
Create express endpoints for health check and stats with pm2
$ npm install --save pm2-check-express
const express = require('express');
const app = express();
const pm2CheckRoutes = require('pm2-check-express');
app.use('/', function(req, res, next) {
//
});
pm2CheckRoutes(app, {
healthUrl: '/health',
statsUrl: '/stats',
timestampFormat: 'MM/DD/YY h:mm:ss a'
});
This will expose:
/health
route which returns 200
if all processes are online or 500
if any process is not online
/stats
route which returns a hash of stats:
{
healthy: true, // same as the /health route, but `true/false`
system: {
freeMemory: '2048.00MB',
totalMemory: '4096.00MB',
usedMemory: '2048.00MB',
usedMemoryPercent: 50.00,
cpuPercent: .36
},
processes: [
pid: 12345,
name: 'server',
instances: 1,
status: 'online',
lastStart: '07/04/2016 7:22 am',
lastStartAgo: '5 days ago',
firstStart: '07/01/2016 6:44 pm',
firstStartAgo: '8 days ago',
httpLatency: 155,
loopDelay: {},
restarts: 1,
memory: 22,
cpu: 12
}
FAQs
Add endpoints to Express to check health of system
We found that pm2-check-express 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.