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.
Concatenate pull-streams
npm install --save pull-cat
Construct a new source stream from a sequential list of source streams, reading from each one in turn until it ends, then the next, etc. If one stream errors, then the rest of the streams are aborted immediately. If the cat stream is aborted (i.e. if it's sink errors) then all the streams are aborted.
A cat stream is a moderately challenging stream to implement, especially in the context of error states.
var cat = require('pull-cat')
var pull = require('pull-stream')
pull(
cat([
pull.values([1,2,3]),
pull.values([4,5,6])
]),
pull.log()
)
// 1
// 2
// 3
// 4
// 5
// 6
cat = require('pull-cat')
stream = cat(streams)
Reads from each stream in streams
until finished.
If a stream errors, stop all the streams. if the concatenated stream is aborted, abort all the streams, then callback to the aborter.
MIT
FAQs
concatenate pull-streams
The npm package pull-cat receives a total of 33,486 weekly downloads. As such, pull-cat popularity was classified as popular.
We found that pull-cat 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.