This repository was archived by the owner on Nov 20, 2018. It is now read-only.
This repository was archived by the owner on Nov 20, 2018. It is now read-only.
ResponseCookies.Delete() does not honor CookieOptions such as Secure or HttpOnly #541
Closed
Description
Delete()
basically creates new CookieOptions
that mutes the Secure
and HttpOnly
options. We have an HP security scan indicating that the cookie expiration call is insecure as it's not marking the OWIN OIDC nonce cookies expiration as Secure
. I understand that this is not a real threat, but making the Delete()
call consistent with the input CookieOptions
would help people get rid of such problems.