Skip to main content

OpenTelemetry eBPF Instrumentation CVE-2026-45680

| EUVDEUVD-2026-33954 HIGH
Uncontrolled Resource Consumption (CWE-400)
2026-05-18 https://github.com/open-telemetry/opentelemetry-ebpf-instrumentation GHSA-89c6-vpcj-7vj4
7.5
CVSS 3.1 · NVD
Share

Severity by source

NVD PRIMARY
7.5 HIGH
AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
vuln.today AI
3.7 LOW

Exploitation needs the non-default internal metrics exporter plus sustained high traffic (AC:H); no auth to OBI (PR:N); impact is CPU degradation, not full outage (A:L), with no C/I impact.

3.1 AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L
4.0 AV:N/AC:H/AT:P/PR:N/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N
SUSE
5.9 MEDIUM
AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H

Primary rating from NVD.

CVSS VectorNVD

Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
None
Availability
High

Lifecycle Timeline

6
Analysis Updated
Jul 22, 2026 - 19:35 vuln.today
v2 (cvss_changed)
Re-analysis Queued
Jul 22, 2026 - 19:22 vuln.today
cvss_changed
Severity Changed
Jul 22, 2026 - 19:22 NVD
MEDIUM HIGH
CVSS changed
Jul 22, 2026 - 19:22 NVD
5.9 (MEDIUM) 7.5 (HIGH)
Source Code Evidence Fetched
May 18, 2026 - 20:32 vuln.today
Analysis Generated
May 18, 2026 - 20:32 vuln.today

DescriptionNVD

Summary

OBI replays BPF probe hits into histogram observations by looping once per recorded run count. On busy systems, the run-count delta can become very large, causing the metrics exporter to spend excessive CPU time in a tight loop every collection interval.

Details

The vulnerable loop is in pkg/export/prom/prom_bpf.go. During each metrics tick, OBI iterates through probeMetrics and then executes for range metric.count, invoking BpfProbeLatency(...) for each individual recorded hit.

The count comes from calculateStats() in the same file, where deltaCount := bp.runCount - bp.prevRunCount is calculated and returned without any cap before the per-hit replay loop.

If probe activity spikes between scrape intervals, deltaCount can be very large. The exporter then spends CPU time proportional to the number of probe hits rather than the number of metric series.

PoC

Local testing with a small reproducer confirmed the replay-loop behavior and showed CPU scaling with the recorded hit count rather than the number of metric series.

Use a vulnerable build and enable internal metrics export:

bash
git checkout v0.0.0-rc.1+build
make build
export OTEL_EBPF_INTERNAL_METRICS_PROMETHEUS_PORT=9090
sudo ./bin/obi

Create a high-rate workload that repeatedly exercises traced probes. For example, generate HTTP traffic against an instrumented service:

bash
python3 -m http.server 18081

Then drive it:

bash
seq 1 500000 | xargs -P 128 -I{} curl -s http://127.0.0.1:18081 >/dev/null

At the same time, scrape metrics repeatedly:

bash
while true; do curl -s http://127.0.0.1:9090/metrics >/dev/null; done

On a vulnerable build, OBI CPU consumption rises sharply during the metrics loop because histogram updates are replayed once per counted probe execution. The effect is visible in top or pidstat and is most pronounced under sustained high request volume.

Impact

This is an availability issue in the internal metrics path. Any deployment that enables BPF internal metrics and traces busy workloads is affected. Attackers can indirectly consume CPU in the privileged agent by driving enough activity through instrumented services.

AnalysisAI

Uncontrolled CPU consumption in OpenTelemetry eBPF Instrumentation (OBI) before 0.9.0 lets attackers indirectly exhaust the privileged agent's CPU by driving high request volume through instrumented services. When internal BPF metrics export is enabled, each scrape replays every recorded probe hit into histogram observations via an unbounded loop, so CPU cost scales with traffic volume rather than metric-series count. EPSS is very low (0.04%, 12th percentile) and there is no active exploitation, but a proof-of-concept reproducer is published in the vendor advisory (GHSA-89c6-vpcj-7vj4).

Technical ContextAI

OBI is an eBPF-based auto-instrumentation agent in the OpenTelemetry ecosystem that attaches BPF probes to running services and exports telemetry (including internal self-metrics) to Prometheus. The root cause is CWE-400 (Uncontrolled Resource Consumption): in pkg/export/prom/prom_bpf.go, the exporter computes deltaCount := bp.runCount - bp.prevRunCount in calculateStats() and then executes for range metric.count, calling BpfProbeLatency(...) once per individual probe hit on every metrics tick. Because the delta is returned without any upper bound, a spike in probe activity between scrape intervals turns one metric series into an arbitrarily long tight loop. The affected package is the Go module go.opentelemetry.io/obi (CPE pkg:go/go.opentelemetry.io_obi).

RemediationAI

Vendor-released patch: 0.9.0 - upgrade OBI to v0.9.0 or later, which caps the replay behavior and ships alongside other security-hardening changes (release: https://github.com/open-telemetry/opentelemetry-ebpf-instrumentation/releases/tag/v0.9.0; advisory: https://github.com/open-telemetry/opentelemetry-ebpf-instrumentation/security/advisories/GHSA-89c6-vpcj-7vj4). If you cannot upgrade immediately, the most direct compensating control is to disable the internal BPF metrics exporter (do not set OTEL_EBPF_INTERNAL_METRICS_PROMETHEUS_PORT), which removes the vulnerable code path entirely at the cost of losing OBI self-observability metrics. Alternatively, restrict who can reach the internal metrics port and reduce scrape frequency to lower how often the replay loop runs, though this only limits and does not eliminate the CPU cost since the loop length is driven by probe-hit volume, not scrape count.

Vendor StatusVendor

SUSE

Severity: Medium
Product Status
SUSE Linux Enterprise Desktop 15 SP7 Fixed
SUSE Linux Enterprise High Performance Computing 15 SP7 Fixed
SUSE Linux Enterprise Module for Basesystem 15 SP7 Fixed
SUSE Linux Enterprise Server 15 SP7 Fixed
SUSE Linux Enterprise Server 16.0 Fixed

Share

CVE-2026-45680 vulnerability details – vuln.today

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