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.
Minimal native bindings to the rrdtool libraries. The rrdtool source is embedded to minimize external dependencies.
var rrdjs = require('rrdjs');
var sources = [ "DS:test:GAUGE:120:U:U", "RRA:AVERAGE:0.5:1:129600" ];
rrdjs.create('test.rrd', 60, Date.now() / 1000, sources, created);
function created(err) {
if (err) throw err;
var time = Date.now() / 1000, sample = 100;
rrdjs.update('test.rrd', 'test', [ time + ':' + sample ], updated);
}
function updated(err) {
if (err) throw err;
var time = Date.now() / 1000;
rrdjs.fetch('test.rrd', 'AVERAGE', time - 300, time, 60, fetched)
}
function fetched(err, data) {
if (err) throw err;
console.log("Got some data", data);
}
rrdjs.create(file, step, start, args, callback)
Create an rrd file with the given step and start. The args array specifies the data sources and averages.
rrdjs.info(file, callback)
Retreive information about the given rrd file.
rrdjs.update(file, ds, args, callback)
Insert data into the rrd file.
rrdjs.fetch(file, start, end, step, callback)
Retreive data from the rrd file.
ISC
FAQs
minimal node native bindings to the rrdtool libraries
The npm package rrdjs receives a total of 1 weekly downloads. As such, rrdjs popularity was classified as not popular.
We found that rrdjs 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.