
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
As of node 0.8.x, there is no way to unpipe streams. This module attemps to fill the gap by providing a pipe(source, destination[, options])
and unpipe(source, destination)
functions working in tandem, to do piping and unpiping of streams.
Install with
npm install pup
Two functions are provided:
pipe(source, destination[, options])
: to be used to setup a pipe from source to destination. Same signature as the Stream#pipe method.unpipe(source, destination)
: remove the pipe between source and destination. If there are many of those, only the first one is removed. Return true
on successful removal, false
otherwise.var fs = require('fs')
var pup = require('pup')
var source = fs.readFileStream('test')
var wrong_destination = fs.readWriteStream('test2')
var destination = fs.readWriteStream('test.bak')
// Pipe to one destination
source.pause()
pup.pipe(source, wrong_destination)
// Then remove it and pipe to another
pup.unpipe(source, wrong_destination)
pup.pipe(source, destination)
// Copy the file test.js, which should only end up in test.bak
source.resume()
This is a bit of a hack that relies on the assumption that there is the same cleanup()
listener setup by the Stream#pipe method for the end
event on the source and on the destination.
MIT
FAQs
Pipe and Unpipe Streams
The npm package pup receives a total of 31 weekly downloads. As such, pup popularity was classified as not popular.
We found that pup 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
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.