I have to run a quarterly compliance scan on an e-commerce site , and as per the scan results, I need to add the HttpOnly to all cookies.
As per the request:
Can someone please tell me where to put this?For each cookie generated by your web-site, add the "HttpOnly" flag to the cookie. For example:
Set-Cookie: <name>=<value>[; <Max-Age>=<age>]
[; expires=<date>][; domain=<domain_name>]
[; path=<some_path>][; secure][; HttpOnly]
Thank you.