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.
logging utilities built on Bunyan and RotateLog-Stream
$ npm install bunlogger --save
error log
and access log
share the same cor_id
, so you can associate the error log to the access log happened at the same time.req.log
is actually the bunyan logger, simply req.log.info('...')
will share the same cor_id
in the access log
and error log
.elapsed
show the time spent in this req
.const express = require('express');
const Bunlog = require('bunlogger');
var app = express();
var logger = new Bunlog();
// as a middleware
app.use(logger.connect());
// as an error handler
app.use(logger.error());
logger is using rotatelog-stream for rotating logs.
const Logger = require('..').Logger;
const join = require('path').join;
var log = new Logger({logDir: join(__dirname, 'log')});
log.info('hi info');
log.warn('hi warn');
log.error('hi error');
const print = require('bunlogger').printErr;
try {
new NotExist();
} catch (er) {
print(er)
}
make sure bunyan is installed globally
$ DEBUG=* node bin/www | bunyan
process.stdout
for developmentFAQs
bunyan logger, bunyan express middleware, pretty print err for development
The npm package bunlogger receives a total of 1 weekly downloads. As such, bunlogger popularity was classified as not popular.
We found that bunlogger 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.