| Title | xerial snappy-java 1.1.10.8 Off heap OOB Write in ByteBuffer Uncompress |
|---|
| Description | I was auditing the ByteBuffer decompression path in snappy-java and noticed that Snappy.uncompress(ByteBuffer, ByteBuffer) never checks whether the destination buffer is large enough before writing into it. The decompressed size comes straight from the compressed input's own length prefix — fully attacker-controlled — and the native layer just writes that many bytes into the destination regardless of its actual capacity. A valid, well-formed Snappy blob that decompresses to more bytes than the destination buffer holds writes past the end of the off-heap allocation and crashes the JVM with a SIGSEGV.
Interestingly, the sibling API BitShuffle.shuffle(ByteBuffer, ByteBuffer) already does the equivalent capacity check before calling native code — this path just doesn't have one. The method's Javadoc suggests calling isValidCompressedBuffer first, but that only checks stream well-formedness, not whether the output fits the destination. |
|---|
| Source | ⚠️ https://github.com/xerial/snappy-java/issues/728 |
|---|
| User | Yu Bao from PayPal Cyber Security Team (UID 99838) |
|---|
| Submission | 08/14/2026 10:21 (1 month ago) |
|---|
| Moderation | 09/14/2026 09:17 (1 month later) |
|---|
| Status | Duplicate |
|---|
| VulDB entry | 403173 [Xerial snappy-java up to 1.1.10.8 Snappy.uncompress out-of-bounds write] |
|---|
| Points | 0 |
|---|