I have a custom authentication mechanism in a .NET app that stores the hashes of user passwords and then tests entered passwords against that hash to grant authentication ticket.
With the passwords being hashed, obviously I don't know my users passwords.
For debugging etc, I need to be able to impersonate users and log in to their account, but need some system of getting around the fact that I don't have the password.
One option I have considered is a secondary test on authentication failure against a master password, though this I consider a little weak since if the master password is compromised, then all accounts are accessible if the email address is known.
Does any one have a good solution for this issue?
