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.
generate-password-browser
Advanced tools
Easy library for generating unique passwords in browsers.
Generate Password is a (relatively) extensive library for generating random and unique passwords in browsers. This is a fork of the original generate-password package https://github.com/brendanashworth/generate-password, but unfortunately it doesn't and won't support browsers. Confirmed to be working with Angular 4, 5 and 6 in these browsers:
$ npm install generate-password-browser --save
generate([options])
Generate one password with the given options. Returns a string.
var generator = require('generate-password-browser');
var password = generator.generate({
length: 10,
numbers: true
});
// 'uEyMTw32v9'
console.log(password);
generateMultiple(amount[, options])
Bulk generate multiple passwords at once, with the same options for all. Returns an array.
var generator = require('generate-password-browser');
var passwords = generator.generateMultiple(3, {
length: 10,
uppercase: false
});
// [ 'hnwulsekqn', 'qlioullgew', 'kosxwabgjv' ]
console.log(passwords);
Any of these can be passed into the options object for each function.
Name | Description | Default Value |
---|---|---|
length | Integer, length of password. | 10 |
numbers* | Boolean, put numbers in password. | false |
symbols* | Boolean or String, put symbols in password. | false |
lowercase* | Boolean, put lowercase in password | true |
uppercase* | Boolean, use uppercase letters in password. | true |
excludeSimilarCharacters | Boolean, exclude similar chars, like 'i' and 'l'. | false |
exclude | String, characters to be excluded from password. | '' |
strict | Boolean, password must include at least one character from each pool. | false |
*At least one should be true.
FAQs
Easy library for generating unique passwords in browsers.
The npm package generate-password-browser receives a total of 15,611 weekly downloads. As such, generate-password-browser popularity was classified as popular.
We found that generate-password-browser 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.