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 Aug 28, 2023. It is now read-only.
Passport-azure-ad saves state and nonce in session by default for validation purpose. If `useCookieInsteadOfSession` is set to true, passport-azure-ad will encrypt the state/nonce and
182
-
put them into cookie instead. This is helpful when we want to be completely session-free, in other words, when you use { session: false } option in passport.authenticate function.
181
+
Passport-azure-ad saves state and nonce in session by default for validation purpose. Consider regenerating the session
182
+
after authentication to prevent session fixation attacks when using the default. If `useCookieInsteadOfSession` is set to
183
+
true, passport-azure-ad will encrypt the state/nonce and put them into cookie instead. This is helpful when we want to be
184
+
completely session-free, in other words, when you use { session: false } option in passport.authenticate function.
183
185
If `useCookieInsteadOfSession` is set to true, you must provide `cookieEncryptionKeys` for cookie encryption and decryption.
184
186
*`cookieSameSite` (Conditional)
185
187
If set to true, Passport will add the Same-Site: None header to cookies set by the lib, specifically to validate state and nonce.
0 commit comments