Skip to main content

OpenTelemetry Java SDK CVE-2026-45292

| EUVD-2026-32953 MEDIUM
Allocation of Resources Without Limits or Throttling (CWE-770)
2026-05-14 https://github.com/open-telemetry/opentelemetry-java GHSA-rcgg-9c38-7xpx
5.3
CVSS 3.1
Share

CVSS VectorNVD

CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L
Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
None
Availability
Low

Lifecycle Timeline

2
Source Code Evidence Fetched
May 26, 2026 - 21:32 vuln.today
Analysis Generated
May 26, 2026 - 21:32 vuln.today

Blast Radius

ecosystem impact
† from your stack dependencies † transitive graph · vuln.today resolves 4-path depth
  • 685 maven packages depend on io.opentelemetry:opentelemetry-api (175 direct, 512 indirect)
  • 5 maven packages depend on io.opentelemetry:opentelemetry-extension-trace-propagators (4 direct, 1 indirect)

Ecosystem-wide dependent count for version 1.62.0 and other introduced versions.

DescriptionNVD

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

AnalysisAI

Unbounded memory allocation and CPU exhaustion in OpenTelemetry Java SDK's baggage propagation allows remote unauthenticated attackers to degrade or deny service by sending oversized baggage headers. Affected components - W3CBaggagePropagator, JaegerPropagator, and OtTracePropagator - all lacked enforcement of the W3C Baggage specification's recommended size and entry limits, causing character-by-character parsing of arbitrarily large inputs. …

Sign in for full analysis, threat intelligence, and remediation guidance.

Share

CVE-2026-45292 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy