Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
___________ _________ .___ \_ _____/____ _________.__./ _____/ ____ ____ __| _/ | __)_\__ \ / ___| | |\_____ \_/ __ \_/ __ \ / __ | | \/ __ \_\___ \ \___ |/ \ ___/\ ___// /_/ | /_______ (____ /____ >/ ____/_______ /\___ >\___ >____ | EasySeed\/ \/ \/ \/ \/ \/ \/ \/
EasySeed is seedable random number generator that utilizes David Bau's seedable random number generator internally(with a few minor changes for Node.js support), and provides an easy interface for seeding and using the generator.
Note: A generator of this nature is only as random as the seed provided.
Simply require, seed, and use.
var easyseed = require('easyseed');
easyseed.seed.auto();
easyseed.float(function(n) {
console.log(n); //0.3234234223442
});
Before any values can be generated, the generator must be seeded. All seed types are part of the easyseed.seed
namespace.
Seeds the generator with the current data/time. Useful for general purpose pseudo-random numbers.
Seeds the generator with the specified string.
Seeds the generator is the data within the provided buffer.
Makes a request for the specificed web resource and uses the response body as the seed for the generator.
Loads a file, then uses the contents as the seed for the generator.
EasySeed gives you the option to get random integers or floats.
Note: Internally a queue is used to hold generation while seeding is done. This is required since some seeding options require asynchronous operations, such as making HTTP requests or reading files. This means callbacks are required for all generators.
Generates an integer between min and max, 0 and max, or 0-1. The callback is called with the number generated.
//require and seed it...
var print = function(n) {
console.log(n);
};
easyseed.int(print); //0 or 1
easyseed.int(10, print); //between 0 and 10
easyseed.int(50, 100, print); //between 50 and 100
Same as easyseed.int
, expect a floating point number is returned. easyseed.float(callback)
(no min/max) generates exactly what Math.random
does.
There are a couple events you can subscribe to if needed.
Fires when a request of filesystem error occurs for the corresponding seed functions.
Fires when seeding is complete, and provides the seed string used.
The tests provided simply seed using all the seed functions, then generate 2000 0-1 floats (Math.random
), 2000 floats between 10 and 100, and 2000 integers between 10 and 100. Node.js' Assert is used for validation. Errors are thrown if a request or filesystem error occurs.
node test.js
FAQs
A seedable random number generator.
We found that easyseed 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.