How secure is basic forms authentication in asp.net?

后端 未结 8 839
鱼传尺愫
鱼传尺愫 2021-02-07 02:57

Imagine that you have a simple site with only 2 pages: login.aspx and secret.aspx. Your site is secured using nothing but ASP.net forms authentication and an ASP.net Login serv

8条回答
  •  感情败类
    2021-02-07 03:46

    Asp.Net supports cookieless sessions, as this blog post shows. Instead of a session cookie, it uses an identifier in the url to track users.

    I am not sure how secure this is, but I would think it is a secure as the difficulty to brute force the identity string.

    It looks like it works more or less out of the box, however when redirecting a user and wanting to maintain session state you must include the session id. The blog post shows how to do that, as well as many other articles on the web.

提交回复
热议问题