APICLIENT-3136: security: strip Cookie on cross-origin redirect and use full-origin check#113
Open
MrRobotBaguette wants to merge 1 commit into
Open
Conversation
…se full-origin check Co-Authored-By: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
lib/redirect.jsstripped theAuthorizationheader on a cross-host redirect but never strippedCookie, so a session cookie could be leaked to a different host on redirect. The host-change check also compared hostname only, ignoring port and scheme, so bothAuthorizationandCookieleaked across ports and on an HTTPS to HTTP downgrade.Same vulnerability class as undici CVE-2023-45143 (cookie leak on cross-host redirect) and guzzle CVE-2022-31042 (cross-domain cookie/Authorization leak on redirect).
Fix
lib/redirect.js:Cookieheader on any cross-origin redirect, alongside the existingAuthorizationremoval.originalCookieHeaderon cross-origin redirect so it is not re-prepended to theCookieheader on subsequent hops (Request.prototype.jarin request.js prepends it to every hop; clearing it here closes that path without duplicating the origin check).Same-origin redirect behavior is unchanged.
followAuthorizationHeaderstill opts back into retainingAuthorization.Risk / behavior change
Cookies and
Authorizationare now also dropped when only the port or scheme changes across a redirect (previously retained). Intentional and matches corrected security semantics.Test plan
npx standard lib/redirect.js— no new warnings/errors (pre-existing no-var style warnings only).Linked Jira: APICLIENT-3136
Generated with Claude Code