mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
fix:(middlewares.go) - Set Cookie SameSite mode to Strict - 1776 (#1777)
* None is deprecated and will fallback to Lax in the future. * Using Strict is future proof and provides additional CSR protection Signed-off-by: Manuel Kroeber <manuel.kroeber@gmail.com> Signed-off-by: Manuel Kroeber <manuel.kroeber@gmail.com>
This commit is contained in:
parent
751e42c705
commit
72cde6dfde
2 changed files with 2 additions and 1 deletions
|
@ -112,7 +112,7 @@ func clientUniqueIdAdder(next http.Handler) http.Handler {
|
|||
MaxAge: consts.CookieExpiry,
|
||||
HttpOnly: true,
|
||||
Secure: true,
|
||||
SameSite: http.SameSiteNoneMode,
|
||||
SameSite: http.SameSiteStrictMode,
|
||||
Path: "/",
|
||||
}
|
||||
http.SetCookie(w, c)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue