Description
The HTTPPasswordMgr class in the urllib.request module, along with its subclasses HTTPPasswordMgrWithDefaultRealm and HTTPPasswordMgrWithPriorAuth, did not take the URL scheme into account when matching stored credentials against a requested URL. Credentials added for an https:// URL were also used for requests to the same host over http://, so an attacker able to redirect or downgrade a client to plain HTTP (for example, via an HTTPS-to-HTTP redirect or an on-path position) could capture credentials in cleartext. Credentials added for http:// URLs could likewise be sent over https://.

Credential matching is now scoped by URL scheme. Credentials registered with a URL that includes a scheme are only used for requests with the same scheme. Credentials registered with a bare authority (such as example.com or example.com:8080) continue to match any scheme, preserving compatibility with existing code, including proxy authentication.

Users who cannot upgrade immediately can mitigate by ensuring that applications never make plain http:// requests to hosts for which credentials are registered, for example by not following redirects to http:// URLs.
Published: 2026-08-18
Score: 6 Medium
EPSS: n/a
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The urllib.request module’s HTTPPasswordMgr and its subclasses failed to enforce URL scheme checks when matching stored credentials against a requested URL. Credentials registered for an HTTPS site were also used for plain HTTP requests to the same host, meaning an attacker who can redirect or downgrade traffic (for example, via an HTTPS‑to‑HTTP redirect or an on‑path position) could capture those credentials in cleartext. This flaw represents an insecure transmission of credentials (CWE‑319) and inadequate credential scoping (CWE‑522).

Affected Systems

Python Software Foundation’s CPython implementation is affected. All releases that still use the unpatched HTTPPasswordMgr are impacted until the fix that scopes credentials by URL scheme is applied. No specific version range is listed, so upgrade to any CPython version that incorporates this change.

Risk and Exploitability

The CVSS score is 6, indicating medium severity. No EPSS value is available and the vulnerability is not listed in the CISA KEV catalog, suggesting limited known exploitation. The practical attack requires an attacker to control network traffic or induce a redirect to a plain HTTP URL. If feasible, the credentials can be read in cleartext, so the risk is moderate and mitigated primarily by updating CPython.

Generated by OpenCVE AI on August 18, 2026 at 17:18 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Update CPython to a version that includes the scheme‑scoped credential matching fix.
  • If immediate upgrade is impossible, modify applications so that no plain HTTP requests are sent to hosts with registered credentials; avoid following redirects to HTTP URLs.
  • Review existing code that uses HTTPPasswordMgr or its subclasses to ensure credentials are not unintentionally sent over insecure connections.

Generated by OpenCVE AI on August 18, 2026 at 17:18 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Tue, 18 Aug 2026 18:30:00 +0000

Type Values Removed Values Added
References

Tue, 18 Aug 2026 18:15:00 +0000


Tue, 18 Aug 2026 17:45:00 +0000

Type Values Removed Values Added
First Time appeared Python
Python cpython
Vendors & Products Python
Python cpython

Tue, 18 Aug 2026 16:00:00 +0000

Type Values Removed Values Added
Description The HTTPPasswordMgr class in the urllib.request module, along with its subclasses HTTPPasswordMgrWithDefaultRealm and HTTPPasswordMgrWithPriorAuth, did not take the URL scheme into account when matching stored credentials against a requested URL. Credentials added for an https:// URL were also used for requests to the same host over http://, so an attacker able to redirect or downgrade a client to plain HTTP (for example, via an HTTPS-to-HTTP redirect or an on-path position) could capture credentials in cleartext. Credentials added for http:// URLs could likewise be sent over https://. Credential matching is now scoped by URL scheme. Credentials registered with a URL that includes a scheme are only used for requests with the same scheme. Credentials registered with a bare authority (such as example.com or example.com:8080) continue to match any scheme, preserving compatibility with existing code, including proxy authentication. Users who cannot upgrade immediately can mitigate by ensuring that applications never make plain http:// requests to hosts for which credentials are registered, for example by not following redirects to http:// URLs.
Title `HTTPPasswordMgr` can send saved HTTPS credentials via HTTP because of incorrect scheme matching
Weaknesses CWE-319
CWE-522
References
Metrics cvssV4_0

{'score': 6, 'vector': 'CVSS:4.0/AV:N/AC:H/AT:P/PR:N/UI:P/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N'}


cve-icon MITRE

Status: PUBLISHED

Assigner: PSF

Published:

Updated: 2026-08-18T18:56:57.585Z

Reserved: 2026-07-15T08:49:13.390Z

Link: CVE-2026-15806

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-18T16:17:02.220

Modified: 2026-08-18T18:17:26.223

Link: CVE-2026-15806

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-08-18T17:30:15Z

Weaknesses
  • CWE-319

    Cleartext Transmission of Sensitive Information

  • CWE-522

    Insufficiently Protected Credentials