Implement password recovery best practice
Posted
by Enrique
on Stack Overflow
See other posts from Stack Overflow
or by Enrique
Published on 2010-04-29T02:10:27Z
Indexed on
2010/04/29
2:17 UTC
Read the original article
Hit count: 680
Hello I want to to implement password recovery in my web application.
I'd like to avoid using secret questions.
I could just send the password by e-mail but I think it would be risky.
Maybe I could generate a new temporary random password and send it by e-mail but I think it is as risky as the above point.
Can I send a url by e-mail for example http://mysite.com/token=xxxx where xxxx is a random token associated with the user. So when the user navigates to that url he/she can reset the password.
Any ideas?
© Stack Overflow or respective owner