You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These options do not apply to signout cookies, the cookie is being deleted. Was this affecting a real client or was it only flagged by some automation?
This was flagged during the compliance scanning.
If options do not apply to signout cookie - it would be great to have more control on signout cookie in ChunkingCookieManager.
Current approach is just to copy-paste whole DeleteCookie() method.
Thank you!
I have changed my authentication cookie name to have the __Host- prefix to ensure cookie integrity. Now the cookie is not deleted when SignOut() is called.
The following response header is sent, but the browser ignores it because it is missing the Secure flag:
Set-Cookie: __Host-.AspNet.Cookies=; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT
AspNetKatana/src/Microsoft.Owin/Infrastructure/ChunkingCookieManager.cs
Line 276 in e2b18ec
AspNetKatana/src/Microsoft.Owin/Infrastructure/ChunkingCookieManager.cs
Line 289 in e2b18ec
Please respect HttpOnly / Secure options when constructing SignOut cookie.
The text was updated successfully, but these errors were encountered: