Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Append the contents of one stream onto another.
var fs = require('fs');
var es = require('event-stream');
var addStream = require('add-stream');
// Append strings/buffers
fs.createReadStream('1.txt') // 1.txt contains: number1
.pipe(addStream(fs.createReadStream('2.txt'))) // 2.txt contains: number2
.pipe(fs.createWriteStream('appended.txt')); // appended.txt contains: number1number2
// Append object streams
es.readArray([1, 2, 3])
.pipe(addStream.obj(es.readArray([4, 5, 6])))
.pipe(es.writeArray(function (err, array) {
console.log(array); // [ 1, 2, 3, 4, 5, 6 ]
}));
Create a transform stream that appends the contents of stream
onto whatever
is piped into it. Options are passed to the transform stream's constructor.
A convenient shortcut for addStream(stream, {objectMode: true})
.
MIT
FAQs
Append the contents of one stream onto another.
The npm package add-stream receives a total of 1,810,043 weekly downloads. As such, add-stream popularity was classified as popular.
We found that add-stream 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
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.