View HttpOnly cookies in Internet Explorer

Using Internet settings. I can see all persistent cookies and use the developer tools. I can see all session cookies available by JS. There seems to be no way to view the HTTPOnly cookie.

Firefox has many options, both built-in and Firebug, for viewing cookies, including the ability to view request / response headers. Is it impossible to see HTTPOnly cookie in IE8?

Related Questions (No HttpOnly Solutions): IE7 IE8

+5
source share
1 answer

Check this out: http://blogs.msdn.com/b/jpsanders/archive/2009/06/04/understanding-the-new-wininet-flag-internet-cookie-httponly.aspx

There are several new Cookie Explorer 8 WinInet.dll flags on the Internet. The INTERNET_COOKIE_HTTPONLY flag allows you to read HttpOnly files in your WinInet code. This flag is documented here: http://msdn.microsoft.com/en-us/library/aa384714(VS.85).aspx .

and here is a way to create a tool and use it: http://www.codeproject.com/Articles/38616/Retrieve-HttpOnly-Session-Cookie-in-WebBrowser

IE8 , HTTPOnlyCookies, dev, , cookie, HTTPOnly. , Fiddler2 HTTPOnly.

+2

All Articles