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
{{ message }}
This repository was archived by the owner on Dec 13, 2018. It is now read-only.
During login in the web application this results in some default cookies related to nonce and correlation which look like this (exported from my browser developer tools):
I would like to change the CookieName of these cookies in order to make my web applications more anonymous. Why publicly expose the fact that my web applications run ASP.NET Core?
I'm using the two ASP.NET Core middlewares for OpenID Connect and cookie authentication like below:
During login in the web application this results in some default cookies related to nonce and correlation which look like this (exported from my browser developer tools):
I would like to change the CookieName of these cookies in order to make my web applications more anonymous. Why publicly expose the fact that my web applications run ASP.NET Core?
The cookie options is hard coded:
https://github.com/aspnet/Security/blob/dev/src/Microsoft.AspNetCore.Authentication/RemoteAuthenticationHandler.cs#L198
https://github.com/aspnet/Security/blob/dev/src/Microsoft.AspNetCore.Authentication.OpenIdConnect/OpenIdConnectHandler.cs#L896
Will a change of CookieName have any consequences in some other place I'm not aware of?
The text was updated successfully, but these errors were encountered: