
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
passworizer
Advanced tools

Passworizer is simple but robust random password generator, it can generate different levels of passwords with millons combinations.
Randomizes each character individually and then scrambles all to generate even a more random combination for you to use. It uses upper case letters, lower case letters, numbers and special characters.
$ npm install passworizer
Passwords will always start with aa Upper Case Letter for convenience.
If no parameters are passed, it will return a Level 1 Passoword (see below).
Passworizer()
PassworizerAsync()
const {Passworizer, PassworizerAsync} = require('passworizer');
let password = Passworizer();
// result: Y+81zrvh
// Default password: 8 Characters (4 Lowercase, 1 Uppercase, 2 Numbers, 1 Symbol)
let password = Passworizer(0);
// result: X0cuvk8L
// Difficulty 0: 8 Characters (4 Lowercase, 2 Uppercase, 2 Numbers, 0 Symbol) // No symbols
let password = Passworizer(1);
// result: Vm1da<n8
// Difficulty 1: 8 Characters (4 Lowercase, 1 Uppercase, 2 Numbers, 1 Symbol)
let password = Passworizer(2);
// result: H3&PH6ontF?z
// Difficulty 2: 12 Characters (4 Lowercase, 4 Uppercase, 2 Numbers, 2 Symbol)
let password = Passworizer(3);
// result: Wmc2(11YdO?F6u$-jT
// Difficulty 3: 18 Characters (5 Lowercase, 5 Uppercase, 4 Numbers, 4 Symbol)
let password = PassworizerAsync()
// Takes the same parameters (0, 1, 2, 3)
// Returns a promise
Feel free to contribute to the proyect. Let me know if you have any ideas about new features.
FAQs
A random password generator
The npm package passworizer receives a total of 0 weekly downloads. As such, passworizer popularity was classified as not popular.
We found that passworizer 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.