There are two general approaches to password management:
Password generators which use a hash function, like the SS64 password generator, are easy to use and will repeatedly regenerate the same password when given the same inputs but they do have limitations - the only way to change a password is to enter a different master password or a different salt value. All the generated passwords are the same length.
Password managers which store passwords have the flexibility to apply different complexity rules to each password or to store a pre-existing password - often required when a password needs to be shared between a team of people. The downside of the storage approach is that the password storage (file/database) needs to be managed carefully - secured, backed up and synchronised to all the devices where you will need to use the passwords. If the password store is lost or corrupted you will lose all the passwords! Destructive viruses such as CryptoLocker can also make a password store unreadable.
The capacity of a password can be calculated from length + complexity, to give a measure of password entropy. A password containing only upper and lower case characters has 52 possible characters in each digit, adding numerals and other characters will increase this further. Althought the calculation of entropy uses a log function, doubling the password length will (appoximately) double the entropy.
Entropy denotes the uncertainty in the value of a password and is conventionally expressed in bits. If a password of k bits is chosen at random there are 2k possible values
Complexity Password Length
Numbers
0-9a-z a-z, A-Z, 0-9 8 26 bits 37 bits 47 bits 10 33 bits 47 bits 59 bits 11 36 bits 51 bits 65 bits 12 39 bits 56 bits 71 bits 13 43 bits 61 bits 77 bits 14 46 bits 65 bits 80 bits 15 49 bits 70 bits 89 bits 20 66 bits 94 bits 119 bits 50 166 bits 235 bits 297.5 bits Adding keyboard symbols to the above ($£&^[];!@¢/\> etc ) can be used to further increase the complexity. Randomly including symbols will increase password entropy by around 10% and so is equivalent to making the password one character longer. Unfortunately keyboards vary in the symbols they support and not all websites accept all characters, some will even silently remove them. Common substitutions such as E => 3 or S => $ are so well known that in practice they do nothing to improve security.
Maximum Time to crack a password based on its entropy:
Entropy Maximum Time to crack
at 350 billion guesses/Sec47 bits 0.223 Hours 59 bits 457.50 Hours 65 bits 3.342 Years 71 bits 213.92 Years 77 bits 13,690 Years 80 bits 109,527.95 Years 89 bits 56078315.93 Years. 119 bits 6.0213633 e+16 Years High password entropy will help to protect against 'old school' brute force attacks, but passwords like qwertyuiop or schoolofhardknocks or any common phrase or saying will still be less secure than a random string of the same length. This is because a rainbow table can be used to lookup almost any known phrase or pattern very quickly.
For non-random passwords the calculation of entropy can be modified by applying a set of rules to account for typical language patterns (Shannon Entropy). A Non-Random password will make the Maximum Time to crack much much faster than any of the figures above.
NIST recommend 80 bits for the most secure passwords to resist a brute force attack. There is no definitive answer to the question of the minimum password strength required to avoid all types of attack; it is a moving target; over time we all need to use longer passwords.
Sensitive systems or situations will demand longer passwords, but high entropy long passwords containing random characters and numbers are more difficult for anyone to memorize. Truly secure passwords quickly become impractical unless you use software to automatically retrieve (or generate) the passwords.
Pass phrases (also known as Diceware) a long password consisting of several random words such as correct horse battery staple have been popularised by XKCD. Pass phrases don't offer any significant advantage or disadvantage compared to a traditional password of the same entropy: Research paper (PDF). Novice typists may find the longer length difficult to type and they can exceed the password length limitations of some websites.
Some badly coded websites only store the first 10 or 15 characters of a password, if a long password is silently truncated to correcthorse thats suddenly a lot less secure than you would expect. Up until 2012 Microsoft Hotmail did this.
Good password management solutions should be able to cope when a website changes it's url e.g. signup.example.com changes to login.example.com
It is possible that an intruder could attack a popular password generator by passing a rainbow table of common passwords through the same hash algorithm to generate potential passwords in bulk. To prevent this, it is still important when using any password manager to choose the master password carefully, a long, random, difficult-to-guess string.
Although rarely enforced for website logins, there are some advantages to changing passwords on a regular basis. If the length of your password means that it could be brute force cracked in 50 days, then changing the password every 49 days makes it impossible for such an attack to succeed.
Conversely if the password is truly strong, there is little to be gained in changing it. Mathematically, moving from never changing one’s password to changing it at every single login attempt (pass or fail) will on average only double the number of attempts it would take to brute force the password. In comparison, adding a single extra character to the password length will make it an order of magnitude more secure.
The one advantage of forcing password changes is that it makes it more difficult for people to reuse the same password on multiple sites.
If a sensitive password has been discovered by a third party, then changing it after 30 days will revoke that access, but in many cases this will be locking the stable door after the horse has bolted, most organised attacks use the stolen credentials within 2-3 days.
If you do need to change passwords regularly then a password manager with an encrypted database will allow individual passwords to be changed as required.
On-line services often provide a password restore function that can be used to reset the password. It is good practice to select complex answers to such security questions particularly if the 'true' answer would be very simple for an attacker to discover. Password reset answers should be managed just like actual passwords.
As shown by the 2014 celebrity photo leaks, even a strong password can be vulnerable to a targetted social engineering attack based on user name, security questions and reset/recovery options. One extra defence against this is to have a separate email address which is not tied to your identity in any obvious way and is used only for website logins. So for example you might have Joe.Bloggs@outlook.com as your real email address and Fred.Flintstone@gmail.com used only for logins.
Password Hash (Stateless) | Password Store (requires database sync & backup) |
---|---|
Nic Wolff’s password generator Creates 10 character passwords. (SHA-1 hash) |
PasswordSafe (free download) |
SS64 Extra Strong Password Generator - javascript password generator that creates passwords for several popular websites in one step + a custom option for others. SS64 15 digit Password Generator - As above but shorter and with a visual display on screen, for websites that ask for digit 4 + digit 7 etc SS64 10 digit Password Generator - As above but shorter and compatible with the Nic Wolff original. All the above are supported on: IE, Firefox, Chrome, Safari and any standard web browser. SS64 command-line password generator. 20 digits |
KeePass Password Safe KeePassX is a compatible port for Windows, Linux and MacOS. KeePassX does not rely on Mono, so matches the look of other native programs. For non- windows platforms this provides a better look and feel while still having compatibility with KeePass. |
Pwdhash (MD 5 hash) A javascript password generator from Stanford security lab. Creates domain-specific passwords with defense against password phishing scams. The default password length is proportional to the length of the master password. Supported on: IE, Firefox, Chrome, Safari and anything else that can run a web browser. |
RoboForm A commercial application that encrypts passwords in a storage database. Strong support for Enterprise features. It has a browser plug-in to automate website logins and a strong password generator. The passwords are encrypted and stored on individual clients or optionally on a USB Flash Drive. By default RoboForm creates 8 character passwords but this is fully customisable via policy. Supported on: Windows, Firefox, Internet Explorer, Chrome, Safari, iPhone, iPad, Android, Blackberry. |
Master Password App Master Password also implements a hybrid solution allowing you to save custom passwords in the app. These passwords are AES encrypted using a large key derived from your master password. Free software licensed under the GPLv3 |
Pass - A unix and Mac (homebrew) command line password manager. The very active community has produced many clients and GUIs for other platforms as well as extensions for pass itself. $ pass generate Email/ss64.com 15 Free software licensed under the GPLv2 |
SuperGenPass (SHA-1 hash) A javascript bookmarklet password generator originally created by Chris Zarate based on Nic Wolff’s original password generator. SuperGenPass will generate the same password for different subdomains of the same website. One downside is that the bookmarklet code contains a large number of hard-coded URL/domains, this can become difficult to keep up to date given the increasing expansion of top level domains. By default SuperGenPass creates 10 character passwords. Supported on: IE, Firefox, Chrome, Safari and anything else that can run a web browser. |
1Password A commercial application that encrypts passwords in a storage database. It has a browser plug-in to automate website logins, a strong password generator and an option to sync between devices. In 2017, 1Password repositioned itself as a web based subscription service. By default 1Password creates 20 character passwords but this is fully customisable. Supported on: MacOS, Windows, Linux, iOS, Andriod(read only) |
Hashapass - A free javascript password generator with plug-ins for Firefox, iPhone, android, unix, Mac & Windows Gadgets. Hashapass creates 8 character passwords (SHA-1 hash) |
Lastpass In 2015 LastPass were bought by LogMeIn |
Labnol/CtrlQ - A free javascript/jquery password generator. Passwords are variable length and include punctuation charaters (@#&>'*\[%]=;+^) which might not be accepted on all websites. github (bcrypt hash) | Dashlane A browser plug-in that encrypts passwords in a storage database and automates website logins. The basic plug-in is free but 'premium' features including promotional discount coupons require a yearly subscription. Dashlane includes a strong password generator and can sync between devices (encrypted passwords are stored online). Founded by Bernard Liautaud of Business Objects. By default Dashlane creates 10 character passwords. Supported on: Firefox, Internet Explorer, Safari, Chrome, iPhone, Android. |
By default LessPass creates 12 character passwords.
|
Padlock.io An open source password generator for Chrome, iOS and Android. By default Padlock creates 10 character passwords but this is fully customisable, so can be adjusted to the needs of individual websites. The passwords are stored on the device (encrypted) and can optionally be shared/synchronised between devices using Padlock Cloud. |
Easy Passwords (SHA-1 hash) By default Easy passwords creates 16 character passwords with symbols. |
Passbolt A password manager for teams. Free, open source, self-hosted, extensible, OpenPGP based. To use full features costs from €19 per month (2019). |
PasswordMaker (MD 5 Hash or a choice of 12 others) An open-source browser based javascript password generator. Desktop ,iPhone and Browser Add-In versions are also available. Has a huge level of control over password generation, but this does mean that you have to remember all the options you have chosen in order to regenerate the same password. By default PasswordMaker creates 8 character passwords. Supported on: Windows, IE, Firefox, Chrome, Opera. |
“I have 68 different passwords. If I am not allowed to write any of them down, guess what I am going to do? I am going to use the same password on every one of them” ~ Jesper Johansson (Microsoft)
Related:
A really strong password is one that nobody else has ever used - Joseph Bonneau (University of Cambridge)
NIST password recommendations (PDF)
Let them paste passwords - The UK National Cyber Security Centre.
zxcvbn - Realistic password strength estimation
Kerckhoffs's principle - A cryptosystem should be secure even if everything about the system, except the key, is public knowledge.
Password entropy does not improve security Florida State University (PDF)
Research paper on browser-integrated password managers
XSS risks around bookmarklets.
GPU computer clusters can cycle through as many as 350 billion guesses per second.