
The average password is easily hacked in minutes by an experienced software developer. This is because of a fundamental flaw in how we were taught to create our passwords. An example of a bad password is for instance; “qWxc4&Gh”. On the surface such passwords seems to be impossible to hack, but such a password can actually easily be hacked in 39 minutes. This process can be done by an experienced hacker simply “guessing”.
In addition, using a technique like brute force, where a computer tries all combinations one by one to find password. The reason is because of something we refer to as “entropy” in computer programming and cryptography. There are simply not enough possible combinations in short passwords such as the above to be “random enough”. However, cannot stop a computer from guessing it by trying all combinations one by one. Below is a list taken from Hive Systems illustrating the problem.
In addition to that such passwords are easily guessed, they’re also extremely difficult to remember. This may resulting in users having to write down their passwords somewhere to be able to remember them. The only real alternative to writing down your passwords, seems to be to use the same password on multiple sites. Since few websites and software systems (correctly) implement password hashing using BlowFish and per record based salts.
This results in that if a malicious hacker manages to hack one website you’ve registered with, he can typically reuse your password from that one website on all websites you’ve registered. This of course results in that if you choose to register with a password at “The Free Ponies and Barbies for your Daughter” website, a hacker capable of hacking this site might end up having your password for your online internet bank. If you’re a software developer reading this and you’re telling me “but I’m hashing my passwords” then I’ve got three words for you …
Rainbow Dictionary Attack …
… search for it and weep!
The solution
If you create a password consisting of 8 characters you end up with an entropy of 72 to the power of 8. This is because of that your base number is 72. This is a ridiculously high number for humans, but for a computer it is actually quite easily traversed using brute force. If you instead choose to create your passwords as sentences, you end up with a base number of 470,000 if you’re exclusively using English words. This is because of that the English language contains 470,000 different words. Hence a sentence with 8 words becomes 470,000 to the power of 8, which of course becomes such a ridiculously high number.
If you used every single computer on earth to try to guess such a password, you’d still need a trillion and trillion years (or something). Then add to the above entropy by realising there exists hundreds of actively used languages on the planet. In addition add thousands of dialects, further adding to the entropy of your passwords. Below is an example of a password that is literally 100% perfectly impossible to guess using brute force.
This is actually a very secure password dude!
The above password contains 8 words, implying 470,000 to the power of 8 different combinations required to guess it. While at the same time the password is also easily remembered. The only drawback with the above password is that it requires slightly more time to write. This can be a little bit inconvenient, especially if you’re logging in with your phone. However, once you’ve logged in the first time, typically your phone will offer to remember your password, implying you’ll only need to type it once. So even though the above password seems to be unsafe for a human being, it’s probably a trillion times more secure than the 8 character password.
Facts are that the way we were taught to construct our passwords is quite counter intuitively a very, very bad password strategy. It’s much smarter to use entire sentences, and add some dialect, and/or words from your native tongue. This makes your passwords easily remembered and very difficult to guess. For added benefit you can create passwords that are easily visualised, creating imagery in your head. As an example, the following which is easily remembered due to the image it creates, but still not an easily guessed sentence.
I like the smell of sunshine on a Sunday.
The poetic imagery of something such as the above makes the above password extremely easy to remember. Since it creates “images”, allowing you to more easily create associations, strengthening your ability to remember it. While at the same time rendering your passwords 100% impossible to guess using any known techniques as of today. This is why we don’t require any special characters, upper and lower case characters, or numbers as you setup Magic's root password. Simply because we want to encourage users to using sentences as passwords to increase entropy and strengthen security of their Magic servers. And yes, before you ask, we (obviously) use BlowFish and per record based salts as we store your passwords into Magic’s database …
For the record, I have never attempted to maliciously break into any computer systems on the planet, neither to steal your password, nor for any other (malicious) reasons. So even though I can hack your password, rest assured I personally never would … ;)