Update dependency urllib to ~2.44.0 [SECURITY] - #84
Open
renovate[bot] wants to merge 1 commit into
Open
renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
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.
This PR contains the following updates:
~2.40.0→~2.44.0urllib's cross-origin redirects preserve credential-bearing request headers, leading to potential credential leakage
CVE-2026-55553 / GHSA-hq3h-g68c-hp78
More information
Details
Summary
urllib supports redirect-following through
followRedirect, which is expected behavior for an HTTP client. The issue is that, when following a redirect to a different origin, urllib preserves the caller-supplied request headers verbatim, including credential-bearing headers such asAuthorization,Cookie,Proxy-Authorization, and custom auth headers (x-api-key,x-auth-token,x-access-token).If the redirect target is attacker-controlled or outside the trust boundary of the original target, credentials intended for the original origin can be delivered to the redirected origin. In a local multi-library reproduction, urllib v4.9.0 was the only tested client that stripped no headers on cross-origin redirect.
Affected behavior
Confirmed against urllib v4.9.0. The relevant code is in
#requestInternal(src/HttpClient.ts:639-656):The recursive call
this.#requestInternal(nextUrl.href, options, requestContext)reuses the originaloptionsobject. If the caller supplied credential-bearing headers inoptions.headers, those headers are reused for the redirected request, regardless of whether the redirect target shares the original origin.Redirect-header handling context
The CHANGELOG suggests that redirect-related header handling has been considered before, including changes around preserving or cleaning up
Hostduring redirects. Given that context, sensitive-header stripping may be an unintentional gap rather than an explicit policy decision.Proof of Concept: 3-container topology
The reproduction uses three separate containers (
partner,attacker,client) connected over a Podman bridge network. Each container has its own hostname, port, and process, so the redirect crosses a clear origin boundary. This is not alocalhostvs127.0.0.1same-host case.The origin tuple is
(scheme, host, port):http://partner:3001http://attacker:3002The host and port both differ, so the redirect target is a different URL origin. The headers are logged in a separate process inside a separate container.
Client invocation (
client/poc.mjs):Observed result
urllib 4.9.0, Node.js 22.22.2, linux/arm64:
The
user-agentvalue confirms that the redirected request was sent by urllib v4.9.0.Independent reproduction: multi-library comparison
A separate local harness tested the same cross-origin redirect topology against multiple Node.js HTTP clients:
partner:3001 → attacker:3002redirect;The results were deterministic across runs:
authorization,cookie,proxy-authorizationauthorization,cookie,proxy-authorizationauthorization,cookieauthorization,cookieauthorization,cookieauthorizationurllibwas the only tested library that stripped no headers on cross-origin redirect. Custom auth headers such asx-api-key,x-auth-token, andx-access-tokenare an ecosystem-wide gap in this comparison. The urllib-specific issue is the absence of any strip step for standard credential-bearing headers such asAuthorization,Cookie, andProxy-Authorization.The reproduction harness is small and can be shared if useful.
Impact
This affects Node.js applications that use urllib to make authenticated HTTP requests while allowing redirects to be followed automatically.
This exposes credentials to an origin that was not the intended recipient. Depending on the credential type and server-side validation, the leaked credentials may be reusable against the original partner API or related services.
This requires no user interaction. Realistic triggers include compromised partner subdomains, DNS hijacking, malicious partner endpoints during onboarding, internal services redirecting across trust boundaries, or an open redirect upstream of urllib's call site.
Severity
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:NReferences
This data is provided by the GitHub Advisory Database (CC-BY 4.0).
Release Notes
node-modules/urllib (urllib)
v2.44.1Compare Source
What's Changed
Security
Authorization,Cookie,Proxy-Authorization) on cross-origin redirect, and clearauth/digestAuthbefore following. Same-origin redirects are unchanged and the caller's headers object is never mutated (#813).Internal
latest-2npm dist-tag (#815).Full Changelog: node-modules/urllib@v2.44.0...v2.44.1
v2.44.0Compare Source
Features
This release is also available on:
v2.43.0Compare Source
Features
This release is also available on:
v2.42.0Compare Source
Features
This release is also available on:
v2.41.0Compare Source
Features
dataAsQueryStringparams for convert data to query string (#240) (3c0a16c)Bug Fixes
location: /fooredirect (b3bd116)Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.