Tagged Questions

38
votes
17answers
3k views

What is the best “forgot my password” method?

I'm programming a community website. I want to build a "forgot my password" feature. Looking around at different sites, I've found they employ one of three options: send the user an email with a ...
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 ...
5
votes
6answers
1k views

Why is challenge-response approach a poor solution for forgotten passwords?

My company is developing an online HR and Payroll application where securing access is critical. I'm clear on how to lock down most of the authentication/authorization processes, except for the ...
3
votes
4answers
2k views

Password reset by emailing temporary passwords

A group in my company is implementing a single-sign-on REST API for our applications. This authentication service has a password reset function. The application sends the username to the reset ...
2
votes
2answers
73 views

Designing login system for “lost email”

I am designing a website for a college oriented website and have some trouble designing the business logic behind the "forgot login" sequence. A user is registered through their college email so if ...
2
votes
3answers
607 views

Password reset by email without a database table

The normal flow for resetting a user's password by mail is this: Generate a random string and store it in a database table Email string to user User clicks on link containing string String is ...
1
vote
2answers
99 views

Password Recorevy Without email

I was wondering if anyone has ever used, built or seen a password recoervy tool that was completely online and didn't require sending some kind of password reset email. I understand the security ...
1
vote
2answers
118 views

What type of security should I use if I wish to have a Forgotton Password ability on our website? AES?

unfortunately, we've been requested to offer our users the ability to get an email sent to their registered account, their password .. if they have forgotten their password. "Click here if you have ...
1
vote
9answers
530 views

Should I provide lost credentials to users via a direct message on Twitter?

Is it better (more convenient or secure) to provide users with a lost username or password via direct message on Twitter rather than via email?
0
votes
1answer
35 views

Techniques to avoid the oracle attack on matching accounts info that a password reset system could lead to

Let's say you create a password reset system for your webapp. The system requires either a username or an email to send out the reset link to an account's email. Consider these conflicting ...
0
votes
4answers
378 views

How to keep passwords safe when a “Forgot Password” function is available

A colleague and I are discussing how to implement "Lost Password" feature on our company's proprietary web application. We have already decided that to create an account there will be three required ...