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.
easy-pipe is a helper wrapper for handling multiple spawn processes.
Easy-pipe is a module designed for easyly spawning child_processes and creating pipelines by piping form one to the other. It also supports streams, so they can be used intermittently.
easy-pipe module exports a function, which can be used to create a PipeStream object.
PipeStream object is the wrapper around Stream and Spawn objects to allow easy connection and handling.
PipeStream object can be created using the easy-pipe function.
The function supports the following input types:
var $p = require('easy-pipe');
// Using single string input
var pipe = $p('tail -f /var/log.txt');
// Using a Stream object
var pipe2 = $p(require('fs').createReadStream('/var/log.txt'));
// Using a Spawned object
var spawn = require('child_process').spawn;
var gzip = spawn('gzip', ['/var/log.txt']);
var pipe3 = $p(gzip);
// Using an array
var pipe4 = $p([['tail',['-f','/var/log.txt']],'gzip',require('fs').createWriteStream('/var/log.gz'));
The .pipe method allows to extend the pipeline by one more PipeStream object. A new PipeStream object will be created based on input (view Creating) and the output of current PipeStream object will be Piped to the new. The new PipeStream will be returned, making the process chainable.
var fs = require('fs');
var pipeLine = $p(fs.createReadStream('/var/log.txt'))
.pipe('gzip')
.pipe(fs.createWriteStream('/var/log.gz'));
All the PipeStream objects will be appended to the internal _pipeline array, and are accessible from all parts of the pipe using the following commands
.get command lets you get the n-th element in the pipeline. Will return PipeStream or false. .last is a convenience function returning the last element in _pipeline .first is a convenience function returning the first element in _pipeline
The .error method allows to append an error listener for the whole pipeline with one command. The function will be called no matter which element in the pipeline broke.
PipeStream object also merges some events under one name.
The stdout['data'] and 'data' data events are merged.
The 'error' and stderr['data'] events are merged
The event handler binding function .on() will return the object so it is chainable.
The MIT License (MIT) Copyright (c) 2012 Karl Düüna
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Helper module for managing spawned system processes
The npm package easy-pipe receives a total of 0 weekly downloads. As such, easy-pipe popularity was classified as not popular.
We found that easy-pipe 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.