Chrome developer tools > resources > cookies > http column, does a checkmark here indicate HttpOnly cookie?

user854894 picture user854894 · Jul 7, 2012 · Viewed 53k times · Source

Does the checkmark at the Http column of Chrome devtool's Cookie resource panel indicate a HttpOnly cookie?

I can't find docs that confirm this, though I suspect it is the case. I am trying to verify my app is using HttpOnly for session cookies.

Answer

Rob W picture Rob W · Jul 7, 2012

Yes. Enter document.cookie in the console, and you'll see that none of the checked cookies are visible.

Name Value Domain Path Expires Size HTTP Secure

HTTP = HttpOnly flag, Secure = secure flag.