
Research
Malicious fezbox npm Package Steals Browser Passwords from Cookies via Innovative QR Code Steganographic Technique
A malicious package uses a QR code as steganography in an innovative technique.
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.
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
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.
Application Security
/Research
/Security News
Socket detected multiple compromised CrowdStrike npm packages, continuing the "Shai-Hulud" supply chain attack that has now impacted nearly 500 packages.