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:
- use https. best solution, moste secure.
- 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
Post a Comment