Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Your friendly neighborhood request tracker?
import express from 'express';
import busybody from 'busybody';
const app = express();
const tracker = busybody();
app.use(tracker);
app.get('/stats', (req, res) => {
res.send(tracker.getStats(req.query.sortBy));
});
app.get('/ping', (req, res) => {
setTimeout(() => res.send('pong'), 100);
});
app.listen(8080, () => console.log('Server listening'));
{
"since": "2016-05-19T21:18:44.362Z",
"routes": [
{
"route": "/ping",
"count": 4,
"mean": 127.5,
"standardDeviation": 25.5,
"min": 96.3,
"max": 153.4
},
{
"route": "/stats",
"count": 4,
"mean": 1.7,
"standardDeviation": 1.1,
"min": 1,
"max": 3.5
}
]
}
busybody(options) -> tracker
Creates a new tracker. Takes in the following options.
step=21600000
- Time between steps in milliseconds. Defaults to 6 hours.window = 4
- Maximum steps to store.maxSize = 500
- Maximum unique paths to store per step, after path sanitization.precision = 2
- Maximum decimals to round to.preFilter(req, res) -> boolean
- Custom function to filter tracked requests before they're handled.postFilter(err, req, res) -> boolean
- Custom function to filter tracked requests after they're handled.sanitize(req, res) -> string
- Custom function to sanitize a url. By default, removes querystring, ids, uuids, and casing.onStep(step)
- shortcut for tracker.on('step', fn)
(see Events)onExpire(step)
- shortcut for tracker.on('expire', fn)
(see Events)busybody.sanitize(req, res) -> string
The default sanitization function. It makes the following transformations to req.originalUrl
.
:id
.:uuid
.> /path/../2/something?foo=bar
/:id/something/
> /foo/BAR/21/123e4567-e89b-12d3-a456-426655440000
/foo/bar/:id/:uuid/
tracker(req, res, next)
Express middleware that should be placed above routes you want to keep stats about.
tracker.getStats(sort = 'mean') -> object
Returns the stats output.
The sort
parameter can be count
, mean
, standardDeviation
, min
, or max
.
tracker.push(path, ms)
Manually track a path and duration.
The middleware returned by busybody is also an EventEmitter
that exposes
the following events:
expire
- emitted when a step is about to expire. Passed the expiring step.step
- emitted after a new step was created. Passed the new step.FAQs
Measure express routes speed over time.
The npm package busybody receives a total of 0 weekly downloads. As such, busybody popularity was classified as not popular.
We found that busybody 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.