Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
healthpoint
Advanced tools
Easily expose your http server's health.
var http = require('http')
var healthpoint = require('healthpoint')
var hp = healthpoint({
version: require('./package.json').version
}, function (cb) {
// ordinarily you chould check your db connection
// instead we'll just alternate between healthy and fail every 5 seconds
var isOk = Math.round(Date.now() / 5000) % 2
cb(isOk ? null : new Error('Having a bad time...'))
})
http.createServer(function (req, res) {
if (req.url === '/health') return hp(req, res)
res.end('Visit /health for the health check')
}).listen(1337)
console.log('Visit http://localhost:1337/health for the health check')
healthpoint()
will return an http request handler function. healthpoint()
takes up to two optional arguments, properties
and check
.
Any key/value pairs on properties
will be exposed on the health check JSON. This is useful for adding things like your app's version.
check
is a function that will be called with a callback. If the callback is called with an error as its argument, the health check JSON will have a 500 statusCode and will display status: 'Error'
.
MIT
FAQs
Easily expose your http server's health.
We found that healthpoint 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.