Pypi · Urllib3 · CVE-2026-44431
**Name of the Vulnerable Software and Affected Versions**
urllib3 versions 1.23 through 2.6.x
**Description**
Sensitive headers, specifically `Authorization`, `Cookie`, and `Proxy-Authorization`, are forwarded during cross-origin redirects when using the low-level API via `ProxyManager.connection from url().urlopen(..., assert same host=False)`. While high-level APIs like `urllib3.request()`, `PoolManager.request()`, and `ProxyManager.request()` strip these headers by default, the low-level flow fails to do so.
**Recommendations**
Upgrade to version 2.7.0 or later.
Avoid using the low-level redirect flow for cross-origin redirects or switch to `ProxyManager.request()`.