CODE: SECURE YOUR SITECORE COOKIES
Setting the Secure Flag
So, a Sitecore site I've been working on recently underwent a penetration test, which turned up an interesting item.
The ASP.NET_SessionId and SC_ANALYTICS_GLOBAL_COOKIE cookies aren't set with the 'Secure' flag.
Furthermore, my own checking showed that the .ASPXAUTH token was also set without the 'Secure' flag.
As the entire site is only served over HTTPS, this seems to be a bit remiss.
Fortunately, there are a couple of easy fixes to this that can be set in the Web.config
Under and set requireSSL:
And in set requireSSL too.
This latter one is needed for the .ASPXAUTH cookie, but that seems to do it.
Don't forget to set the HTTPOnly flag as appropriate for your cookies too!
Andy Burns
Senior Developer, 3chillies