Setting HTTPONLY for Classic Asp Session Cookie

后端 未结 7 1573
闹比i
闹比i 2020-12-08 10:06

Does anyone know exactly how to set HTTPONLY on classic ASP session cookies?

This is the final thing that\'s been flagged in a vulnerability scan and needs fixing AS

相关标签:
7条回答
  • 2020-12-08 10:41
    Response.AddHeader "Set-Cookie", "CookieName=CookieValue; path=/; HttpOnly" 
    

    Source: http://www.asp101.com/tips/index.asp?id=160

    0 讨论(0)
提交回复
热议问题