The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-39882

CVE-2026-39882: OpenTelemetry-Go DoS Vulnerability

CVE-2026-39882 is a denial of service vulnerability in OpenTelemetry-Go that allows memory exhaustion via uncapped HTTP response reading. This article covers the technical details, affected versions, and mitigation.

Published: April 10, 2026

CVE-2026-39882 Overview

OpenTelemetry-Go is the Go implementation of OpenTelemetry, a popular observability framework for cloud-native software. A memory exhaustion vulnerability exists in versions prior to 1.43.0 where the OTLP HTTP exporters for traces, metrics, and logs read the full HTTP response body into an in-memory bytes.Buffer without implementing a size cap. This flaw can be exploited when the configured collector endpoint is attacker-controlled or when a network attacker can perform a man-in-the-middle attack on the exporter connection, allowing them to send arbitrarily large responses that exhaust available memory.

Critical Impact

Attackers can cause denial of service by exhausting memory on systems using OpenTelemetry-Go OTLP HTTP exporters when they control or can intercept the collector endpoint connection.

Affected Products

  • OpenTelemetry-Go versions prior to 1.43.0
  • OTLP HTTP exporters (traces, metrics, logs)
  • Applications using go.opentelemetry.io/otel exporters with HTTP transport

Discovery Timeline

  • 2026-04-08 - CVE-2026-39882 published to NVD
  • 2026-04-09 - Last updated in NVD database

Technical Details for CVE-2026-39882

Vulnerability Analysis

This vulnerability is classified as CWE-789 (Memory Allocation with Excessive Size Value), representing a resource exhaustion condition. The flaw exists in the OTLP HTTP exporter implementations for traces, metrics, and logs within the OpenTelemetry-Go library.

When the exporter sends telemetry data to a collector endpoint, it reads the HTTP response body into a bytes.Buffer without any upper bound on the buffer size. In normal operation, collector responses are small, but an attacker who controls the endpoint or can intercept the connection via a man-in-the-middle position can return arbitrarily large response bodies.

The adjacent network attack vector indicates that exploitation requires the attacker to be on a network segment that allows them to either control the collector endpoint or intercept traffic between the application and the legitimate collector. The high attack complexity reflects the need for specific network positioning or endpoint control.

Root Cause

The root cause is the absence of a maximum size limit when reading HTTP response bodies in the OTLP exporters. The code reads the entire response into memory using bytes.Buffer without checking or limiting the content length. This unbounded read operation allows an attacker to force the application to allocate excessive amounts of memory by simply sending large HTTP response payloads.

Attack Vector

Exploitation requires an adjacent network position where the attacker can either:

  1. Control the collector endpoint - If the application is misconfigured to point to an attacker-controlled endpoint, or if DNS poisoning redirects the collector hostname to the attacker's server
  2. Man-in-the-middle the exporter connection - If the attacker can intercept traffic between the application and the legitimate collector, they can inject large responses

The attacker sends an HTTP response with an extremely large body when the OTLP exporter attempts to send telemetry data. The exporter reads this entire response into memory without bounds checking, eventually exhausting available memory and causing the application to crash or become unresponsive.

For detailed technical information about the vulnerability mechanism, see the GitHub Security Advisory.

Detection Methods for CVE-2026-39882

Indicators of Compromise

  • Abnormally high memory consumption in applications using OpenTelemetry-Go OTLP HTTP exporters
  • Application crashes due to out-of-memory conditions correlated with telemetry export operations
  • Unusual network traffic patterns or response sizes from collector endpoints
  • Evidence of DNS poisoning or routing changes affecting collector endpoint resolution

Detection Strategies

  • Monitor application memory usage patterns and alert on sudden memory growth during telemetry export operations
  • Implement network monitoring to detect unusually large HTTP responses from collector endpoints
  • Review application logs for out-of-memory errors or abnormal buffer allocation failures
  • Use dependency scanning tools to identify OpenTelemetry-Go versions prior to 1.43.0

Monitoring Recommendations

  • Deploy application performance monitoring to track memory allocation patterns in services using OpenTelemetry-Go
  • Configure network intrusion detection to alert on anomalous response sizes from known collector endpoints
  • Implement certificate pinning and TLS validation monitoring to detect potential MITM attempts on exporter connections

How to Mitigate CVE-2026-39882

Immediate Actions Required

  • Upgrade OpenTelemetry-Go to version 1.43.0 or later immediately
  • Audit collector endpoint configurations to ensure they point to trusted, properly secured endpoints
  • Review network security controls to prevent man-in-the-middle attacks on telemetry traffic
  • Implement resource limits (memory cgroups, container limits) as a defense-in-depth measure

Patch Information

The vulnerability is fixed in OpenTelemetry-Go version 1.43.0. The fix implements proper size limits when reading HTTP response bodies in the OTLP exporters. Organizations should update their dependencies to this version or later.

The fix was implemented in Pull Request #8108. Additional details are available in the GitHub Security Advisory GHSA-w8rr-5gcm-pp58.

Workarounds

  • If upgrading is not immediately possible, ensure collector endpoints are only accessible via secure, authenticated channels
  • Implement network segmentation to prevent adjacent network attacks on telemetry traffic
  • Use TLS with certificate validation and pinning to prevent man-in-the-middle attacks on exporter connections
  • Configure memory limits at the container or process level to prevent complete system exhaustion
bash
# Update OpenTelemetry-Go dependency
go get go.opentelemetry.io/otel@v1.43.0
go mod tidy

# Verify the updated version
go list -m go.opentelemetry.io/otel

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechOpentelemetry

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-789
  • Technical References
  • GitHub Security Advisory GHSA-w8rr-5gcm-pp58
  • Vendor Resources
  • GitHub Pull Request 8108
  • Related CVEs
  • CVE-2026-29181: OpenTelemetry-Go DoS Vulnerability

  • CVE-2023-47108: OpenTelemetry-Go Contrib DoS Vulnerability

  • CVE-2025-27513: OpenTelemetry .NET DoS Vulnerability

  • CVE-2024-36129: Opentelemetry Configgrpc DOS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English