Password Recovery without sending password via email - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T11:12:08Zhttp://stackoverflow.com/feeds/question/1041181http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1041181/password-recovery-without-sending-password-via-email0Password Recovery without sending password via emailBrian2009-06-24T21:48:28Z2009-10-17T22:12:56Z
<p>So, I've been playing with <code>asp:PasswordRecovery</code> and discovered I really don't like it, for several reasons:</p>
<p>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.</p>
<p>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.</p>
<p>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?</p>
<p>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.</p>
http://stackoverflow.com/questions/1041181/password-recovery-without-sending-password-via-email/1042245#10422451Answer by Jacob for Password Recovery without sending password via emailJacob2009-06-25T04:54:25Z2009-06-25T04:54:25Z<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/1041181/password-recovery-without-sending-password-via-email/1583352#15833520Answer by meme for Password Recovery without sending password via emailmeme2009-10-17T22:12:56Z2009-10-17T22:12:56Z<p>I recommend adding an additional level of checking, here are some options to choose from.</p>
<ol>
<li>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.</li>
<li>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.</li>
</ol>
<p>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.</p>