
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).
Generic, space efficient parser with sugar for digesting strings, ints, etc.
Generic, space efficient (uses Buffer#slice
as much as possilbe)
parser with sugar for digesting strings, ints, etc. Inherits from
stream, implements write
and end
, and emits data
events for easy
piping.
$ npm install bitreader
Adapted from streampng
function SuggestedPalette() { this.intialize.apply(this, arguments) }
SuggestedPalette.prototype.initialize = function initialize(data) {
var colourSize, chunkSize;
var parser = BitReader(data);
this.type = 'sPLT'
this.paletteName = parser.eatString();
this.sampleDepth = parser.eatUInt(1);
this.palette = [];
colourSize = (this.sampleDepth === 16) ? 2 : 1;
chunkSize = (colourSize === 2) ? 10 : 6
this.palette = parser.eatRest({ chunkSize: chunkSize }).map(function (entry) {
var p = BitReader(entry);
return {
red: p.eatUInt(colourSize),
green: p.eatUInt(colourSize),
blue: p.eatUInt(colourSize),
alpha: p.eatUInt(colourSize),
frequency: p.eatUInt(2)
}
}.bind(this));
};
Uses tap for testing. Tested against node 0.6.19 and node 0.8.2.
$ npm test
FAQs
Generic, space efficient parser with sugar for digesting strings, ints, etc.
We found that bitreader 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.