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.
A simple logger
Option | Description |
---|---|
infoFile | File name for logging info and verbose |
errFile | File name for logging error and warning |
logToConsole | Write to console too |
timestamp | Add timestamp for an entry |
append | If file exists, append new entries to it instead of truncating |
var opts = {
infoFile: 'info.log', // record info and verbose
errFile: 'err.log', // record error and warning
logToConsole: true,
timestamp: true, // default to true
append: true // default to true
};
var fs = requrie('http');
var logger = require('logger').createLogger(opts);
http.createServer(function(req, res) {
logger.info('Recieve a request. Path: %s', req.path);
res.end('Hello world.');
})
.listen(4000, function() {
logger.info('Server listening...');
});
FAQs
a simple logger
The npm package elecpen receives a total of 0 weekly downloads. As such, elecpen popularity was classified as not popular.
We found that elecpen 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.