Password Strength Meter Edit

Problem summary

You want to make sure your users' passwords are sufficiently strong in order to prevent malicious attacks.

Example

PasswordStrengthMeter

Usage

  • Use when you want your users to choose passwords for their user accounts that are hard to break or guess by either human or computerized help.
  • Use when you want to higher the entry barriers for attackers to get started tampering with your system.
  • Use when you want to be sure that your users know what a good password is and that their chosen password follows such guidelines.

Solution

The currently entered password in the password field is measured on an often horizontal scale from none to max security. If the password is weak then only a small portion of the horizontal bar is highlighted, and oppositely if the password is strong then a larger portion of the horizontal bar is highlighted.

The password strength is also appropriately indicated by coloring the bar in a color associative with good or bad: Green indicating a strong password and red indicating a weak password.

How strong a password?

The definition of a strong password can be intensely argued. A forced complex password at first glance only spells increased security, but forcing too complex and rigid rules on the complexity of a chosen password can have the opposite effect. As passwords are forced to be complex, they also become increasingly harder to remember by the user. This occasionally leads to a self-destruction of the increased security, as some users in order to remember their new complex password simply write it down on a small sticky note and paste it up on their screen. This is especially a problem in places with the policy of forced password renewal every 3 months.

What is a strong password?

With the above mentioned in mind, I should stress that a sufficiently strong password does not necessarily need to fulfill all of the rules below, but merely a few will do. Consider the following rules to each add an extra point in how strong the password is (so that 0 point is the weakest, and 5 is the strongest). UI-patterns.com defines a strong password when it…:

  • Has more than 8 characters
  • Contains both small and uppercase letters
  • Contains at least one numerical character
  • Contains special characters
  • Has more than 12 characters

This would result in 6 levels of password strength depending on how many of the above mentioned criteria are being met.

Dictionary attacks

While the above mentioned password check can easily be done using only client-side javascript, it does not prevent against dictionary attacks. To ease the memorization of passwords, people tend to use real words as passwords and merely substitute characters with numbers or special characters. An example of such a password could be “P@ssw0rd”, which really isn’t a strong password. Modern password breaking software is fairly good at guessing such number/letter substitutions. To check against such strength, you would need to do ajax calls that would check with your own dictionary if the password was strong or not.

Choosing an appropriate level of password strength

You need to choose how strong a password is needed for what you want to protect. You need to draw the line somewhere. For 99% of the content out there it can easily be argued that merely the first 2 or 3 of the first mentioned rules will be sufficient.

General guidelines on choosing a password

  • Use a password of a seemingly random selection of letters and numbers
  • Use a password that you can type without you having to look at the keyboard (decreases possibility of people stealing your password)
  • Change your password regularly
  • Do not use your network ID in any form (capitalized, reversed, doubled, etc.)
  • Do not use your first, middle or last name or anyone else’s in any form.
  • Do not use your initials or any nicknames you or somebody else might have.
  • Do not use a word contained in any dictionary (English or foreign), spelling list, abbreviation list, etc.
  • Do not use information that people can easily obtain about you (license plate, pet name, date of birth, telephone numbers)
  • Do not use password of all alphabetical characters or only numeric characters – mix them up.
  • Do not use keyboard sequences (for instance qwerty or asdf)

Rationale

By showing a password strength meter beside the password field, the user is forced to consider using a password with an appropriate strength. By putting a minimum level of password strength you can even use the password strength meter to force a heightened security to your website.

Using a password strength indicator on the website, another level of security is added to the site. This not only makes the current users of the site feel more secure, but potential clients might use this as a requisite when deciding to conduct business with a company.

More example images of the 'Password Strength Meter' pattern

  • PasswordStrengthMeter
  • A password strength meter helps the user choosing a secure password when signing up for a Microsoft live ID.

    A password strength meter helps the user choosing a secure password when signing up for a Microsoft live ID.

  • A password strength meter is used for ensuring the users' security at youtube.com

    A password strength meter is used for ensuring the users’ security at youtube.com

  • Password strength meter when signing up to twitter

    Password strength meter when signing up to twitter


This document is in version 8 and was last updated on Dec 15, 2009 by Rheo. The original author of the design pattern was Anders. Edit this pattern.

You are reading the "Password Strength Meter" pattern.
Rated 30% positive
30.0
20 votes
This pattern was helpful This pattern is useless

Related information

Collection

Related patterns

Related links

See it in action

Password Strength Meter has 2 comments

  • There is an alternate solution : compute the number of possible combinations given the character set implied by the password and its size.

    “bob” -> lower case letters “23tinejiu” -> lower case letters, numbers

    Strength is size of the character set to the power of the size of the password. It makes it easy to define a minimum strength.

    You can then check the password against a banlist (previous passwords, dictionary words – although it won’t be necessary if the minimum strength is high enough since it will de facto rule out every dictionary word).

    Microsoft’s online password checker [1] works that way.

    [1] http://www.microsoft.com/protect/yourself/password/checker.mspx

  • There is a downside to this method: some of them make make me use rediculously long passwords, for they do indeed check the number of different characters used. Even though it deserves a positive vote: it’s extra feedback, always a good thing, and it might prevent the use of bob as a passy too.

Post a comment

Required
Required
Will not be published
simple_captcha.jpg
Required
Type the code from the image