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.
express logging middlewares built on bunyan and rotatelog-stream
$ npm install bunlogger --save
app.use(logger.connect())
will populate the req.log
, which is actually a child of the bunyan logger, simply req.log.info('...')
will share the same cor_id
in the access log
and error log
.
logging req.log.fatal()
, req.log.error()
, req.log.warn()
into error log file. If error is sent to next(err)
and req.log[error_level]
not got called, middleware app.use(logger.onError())
will log this error by error.status
automatically. err.status == 4xx is warn level, err.status == 5xx is error level.
elapsed
show the time spent in this req
.
Integrate with rotatelog-stream for rotating logs.
See logging on the console in developing stage.
const express = require('express');
const AppLogger = require('bunlogger');
var app = express();
app.log = new AppLogger();
populate req.log
and log all accesses
app.use(app.log.connect());
Catch express next(err) for logging, but skip if req.log got called above warn level.
app.use(app.log.onError());
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 printErr = require('bunlogger').printErr;
try {
new NotExist();
} catch (er) {
printErr(er)
}
$ DEBUG=* node bin/www
process.stdout
for development, so we can see how logging file looks like in console.FAQs
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.