Skip to content
This repository was archived by the owner on Aug 28, 2023. It is now read-only.

Commit 1fe12ae

Browse files
authoredAug 20, 2020
Merge pull request #501 from jeffwilcox/readme-update-session-fixation
README: recommend regenerating session by default
2 parents 6e8934e + 3369263 commit 1fe12ae

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed
 

‎README.md

+16-2
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,10 @@ passport.use(new OIDCStrategy({
178178

179179
* `useCookieInsteadOfSession` (Conditional)
180180

181-
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.
183185
If `useCookieInsteadOfSession` is set to true, you must provide `cookieEncryptionKeys` for cookie encryption and decryption.
184186
* `cookieSameSite` (Conditional)
185187
If set to true, Passport will add the Same-Site: None header to cookies set by the lib, specifically to validate state and nonce.
@@ -339,13 +341,25 @@ app.get('/login',
339341
res.redirect('/');
340342
});
341343

344+
function regenerateSessionAfterAuthentication(req, res, next) {
345+
var passportInstance = req.session.passport;
346+
return req.session.regenerate(function (err){
347+
if (err) {
348+
return next(err);
349+
}
350+
req.session.passport = passportInstance;
351+
return req.session.save(next);
352+
});
353+
}
354+
342355
// POST /auth/openid/return
343356
// Use passport.authenticate() as route middleware to authenticate the
344357
// request. If authentication fails, the user will be redirected back to the
345358
// home page. Otherwise, the primary route function function will be called,
346359
// which, in this example, will redirect the user to the home page.
347360
app.post('/auth/openid/return',
348361
passport.authenticate('azuread-openidconnect', { failureRedirect: '/' }),
362+
regenerateSessionAfterAuthentication,
349363
function(req, res) {
350364
res.redirect('/');
351365
});

0 commit comments

Comments
 (0)
This repository has been archived.