If the HTTP Only option is not configured, your cookies are at risk. This setting is essential because it prevents client-side JavaScript from accessing cookie values through code like "document.cookie". Enabling HTTP Only is crucial for websites vulnerable to Cross-Site Scripting (XSS) attacks, as it stops malicious scripts from obtaining cookie data.
Remediation Guidelines
Set the HttpOnly attribute to true in your cookie configuration. This ensures that cookies are protected from unauthorized client-side access.