vote up 12 vote down star
2

See also How do you compute password complexity?

What is the best way of ensuring that a user supplied password is a strong password in a registration or change password form?

EDIT: one idea I had (in python)

def validate_password(passwd):
    conditions_met = 0
    conditions_total = 3
    if len(passwd) >= 6: 
        if passwd.lower() != passwd: conditions_met += 1
        if len([x for x in passwd if x.isdigit()]) > 0: conditions_met += 1
        if len([x for x in passwd if not x.isalnum()]) > 0: conditions_met += 1
    result = False
    print conditions_met
    if conditions_met >= 2: result = True
    return result
flag

15 Answers

vote up 6 vote down check

Depending on the language, I usually use regular expressions to check if it has:

  • At least one uppercase and one lowercase letter
  • At least one number
  • At least one special character
  • A length of at least six characters

You can require all of the above, or use a strength meter type of script. For my strength meter, if the password has the right length, it is evaluated as follows:

  • One condition met: weak password
  • Two conditions met: medium password
  • All conditions met: strong password

You can adjust the above to meet your needs.

link|flag
vote up -1 vote down

If they don't get it wrong at least once a week, while trying to log in then its too weak.

link|flag
vote up 0 vote down

Hi, I wrote a small Javascript application. Take a look: Yet Another Password Meter. You can download the source and use/modify it under GPL. Have fun!

link|flag
vote up 1 vote down

The object-oriented approach would be a set of rules. Assign a weight to each rule and iterate through them. In psuedo-code:

abstract class Rule {

    float weight;

    float calculateScore( string password );

}

Calculating the total score:

float getPasswordStrength( string password ) {     

    float totalWeight = 0.0f;
    float totalScore  = 0.0f;

    foreach ( rule in rules ) {

       totalWeight += weight;
       totalScore  += rule.calculateScore( password ) * rule.weight;

    }

    return (totalScore / totalWeight) / rules.count;

}

An example rule algorithm, based on number of character classes present:

float calculateScore( string password ) {

    float score = 0.0f;

    // NUMBER_CLASS is a constant char array { '0', '1', '2', ... }
    if ( password.contains( NUMBER_CLASS ) )
        score += 1.0f;

    if ( password.contains( UPPERCASE_CLASS ) )
        score += 1.0f;

    if ( password.contains( LOWERCASE_CLASS ) )
        score += 1.0f;

    // Sub rule as private method
    if ( containsPunctuation( password ) )
        score += 1.0f;

    return score / 4.0f;

}
link|flag
vote up 0 vote down

In addition to the standard approach of mixing alpha,numeric and symbols, I noticed when I registered with MyOpenId last week, the password checker tells you if your password is based on a dictionary word, even if you add numbers or replace alphas with similar numbers (using zero instead of 'o', '1' instead of 'i', etc.).

I was quite impressed.

link|flag
vote up 0 vote down

A general algorithm is outlined in the wikipedia page at http://en.wikipedia.org/wiki/Random_password_generator#Stronger_methods . I also found a couple of scripts here - http://webtecker.com/2008/03/26/collection-of-password-strength-scripts/. Some of those are under the MIT License, so you can look at the code and figure out how they calculate the strength. I found the wikipedia entry helpful too.

link|flag
vote up 1 vote down

The two simplest metrics to check for are:

  1. Length. I'd say 8 characters as a minimum.
  2. Number of different character classes the password contains. These are usually, lowercase letters, uppercase letters, numbers and punctuation and other symbols. A strong password will contain characters from at least three of these classes; if you force a number or other non-alphabetic character you significantly reduce the effectiveness of dictionary attacks.
link|flag
vote up 0 vote down

Alec Muffett's CrackLib is good for this.

link|flag
vote up 0 vote down

With a series of checks to ensure it meets minimum criteria:

  • at least 8 characters long
  • contains at least one non-alphanumeric symbol
  • does not match or contain username/email/etc.
  • etc

Here's a jQuery plugin that reports password strength (not tried it myself): http://phiras.wordpress.com/2007/04/08/password-strength-meter-a-jquery-plugin/

And the same thing ported to PHP: http://www.alixaxel.com/wordpress/2007/06/09/php-password-strength-algorithm/

link|flag
vote up 0 vote down

Password strength checkers, and if you have time+resources (its justified only if you are checking for more than a few passwords) use Rainbow Tables.

link|flag
vote up 0 vote down

There's the open and free John the Ripper password cracker which is a great way to check an existing password database.

link|flag
vote up 0 vote down

I've always like the Google password strength api.

you can find some information here

http://www.codeproject.com/KB/ajax/GooglePasswordStrength.aspx

link|flag
Summarised from that article, just do a HTTP request to: google.com/accounts/…; And it returns a score from 1..4 for how secure the password is. – Peter Boughton Sep 16 '08 at 18:00
That's good and all, but I don't think I want to be sending passwords around like that, even if it is a secure connection. – dawnerd Sep 16 '08 at 18:42
vote up 0 vote down

If you have the time, run a password cracker against it.

link|flag
vote up 0 vote down

I like using Microsoft's password checker

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.