
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).
Generate fake data based on a JSON schema.
$ npm install --save fake-json
If you are going to generate data from the same schema multiple times, do something like this:
var FakeJson = require('fake-json');
var schema = {
"type": "array",
"items": {
"type": "number",
"minimum": 1,
"maximum": 10
},
"minItems": 2,
"maxItems": 5
};
var generator = new FakeJson(schema);
generator.generate(); // => [ 6, 10, 7 ]
If you are going to generate data from different schemas each time, you can do this instead:
var FakeJson = require('fake-json');
var generator = new FakeJson();
var schema = {
"type": "array",
"items": {
"type": "number",
"minimum": 1,
"maximum": 10
},
"minItems": 2,
"maxItems": 5
};
generator.generate(schema); // => [ 8, 1, 7, 5, 7 ]
git clone git://github.com/unindented/fake-json.git
Copyright (c) 2014 Daniel Perez Alvarez (unindented.org). This is free software, and may be redistributed under the terms specified in the LICENSE file.
FAQs
Generate fake data based on a JSON schema.
The npm package fake-json receives a total of 0 weekly downloads. As such, fake-json popularity was classified as not popular.
We found that fake-json 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.