Session Fixation in ASP.NET

前端 未结 4 1385
没有蜡笔的小新
没有蜡笔的小新 2020-11-28 10:27

I\'m wondering how to prevent Session fixation attacks in ASP.NET (see http://en.wikipedia.org/wiki/Session_fixation)

My approach would to this would normally be to

4条回答
  •  伪装坚强ぢ
    2020-11-28 11:20

    It does generate a new session ID when the user logs in, and kills a session when the timeout occurs, or the user navigates away/close the browser. And you can programmably kill it via Abandon() or remove entries via Remove().

    So I'm not sure what the issue is?

提交回复
热议问题