Secure session cookies in ASP.NET over HTTPS

后端 未结 2 1913
旧时难觅i
旧时难觅i 2021-01-31 00:22

I got a little curious after reading this /. article over hijacking HTTPS cookies. I tracked it down a bit, and a good resource I stumbled across lists a few ways to secure cook

相关标签:
2条回答
  • 2021-01-31 00:50

    https://www.isecpartners.com/media/12009/web-session-management.pdf

    A 19 page white paper on "Secure Session Management with Cookies for Web Applications"

    They cover lots of security issues that I haven't seen all in one spot before. It's worth a read.

    0 讨论(0)
  • 2021-01-31 01:01

    The web.config setting to control this goes inside the System.Web element and looks like:

    <httpCookies httpOnlyCookies="true" requireSSL="true" />
    
    0 讨论(0)
提交回复
热议问题