English 中文(简体)
如果他忘记了App的密码和安全答案,则采取其他办法帮助用户。 净额
原标题:Alternative approach to help user if he forgets his password and security answer in Asp.Net

I am using Asp.Net Forms Authentication , I am storing passwords in Hashed format and I do require a Question and Answer.My question is that what happens if a user forgets his security question s answer and his password.So without that I wont be able to generate a random password.What happens in such case , is the user left with only option to create a new account .Or should I link a table to store his question and answer in plain text and then pass the answer while resetting the password.I am sure you guys might have seen this a lot of times.How can I solve this. Any suggestions are welcome. Thanks

最佳回答

如果用户不了解他/她的问题/回答,你可以总是有系统发送电子邮件,链接到密码恢复网页。 在这里,你可以问问他们,根据他们在创建账户时掌握的更敏感的信息,他们知道答案(姓名、地址等)。

Be 警告,只有在贵方网站不像银行网站,而且安全地点低的情况下,才能做到这一点。 否则,将遵循Walter s和AakashM在安全论坛的建议和职位。

问题回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签