
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
book-loggly
Advanced tools
loggly middleware for the book logging framework.
This middleware is shamelessly copy/modified from book-raven.
npm install book book-loggly --save
var log = require('book').default();
var logglyClient = require('loggly').createClient(myLogglyConfig);
var bookLogglyOptions = {
// A custom book-loggly option to ignore logs at ignore_levels and above
// 0: panic, 1: error, 2: warning, 3: info, 4: debug (default), 5: trace
"ignore_levels": log.TRACE,
// An (optional) arbitrary object to add to the log event to notify where its coming from
"from": {
"instance-id": "123"
}
};
log.use(require('book-loggly')(logglyClient, bookLogglyOptions));
// Now just log as usual
log.warn("Hey there!")
log.info("Logging this object", {some: 'object'})
log.error(new Error("test error!"))
book-loggly
uses the loggly JSON capability to log objects. The general form of these objects is:
{
"isError": false,
"message": "message",
"level_code": 3,
"level": "warning",
"extra": {
"extra_parameters": "that were added by other middleware",
"object fields": "from objects passed into the log function"
},
"from": {
"static-information": "from options.from"
}
}
If there is an error sending the packet to loggly, an error will be thrown. To catch it, use uncaughtException
. You can do anything here, but perhaps you want to exit.
process.on('uncaughtException', function(err) {
log.panic(err);
setTimeout(process.exit.bind(process, 1), 1500);
})
See LICENSE file.
FAQs
loggly middleware for the book logging framework
The npm package book-loggly receives a total of 0 weekly downloads. As such, book-loggly popularity was classified as not popular.
We found that book-loggly 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
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.