I am developing an app which I should design a page for users who forget passwords and send email to them the new passwords. I am using ASP.NET Membership and password format should be hashed.

My problem is when sending mail has been failed, password has been changed and wow! no work can be done.

what is your solution?

link|improve this question
feedback

6 Answers

up vote 1 down vote accepted

You should send users an email with a link, where they can confirm password reset (otherwise you could reset passwords to other users by guessing their emails). On the linked page users would then confirm password reset (or even change it themselves).

But it's a better practice not to send passwords in any way shape or form. It's the most secure.

The process

  1. Users request password reset by their email.
  2. They receive an email with a link
  3. Theyclick the link and provide a new password that gets hashed right away and stored in the system.
link|improve this answer
great! but can I hashed the password the way ASP.NET does, I mean can I store it directly to the Users table. – Hossein Margani Jul 21 '09 at 17:08
You could call Membership.UpdateUser and set new password. – Robert Koritnik Jul 21 '09 at 17:35
feedback

You could temporarily set the passwordFormat value for affected users to "Clear" in the aspnet_Membership table, assign them a password, and then work on getting the e-mail working.

Setting the aspnet_Membership.passwordFormat value to 0 changes the format to Clear text, which means it's not encrypted. It's not secure, but will allow login. After that, you can reset the password and it'll be changed back to 2 (Encrypted).

alt text

link|improve this answer
this is a good solution, but I am not sure it works or not? Are you sure? – Hossein Margani Jul 21 '09 at 17:06
feedback

The user should change their password again, and hopefully the email will succeed.

If they entered an incorrect address, they should contact an administrator who can correct their email address.

link|improve this answer
feedback

If it is possible to tell if an e-mail is successfully sent before you actually commit the change to the database this would be a good option. This isn't always the case, but maybe it could work for your application.

Usually with my experience ASP will thrown an exception if the e-mail fails. If this happens don't do anything in the DB, if the mail goes through then change the password. That doesn't mean they will get the e-mail but you can't account for problems during travel of the e-mail anyway. The option above would apply after this fails. ;)

link|improve this answer
Missed by a few seconds ;) – shahkalpesh Jul 21 '09 at 16:50
it's a good solution but the User sees two email one for test and one for he passord, and this is not good. – Hossein Margani Jul 21 '09 at 17:00
feedback

I don't know the support for such a feature in asp.net.

But, some website send you an email with a link to click (that expires in some days). Clicking which, will make sure you are committing to that action (i.e. password is changed only after they receive email & click the link they received).

link|improve this answer
you mean I should have a table to store a random value for the user to check that the user was that user that i sent that email? – Hossein Margani Jul 21 '09 at 17:01
feedback

ASP.NET also supports the question and secret answer approach to password recovery if email doesnt work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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