CVE-2025-29908:
Netty QUIC hash collision DoS attack
5.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.28654%
CWE
Published
3/31/2025
Updated
3/31/2025
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
io.netty.incubator:netty-incubator-codec-quic | maven | < 0.0.71.Final | 0.0.71.Final |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stemmed from using a standard HashMap with ByteBuffer keys for connection management. The hash implementation for ByteBuffer was vulnerable to collision attacks. The patch replaces this with a SipHash-protected ConnectionIdChannelMap. Runtime detection would show:
- The QuicheQuicCodec's connectionIdToChannel field operations
- HashMap.put/get methods handling colliding keys
- High CPU usage in HashMap collision resolution code paths Evidence from the patch shows direct replacement of HashMap with a secure alternative, confirming these were the vulnerable entry points.