CVE-2026-45292: opentelemetry-java: Unbounded Memory Allocation in W3C Baggage Propagation
Overview
A vulnerability affects the baggage propagation implementation in opentelemetry-api and opentelemetry-extension-trace-propagators. Parsing oversized baggage causes unbounded memory allocation and CPU consumption. Because baggage is automatically re-injected into every outgoing request, the effect can fan out to downstream services that never received the original malicious request.
Technical Details
- W3CBaggagePropagator did not enforce any limit on the total size or entry count of the baggage header. The parser iterated character-by-character through the entire value regardless of length. - JaegerPropagator and OtTracePropagator had the same gap in their respective baggage extraction paths. - The W3C Baggage specification recommends a maximum of 8,192 bytes and 180 entries; none of these limits were enforced.
Impact
The practical availability impact for most deployments is limited. Every major Java HTTP server enforces its own header size limit (Tomcat, Jetty, Netty, Vert.x, and gRPC-Java all default to 8 KiB), constraining what an external attacker can deliver before the application is reached. The risk is higher when transport-layer limits are absent — e.g., a compromised internal service communicating over a non-HTTP or custom transport.
Remediation
Update to version 1.62.0 or later (#8380). The fix enforces limits consistent with the W3C Baggage specification at the propagator level:
- Maximum total baggage size: 8,192 bytes across all baggage header values - Maximum number of entries: 64
Headers that would exceed either limit are dropped at the point the limit is reached; already-extracted valid entries are retained.
Workarounds
Ensure HTTP header size limits are configured at the server or gateway level. Most Java HTTP servers enforce an 8 KiB header limit by default, which mitigates external attack vectors independently of this fix.
References
- W3C Baggage Specification §Limits
Other sources
opentelemetry-java is the Java implementation of the OpenTelemetry API for recording telemetry, and SDK for managing telemetry recorded by the API. Prior to 1.62.0, a vulnerability affects the baggage propagation implementation in opentelemetry-api and opentelemetry-extension-trace-propagators. Parsing oversized baggage causes unbounded memory allocation and CPU consumption. Because baggage is automatically re-injected into every outgoing request, the effect can fan out to downstream services that never received the original malicious request. This vulnerability is fixed in 1.62.0.
— MITRE
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
maven/io.opentelemetry:opentelemetry-extension-trace-propagatorsto a version that resolves this vulnerability.Fixed in 1.62.0 - Upgrade
Upgrade
maven/io.opentelemetry:opentelemetry-apito a version that resolves this vulnerability.Fixed in 1.62.0 - Upgrade
Upgrade
opentelemetry-javato a version that resolves this vulnerability.Fixed in 1.62.0Patch #8380 - Configuration
Ensure HTTP header size limits are configured at the server or gateway level so oversized 'baggage' headers are dropped once the limit is reached.
HTTP server/gateway level (applies to major Java HTTP servers mentioned) HTTP header size limits (including for the 'baggage' header) = Configure to enforce an 8,192-byte limit (W3C Baggage Specification maximum total size)
Event History
Frequently Asked Questions
What is the severity of CVE-2026-45292?
CVE-2026-45292 has a high severity level due to its potential for unbounded memory allocation and CPU consumption.
How do I fix CVE-2026-45292?
To fix CVE-2026-45292, update the affected packages 'opentelemetry-api' and 'opentelemetry-extension-trace-propagators' to version 1.62.0 or later.
What systems are affected by CVE-2026-45292?
CVE-2026-45292 affects versions up to and including 1.61.0 of the packages 'io.opentelemetry:opentelemetry-api' and 'io.opentelemetry:opentelemetry-extension-trace-propagators'.
What causes the vulnerability in CVE-2026-45292?
The vulnerability in CVE-2026-45292 is caused by unbounded memory allocation when parsing oversized baggage within the OpenTelemetry libraries.
Is there a workaround for CVE-2026-45292 if I cannot update the software immediately?
Currently, there are no officially documented workarounds for CVE-2026-45292, so it is strongly recommended to update to the latest version.