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.
npm install buffeream
var buffeream = require('buffeream')
buffeream(readableStream[, callback])
Returns buffer.
readableStream
- stream
callback
- callback when there is a callback
##Examples
var buffeream = require('buffeream');
var fs = require('fs');
var readableStream = fs.createReadStream('example.js');
buffeream(readableStream, function(err, buffer) {
if (err) {
console.log(err);
return;
}
var data = buffer.toString();
console.log(data);
});
Using Promise:
buffeream(readableStream).then(function(buffer) {
var data = buffer.toString();
console.log(data);
}).catch(function(err) {
console.log(err);
});
Using Async/Await:
convertStreamToBuffer();
async function convertStreamToBuffer() {
try {
var buffer = await buffeream(readableStream);
var data = buffer.toString();
console.log(data);
} catch (err) {
console.log(err);
}
}
FAQs
Convert readable stream into buffer.
The npm package buffeream receives a total of 0 weekly downloads. As such, buffeream popularity was classified as not popular.
We found that buffeream 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.