c# - ASP.net Forms Authentication - Protection not working for me -


in web.config file i've got following:

 <authentication mode="forms">    <forms name=".aspxauth" protection="all" loginurl="~/account/login.aspx" timeout="2880" /> </authentication> 

but when log in , watch traffic fiddler, still can see password in plain text. have no idea whats wrong.

regards,

matt

i know of 2 solutions this:

  1. use https. best solution, moste secure.
  2. use javascript library (sha1) hash password before sending (and clear original password field!). use randomly generated salt different every login, store salt on server , in hidden field, can check salt (user may not change it).

Comments

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -