Skip to content

Commit

Permalink
Merge pull request from GHSA-7p99-3798-f85c
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjmcgrath committed Mar 29, 2022
1 parent c619f67 commit 0947b92
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/context.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,8 @@ class ResponseContext {
returnTo = options.returnTo;
debug('req.oidc.login() called with returnTo: %s', returnTo);
} else if (req.method === 'GET' && req.originalUrl) {
returnTo = req.originalUrl;
// Collapse any leading slashes to a single slash to prevent Open Redirects
returnTo = req.originalUrl.replace(/^\/+/, '/');
debug('req.oidc.login() without returnTo, using: %s', returnTo);
}

Expand Down
17 changes: 17 additions & 0 deletions test/requiresAuth.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -354,4 +354,21 @@ describe('requiresAuth', () => {
assert.equal(response.statusCode, 401);
sinon.assert.notCalled(checkSpy);
});

it('should collapse leading slashes on returnTo', async () => {
server = await createServer(auth(defaultConfig));
const payloads = ['//google.com', '///google.com', '//google.com'];
for (const payload of payloads) {
const response = await request({ url: `${baseUrl}${payload}` });
const state = new URL(response.headers.location).searchParams.get(
'state'
);
const decoded = Buffer.from(state, 'base64');
const parsed = JSON.parse(decoded);

assert.equal(response.statusCode, 302);
assert.include(response.headers.location, 'https://op.example.com');
assert.equal(parsed.returnTo, '/google.com');
}
});
});

0 comments on commit 0947b92

Please sign in to comment.