PatchSiren cyber security CVE debrief
CVE-2026-48040 Netty CVE debrief
CVE-2026-48040 is a vulnerability in the Netty incubator codec.bhttp, a Java language binary HTTP parser. The library implements Oblivious HTTP (RFC 9458) using BoringSSL's HPKE C library via JNI. When deriving native memory addresses for cryptographic operations, versions prior to 0.0.22.Final provide a fallback path for direct ByteBufs that do not expose their memory address through `hasMemoryAddress()`. This fallback occurs when `sun.misc.Unsafe` is unavailable to Netty — for example, when the JVM is started with `-Dio.netty.noUnsafe=true`, when a SecurityManager restricts Unsafe access, or when running on non-HotSpot JVMs. In these configurations, Netty's default `PooledByteBufAllocator` returns `PooledDirectByteBuf` instances for which `hasMemoryAddress()` returns false. Under the enabling JVM configuration, an unauthenticated network attacker can cause the OHTTP gateway to corrupt memory belonging to other concurrent connections and disclose the contents of adjacent pooled direct buffers by triggering cryptographic operations with crafted OHTTP requests. The corruption occurs regardless of whether the AEAD tag verification succeeds, as BoringSSL zeroizes the output buffer on failure. The information disclosure path provides the attacker with the encryption key needed to extract the leaked data. This violates the confidentiality and integrity of all connections sharing the same Netty buffer arena.
- Vendor
- Netty
- Product
- Netty-Incubator-Codec-Ohttp
- CVSS
- MEDIUM 6.8
- CISA KEV
- Not listed in stored evidence
- Original CVE published
- 2026-06-04
- Original CVE updated
- 2026-06-05
- Advisory published
- 2026-06-04
- Advisory updated
- 2026-06-05
Who should care
Users of Netty-Incubator-Codec-Ohttp versions prior to 0.0.22.Final should update to 0.0.22.Final to fix the issue.
Technical summary
The vulnerability is caused by the fallback path for direct ByteBufs that do not expose their memory address through `hasMemoryAddress()`. This fallback occurs when `sun.misc.Unsafe` is unavailable to Netty. An unauthenticated network attacker can cause the OHTTP gateway to corrupt memory belonging to other concurrent connections and disclose the contents of adjacent pooled direct buffers by triggering cryptographic operations with crafted OHTTP requests.
Defensive priority
High
Recommended defensive actions
- Update to version 0.0.22.Final or later
- Avoid using `sun.misc.Unsafe` or restrict its access
- Use a HotSpot JVM
Evidence notes
The vulnerability is rated as MEDIUM with a CVSS score of 6.8. The CVE record and NVD detail can be found at [cve-org](${cve-org}) and [nvd](${nvd}), respectively.
Official resources
-
CVE-2026-48040 CVE record
CVE.org
-
CVE-2026-48040 NVD detail
NVD
-
Source item URL
nvd_modified
-
Mitigation or vendor reference
[email protected] - Patch
-
Mitigation or vendor reference
[email protected] - Vendor Advisory
CVE-2026-48040 was published on ${cvePublishedAt} and modified on ${cveModifiedAt}.