Simple, non-offensive password generator.
Simple, non-offensive password generator. Generates passwords in the following format:
{word-a}{word-b}{number}{number}
This module aims to generate passwords which do not contain “offensive” words. In order to do this, it generates a password by combining two random words from the good.json
list, appends two numbers, and then checks the final password against the list of words in bad.json
. If there is a match, the password is recursively regenerated until a non-offensive password is (hopefully) generated.
npm install fresh-password
const fp = require('fresh-password');
let password = fp.generate();
fresh-password was inspired by http://www.dinopass.com
Please feel free to request changes, especially to the word lists.