The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsUpgrade python/cpython to version 3.15.0rc2 or higher.
Affected versions of this package are vulnerable to Unprotected Alternate Channel through the HTTPPasswordMgr and HTTPPasswordMgrWithPriorAuth URI-matching logic in Lib/urllib/request.py. An attacker can capture stored credentials by redirecting or downgrading a client from https:// to http:// for the same host, causing credentials registered for the secure URL to be sent over cleartext HTTP. Credentials added for a URL were matched using reduce_uri() without considering the scheme, so an HTTPS credential could also be reused for an HTTP request to the same authority, and HTTP credentials could likewise be reused for HTTPS. This exposes authentication data to interception and can break applications that assume credentials are scoped to the original transport.
Workarounds
http:// requests to hosts for which credentials are registered; for example, do not follow redirects to http:// URLs. This prevents credentials from being sent over cleartext HTTP where they can be intercepted.