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
to version 3.11.4, 3.12.0b1 or higher.
Affected versions of this package are vulnerable to Improper Validation of Specified Type of Input due to improper validation in the urlsplit
and urlparse
functions. An attacker can manipulate URL parsing by crafting malicious URLs that bypass expected host validations.
from urllib.parse import urlsplit
parsedURL = urlsplit('scheme://user@[regname]/Path')
print(parsedURL.hostname) # Prints 'regname'