Tagged Questions
The reset-password tag has no wiki summary.
22
votes
14answers
934 views
What is safer? Should I send an email with a URL that expires to users to reset their password or should I email a newly generated password?
I was wondering what would be the safer option when users have forgotten their password
Send a randomly generated new password to the email address (all email addresses in my database are confirmed ...
4
votes
5answers
325 views
Secure way to do password retrieval/resetting?
Before I begin, my reason for not using OAuth is I believe it is not really something we should be using on this project, we're targeting a platform that will be packaged and resold to companies, ...
4
votes
5answers
2k views
Force validation of blank passwords in Authlogic
I'm adding a password reset feature to my Rails application that uses Authlogic. I was following the guide here: http://www.binarylogic.com/2008/11/16/tutorial-reset-passwords-with-authlogic/ and ...
3
votes
4answers
102 views
Pattern for allowing a user to change his password. Should the user have to repeat the new password as well as enter the old password?
There are lots of questions about recovering passwords on SO, but not about changing passwords considering one of the two following:
1) The user is authenticated in the system already (either ...
3
votes
1answer
117 views
.NET Membership - Register, login etc. works. Password reset doesn't
I'm trying to allow for reset password functionality to my site without utilizing question/answer functionality (this is deactivated in the membership entry in web.config).
However when calling ...
0
votes
3answers
82 views
password_reset validation php
I'm curious to know: once a pw_reset token is sent via email, is it possible to get the email address of the referrer's account for validating, or would it be best to validate against an IP? I've set ...
0
votes
0answers
47 views
undefined method `email' for #<UserSession: no credentials provided>
I use for login Authlogic gem as c.login_field = :my_id number. This error I am getting when I try to reset currently forgot password.
When I change this part code from
acts_as_authentic do |c|
...
0
votes
1answer
173 views
Active directory - exception has been thrown by the target of an invocation
I have a web application in a separate server than Active Directory and I want to change a user password. The code is the next:
string newPassword = ...
0
votes
1answer
132 views
asp.net membership ResetPassword does not work
when i want to use ResetPassword method in vb.net or c# , it can not reset password and make an exeption that say : "The password-answer supplied is wrong".
i think it is caused by hashing system and ...
0
votes
1answer
91 views
Ruby on rails Authlogic gem and Password_Reset without ending in Edit
I followed this password_reset tutorial and was able to get it working. But there are a few things I don't like about it that I want to change.
I'd like it to say password_reset rather than ...