DEV Community

dean
dean

Posted on • Originally published at blog.deanveloper.com

Why Password Length is so Important

What if I told you how to make a password that is 400,000 times more secure, and easier to remember? Let me introduce you to passphrases. You have probably heard this before from countless people. XKCD talks about passphrases and how they are much better than passwords. It explains why passphrases are better, but doesn't really get into how simple the math really is. We won't talk anything about entropy here, since that's useless anyway if you know the math. We will be discussing brute-forcing passwords and dictionary attacks, and making some quick scripts to figure out just how secure passwords vs passphrases are.

Short, Complex Passwords

So, let's say you have a password, around 12 characters. It has numbers and symbols. This means, assuming you're limited to the characters on a keyboard, 26 (lowercase) + 26 (uppercase) + 10 (numbers) + 10 (numbers + shift) + 10 (extra symbols) + 10 (extra symbols + shift). This brings us to 92 possible characters, and let's round up to 100 to be generous, and to make the math easy.

For a single character password, there are 100 possibilities. Two characters makes it 10000 + 100 = 10100. Many of us are programmers here, so let's write a quick python program to describe the number of possibilities that a password of length length or less can have.

>>> def password(length):
...   if length < 0:
...     return 0
...   return 100**length + password(length-1)
Enter fullscreen mode Exit fullscreen mode

And just to test it out (note, the program also allows for an empty password, so it is 1 larger)

>>> password(1)
101
>>> password(2)
10101
Enter fullscreen mode Exit fullscreen mode

So how about a 12 character password? Let's try putting that into our function.

>>> password(12)
1010101010101010101010101
Enter fullscreen mode Exit fullscreen mode

That's a huge number! That's a bit over a billion-billion-millions. But let's try taking a bit of a different approach to this...

Long, Simple Passphrases

Now instead of a password, let's talk about a passphrase. Passphrases are much longer and simpler, and harder to guess than passwords are. Each passphrase is made up of words, of course. In order to keep it easy to remember, we won't even include any numbers or symbols in it. Just the 26 letters, the spacebar, hyphen, and underscore. That brings us to a total of 29 characters.

Let's make a new python function to describe the same pattern, but for passphrases.

>>> def passphrase(length):
...   if length < 0:
...     return 0
...   return 29**length + passphrase(length-1)
Enter fullscreen mode Exit fullscreen mode

And give it a couple test values.

>>> passphrase(1)
30
>>> passphrase(2)
942
Enter fullscreen mode Exit fullscreen mode

So just how hard are passphrases to brute-force? Well, let's say our passphrase is "what is the length of the average sentence", which is 42 characters. Let's put that into our function.

>>> passphrase(42)
27287005492884718602602534825004439917772077566939113764846271
Enter fullscreen mode Exit fullscreen mode

That number is very, very large. According to python, around 2.7e+37 times larger than the number of possible 12-character passwords! On the other hand, this does assume that they are cracking the password via brute-force, trying random letters out until a correct sequence comes up. Instead of a brute force, let's try looking at a dictionary attack.

Dictionary attack try words at a time instead of letters. This means that they are much better at cracking a passphrase. The rarest words in that passphrase are "length" (ranked 1151), and "sentence" (ranked 4675) (source). So, let's say our attacker is looking for the 5000 most common English words.

So, of course, let's make a function to describe this!

>>> def passphrase_dictionary(words):
...   if words < 0:
...     return 0
...   return 5000**words + passphrase_dictionary(words-1)
Enter fullscreen mode Exit fullscreen mode

And test it

>>> passphrase_dictionary(1)
5001
>>> passphrase_dictionary(2)
25005001
Enter fullscreen mode Exit fullscreen mode

And finally, let's take a look at how many possibilities an 8-or-less word passphrase would have.

>>> passphrase_dictionary(8)
390703140628125625125025005001
Enter fullscreen mode Exit fullscreen mode

As you can tell, it's quite a bit less than brute-forcing, as expected. But comparing it to the original value...

>>> passphrase_dictionary(8) / password(12)
386796.10922184435
Enter fullscreen mode Exit fullscreen mode

Our passphrase is much easier to remember, and nearly 400,000 times more secure than our 12-character password. Also, choosing less common words in your passphrase drastically increases the security of the password! The words in the passphrase that I used were all fairly common, although it is still more secure than a randomly-generated 12 character password.

Conclusion

Passphrases are easier to remember than passwords, while also being a lot more secure. They take a bit longer to type, sure, but you are also typing in actual words and not needing to constantly reach for that shift key. The (very) simple, easy to remember passphrase used in this example was 400,000 times more secure than a randomly-generated 12 character password. The only thing that keeps us from using passphrases everywhere are character limits, which are sometimes imposed on websites, in which case you may need to use a plain-old password. But if there's no limit, go for a nice, long passphrase.

Top comments (10)

Collapse
 
sake_92 profile image
Sakib Hadžiavdić

LOL

Collapse
 
dean profile image
dean

I think that this comic is absolutely great! I linked it at the beginning of the article. My only problem with it is that people may not understand where bits of entropy come from, or what they even are, which is why when I made this post, I didn't want to discuss things like password entropy :)

Collapse
 
sake_92 profile image
Sakib Hadžiavdić

Didn't see it, I skipped right to numbers.. :D Nice post btw!

Thread Thread
 
dean profile image
dean

Thank you!

Collapse
 
benaryorg profile image
#benaryorg • Edited

For a single character password, there are 100 possibilities. Two characters makes it 10000 + 100 = 10100.

Isn't it usually number of possibilities for one character to the power of number of characters? So simply 100 * 100 for two characters or more generic 100 ** length?

Edit: did think it through again with an only numbers password.
There you have 10 possibilities per character each, and with two characters you have 100 (00-99,10×10 possibilities) instead of 110 (10×10+10), as you suggest.

Collapse
 
dean profile image
dean

Yup! But you also add all the previous password lengths as well, as an attacker will most likely not know the length of your password. To make it more accurate, I could've put in an 8-character minimum or something like that, but it wouldn't be too significant anyway given exponential growth with password length.

Collapse
 
benaryorg profile image
#benaryorg

Ah, right, totally forgot that an attacker needs to go through all lengths too, my mistake.

Collapse
 
610yesnolovely profile image
Harvey Thompson

I recommend reading the famous Diceware Passphrase Home - an offline method of generating a memorable password using dice with more entropy than you can shake a stick at (that's a mathematical term for very very big numbers indeed).

Collapse
 
5n4p_ profile image
Andreas Schnapp • Edited

Hmmm, in my opinion your comparsion of the security level against a random password is not correct.

You suggest that a dictionary attack must combine all combinations of the most famous words to find your sentence. So it's a kind of brute force where you not using characters as the set of symbols but instead the most popular words.

But i'm pretty sure there are more efficient ways to guess your sentence. A sentence is not a random combination of words (pretty in the same way as a word is not a random combination of characters). So, if you also consider the grammar and the way how humans use the same words sequence in a similar way you will get a far far better performance for breaking the password.

Maybe such an approach is not state of the art yet (i don't know). But IMO we have the right technologie (deep learning) today to break such passphrases in an efficient way.

Edit: Now I have read the xkcd comic again and see that it's all about using random words together in a password. So, this should be safe. It may be a good idea to use a different example password and describe the requirement of randomness for choosing the right words. I guess it's a not trivial task to use random words you are able to remember. But the xkcd gives a really nice example. So, its a nice alternative to the "normal" password choosing approach.
Thank you for the nice article!

Collapse
 
dean profile image
dean

This is a good point. I probably should use random words instead of a simple sentence. I couldn't think of something (as you could probably tell by the sentence I used...). A better idea would've probably been to either take the time to think of one, or to use a generator.

Some generators out there actually make up words that are pronounceable, so you can easily memorize the password while it's not prone to a dictionary attack! It's neat stuff for sure :)