Snyk has a proof-of-concept or detailed explanation of how to exploit this vulnerability.
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 applicationsThis was deemed not a vulnerability.
Affected versions of this package are vulnerable to Memory Allocation with Excessive Size Value in the decodeFromCompressedByteBuffer function due to improper handling of the lengthOfCompressedContents argument. An attacker can cause excessive memory allocation by supplying a crafted compressed byte buffer, potentially leading to application instability or denial of service.
lengthOfCompressedContents is read from the buffer and used directly for allocation/decompression input without bounds validation (AbstractHistogram.java 2275–2283). The same unchecked length is passed on the array-backed path (line 2279).allocateDirect to reach the new byte[lengthOfCompressedContents] branch. Typical log parsing uses ByteBuffer.wrap, so the heap-allocating path is not the default for .hlog ingestion, though the public API allows direct buffers.