Grammatical Passphrase Generator

This password would take to crack, according to zxcvbn by Dropbox. (But over a throttled internet connection it would take .)

FAQ

This is a web app for generating passphrases that form grammatically correct sentences.

What's a passphrase?

Passphrases are short sequences of common words that can be used as passwords. Because they are longer and more memorable than the sorts of passwords most people choose, they are generally considered to be more secure.

Why grammatically correct?

Sequences of words are easier to remember when they form sentences, even if those sentences are nonsensical.

But doesn't that make them less secure?

Well, yes... but it turns out not by much. In this case, knowing that an adjective is likely to be followed by a noun only reduces the possible number of words by half, or by one bit of entropy. This is offset by having grammatical variation, such as singulars and plurals, or past or present tenses.

Wait, what's entropy?

Entropy is a measure of the amount of information contained in a password. Each additional bit of entropy means it would take an attacker twice as long to crack your password. Based on the number of words used by this generator, passphrases with 4 or 5 words have an entropy of around 40-50 bits.

How can it "take centuries to crack" if it's only 40-50 bits of entropy?

The calculations provided by zxcvbn are based on blind entropy; in other words, they're not assuming any knowledge of the type of password that is being used. The 40-50 bits of entropy, on the other hand, are calculated based on the number of possible phrases generated by this site - this is a measure of how secure the passwords are if you're being targeted by an attacker who knows that you get your passwords from this site. In most cases, this is an extremely conservative estimate, and the longer estimate provided by zxcvbn is more reasonable.

So, how does it work?

For simplicity, the passphrases all follow the same grammatical construction: noun phrase, verb, noun phrase. The noun phrases may contain adjectives and may have definite or indefinite articles, and the verb can be in either present or past tense. The words are selected at random from a list of over 2000 common nouns, adjectives, and verbs.

I still can't remember a million different passwords, even if they're sentences...

The best solution to this problem is to use a password manager, such as Bitwarden or 1Password. These are apps that will remember most of your passwords for you, and automatically fill them in on websites. This page is meant for the few occasions that you can't use a password generator and actually have to remember your passwords, such as for computer logins.

The worst solution is to reuse the same password over and over again for different services. If you do this, the moment one website you use gets hacked because it has poor security, all of your accounts are vulnerable. Never reuse passwords.

Hang on, should I really be getting my passwords from a website?

Well, ideally not. But the phrases from this site are generated locally on your computer, and are never sent to a server, so it should be safe enough. This project is open-source and published on GitHub, so you can review it to make sure it does what I claim.

I've found a bug!

Great! Let me know by opening an issue here and I'll fix it.