vote up 2 vote down star
1

I've got an old application that has user passwords stored in the database with an MD5 hash. I'd like to replace this with something in the SHA-2 family.

I've thought of two possible ways to accomplish this, but both seem rather clunky.

1) Add a boolean "flag" field. The first time the user authenticates after this, replace the MD5 password hash with the SHA password hash, and set the flag. I can then check the flag to see whether the password hash has been converted.

2) Add a second password field to store the SHA hash. The first time the user authenticates after this, hash the password with SHA and store it in the new field (probably delete their MD5 hash at the same time). Then I can check whether the SHA field has a value; this essentially becomes my flag.

In either case, the MD5 authentication would have to remain in place for some time for any users who log in infrequently. And any users who are no longer active will never be switched to SHA.

Is there a better way to do this?

flag

2  
Your two solutions look ok to me. – wtaniguchi Sep 4 at 20:47
And I'm upping Ned's answer, he has a good point there. – wtaniguchi Sep 4 at 20:49
3  
As for users who are never switched - I'd consider after a certain percentage of people are switched over and enough time has passed to just get rid of the MD5 hashes. People who haven't logged on during that period of time will have to have their passwords reset when and if they ever log in again. Whether or not (and when) that's acceptable is a business decision. – Michael Burr Sep 4 at 20:54
1  
I'm wondering if you really need an extra flag: the length of the old hashes is shorter anyway. – mfn Sep 4 at 20:54
1  
Stating the obvious: Don't forget to rehash the passwords AFTER validation :-) – Vinko Vrsalovic Sep 4 at 20:55

6 Answers

vote up 4 vote down check

Essentially the same, but maybe more elegant than adding extra fields: In the default authentication framwork in Django, the password hashes are stored as strings constructed like this:

hashtype$salt$hash

Hashtype is either sha1 or md5, salt is a random string used to salt the raw password and at last comes the hash itself. Example value:

sha1$a1976$a36cc8cbf81742a8fb52e221aaeab48ed7f58ab4
link|flag
This is the best answer. – Steven Sudit Sep 4 at 21:52
The only issue with this is that it stores the salt in such a way that makes it obviously the salt, rather than using another unique or derived value for the user (such as a mutated version of the timestamp of their account creation, or bit-flipping their username, etc). It's arguable whether this makes any currently feasible difference in how long it would take to crack, I'm just paranoid. – Dustin Fineout Oct 30 at 15:22
vote up 2 vote down

I think you've already got the best possibilities. I like #1 more than #2, since there's no use for the md5 once the sha is set.

There's no way to reverse the MD5, so you have to wait for the user to authenticate again to create a new hash.

link|flag
vote up 1 vote down

No - basically you'll have to keep the MD5 in place until all the users you care about have been converted. That's just the nature of hashing - you don't have enough information to perform the conversion again.

Another option in-keeping with the others would be to make the password field effectively self-describing, e.g.

MD5:(md5 hash)
SHA:(sha hash)

You could then easily detect which algorithm to use for comparison, and avoid having two fields. Again, you'd overwrite the MD5 with SHA as you went along.

You'd want to do an initial update to make all current passwords declare themselves as MD5.

link|flag
3  
The size of the hash makes it self-describing: MD5 is always smaller. – Steven Sudit Sep 4 at 20:48
2  
Length shouldn't be used as the sole indicator. You might want to change what goes in the hash (e.g. nonce calculations, other seed data) while using the same hash algorithm to chop it all up. Having a separate identifier indicates to you which of your password hashing schemes is in use. – Rob Sep 4 at 20:53
1  
If your only two methods differ in length then you certainly can use length as an indicator. – Vinko Vrsalovic Sep 4 at 20:54
1  
Rob, I agree that having an extra byte or so up front as an indicator is a good idea. Conveniently, the legacy MD5 values will be shorter than even an MD5 with that extra byte. – Steven Sudit Sep 4 at 20:58
vote up 1 vote down

You can convert all your MD5 Strings to SHA1 by rehashing them in your DB if you create your future passwords by first MD5ing them. Checking the passwords requires MD5ing them first also, but i dont think thats a big hit.

php-code (login):

prev: $login = (md5($password) == $storedMd5PasswordHash);

after: $login = (sha1(md5($password)) == $storedSha1PasswordHash);

Works also with salting, got the initial idea from here.

link|flag
vote up 0 vote down

Your second suggestion sounds the best to me. That way frequent users will have a more secure experience in the future.

The first effectively "quirks-mode"'s your codebase and only makes sure that new users have the better SHA experience.

link|flag
To me it seems the two solutions are the same, only implemented slightly differently. In either way, your password is rehashed on your next login. – Jørn Schou-Rode Sep 4 at 20:52
In either option, I would replace the passwords of existing users the next time they log in. It's just a question of how to let the app know which hash to use after that. – aardvark Sep 4 at 20:54
vote up -1 vote down

If the MD5's aren't salted you can always use a decryption site/rainbow tables such as: http://passcracking.com/index.php to get the passwords. Probably easier to just use the re-encode method though.

link|flag
4  
If feasible this is not very ethical, unless you take a lot of care not to store any password while you are cracking them. – Vinko Vrsalovic Sep 4 at 20:52
2  
@Vinko - for some reason it feels unethical even if you take care to prevent the password from being stored/leaked. – Michael Burr Sep 4 at 21:48

Your Answer

Get an OpenID
or

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