vote up 0 vote down star

So, I've been playing with asp:PasswordRecovery and discovered I really don't like it, for several reasons:

1) Alice's password can be reset even without having access to Alice's email. A security question for password resets mitigates this, but does not really satisfy me.

2) Alice's new password is sent back to her in cleartext. I would rather send her a special link to my page (e.g. a page like example.com/recovery.aspx?P=lfaj0831uefjc), which would let her change her password.

I imagine I could do this myself by creating some sort of table of expiring password recovery pages and sending those pages to users who asked for a reset. Somehow those pages could also change user passwords behind the scenes (e.g. by resetting them manually and then using the text of the new password to change the password, since a password cannot be changed without knowing the old one). I'm sure others have had this problem before and that kind of solution strikes me as a little hacky. Is there a better way to do this?

An ideal solution does not violate encapsulation by accessing the database directly but instead uses the existing stored procedures within the database...though that may not be possible.

flag

62% accept rate

2 Answers

vote up 0 vote down

I recommend adding an additional level of checking, here are some options to choose from.

  1. First you can save the requester's IP address in a database, then when they click the reset link compare that with the IP address of their current machine, if they match then reset the password. If the email is intercepted then the person attempting to reset the password must have a matching IP address.
  2. Use a cookie and store a unique value, maybe a GUID, MD5 hash or something. So when the user makes a password reset request a cookie is stored on their machine and in the database, when the user clicks the link the local cookie must match the database value or they will not be able to reset their password.

In general I am totally against ever sending a password in Email, so I like the password reset link option more than a new plain-text password.

link|flag
vote up 1 vote down

Why would sending a plain-text link to a recovery page through email be any better than sending a plain-text password through email? Either way, somebody with access to the email address can gain access to the account, whether it's through knowing the new password or through following the link.

I think that if you force the user to change their password immediately after logging in after a password reset, that would reduce the amount of time that the temporary password is valid.

link|flag
Sending a link to a recovery page is better than sending a password because if the user remembers their password after the reset request, they can ignore the reset email. – Brian Jun 25 at 13:09
In other words, when the user successfully logs in, any pending password resets are cancelled? I guess that is slightly more secure for that edge case. – Jacob Jun 25 at 16:22
@Jacob: Regardless of whether what I am asking is actually really necessary or worthwhile, it is something I am curious about how to do, and something I have seen many other sites do. – Brian Jun 25 at 20:25
I think your approach of the expiring one-time-use URLs as you laid out in the question looks like the right way of doing it. I don't know of any way to reset the unknown password that is better than the "hacky" way that the Membership API encourages. – Jacob Jun 26 at 17:53

Your Answer

Get an OpenID
or

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