So I have a aspnetcore web application that initially (by mistake) issued a cookie with expiration however it was still marked as session (it was missing the AuthenticationProperties.IsPersistent).
I now know that it had to be a persistent cookie.
When new users enter and login, it is ok, the cookie written is persistent. But the previous users may have a problem with this session cookie (it contains a token which expires).
I want to know how can I overwrite this session cookie, or delete it without affecting the other users?
I know another way around would be to rename the aspnetcore authentication cookie name. It will "logout" all users which is ok, but I would still like to avoid it for now.
Thanks