Simple CLI to generate a 12-char password
- run the
passgencommand in your terminal - Password is copied to your clipboard ->
CTRL + Vwhen you're ready
Copy the repo to your machine
gh repo clone hendrickmanullang/passgen
Nagivate to directory
cd passgen
Install globally
npm install -g passgen
Run the command
passgen
A random 12 char alpha/numeric/symbol password will be copied to your clipboard.
ctrl + vto reveal the password/paste into your web form.- Run the
passgencommand again if you need to re-generate a password until it satisfies the site's requirement.
-lfor custom length password-cto exclude capital letters-loto exclude lowercase letters-sto exclude symbols-nto exclude numbers
e.g.
passgen -l 16 -c -n
Generates a 16 char pass with no capital letters or numbers