Tagged Questions

7
votes
2answers
3k views

ASP.NET Membership Provider - Reset Password Features - Email Confirmation and Password Change

Does anyone has a solution (sample code) for the following features: Create a randomGuid/Cryptographically strong random number Send a unique URL containing the random number to the user's email ...
7
votes
3answers
1k views

Resetting ASP.NET password - security issues?

I've seen various questions regarding this issue, but there are a couple of questions that haven't been asked. If the user forgets their password, I would like them to be able to reset it with only ...
3
votes
2answers
706 views

asp.net membership change password without knowing old one

Evaluting the method signature, it is required to know old password while changing it. membershipUser.ChangePassword(userWrapper.OldPassword, userWrapper.Password) Is there any way to change ...
2
votes
2answers
1k views

Some questions regarding implementing forgot password functionality in asp.net mvc

I want to implement a forgot-password feature in asp.net mvc that allows users to reset their password, and have some questions in this regard: Lets say that before allowing users to reset their ...
1
vote
2answers
359 views

ASP.Net User forgot answer to password question

How can I reset a password for a user who forgot both the password and the answer to the password reset question? I'm using ASP.Net membership.
1
vote
2answers
274 views

using asp.net sqlmembership how do i send a user their password if password format is set to hashed

setting type to hashed seems to not allow enablePasswordRetrieval. what if a user forgot their password?
1
vote
2answers
3k views

How to not use ASP.Net Membership Security Question and Answer for custom password recovery?

I don't want to have the security question and answer feature that ASP.Net Membership Provider gives, but I DO want to enable a lost/forgotten password page. This page would be where a user would ...