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 httplib2 to version 0.32.0 or higher.
httplib2 is a small HTTP client library for Python.
Affected versions of this package are vulnerable to Improper Handling of Highly Compressed Data (Data Amplification) through the _decompressContent function in httplib2/__init__.py. An attacker can exhaust memory and crash the client by sending an HTTP response with Content-Encoding: gzip or deflate and a small compressed body that expands into a very large payload. The vulnerable request path automatically decompresses the entire response body in memory with unbounded gzip and zlib operations. Applications using httplib2.Http().request() against attacker-controlled or compromised HTTP endpoints are affected by MemoryError, OOM termination, and loss of service.
Notes
Http().request(); applications that leave response compression enabled and talk to untrusted or intermediary-controlled servers are the ones exposed.deflate-encoded responses as well, so any endpoint that returns Content-Encoding: deflate can trigger the same in-memory expansion failure.