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
    • 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-29181

CVE-2026-29181: OpenTelemetry-Go DoS Vulnerability

CVE-2026-29181 is a denial-of-service flaw in OpenTelemetry-Go allowing attackers to amplify CPU usage via multi-value baggage headers. This article covers technical details, affected versions, impact, and mitigation.

Published: April 10, 2026

CVE-2026-29181 Overview

OpenTelemetry-Go, the Go implementation of the OpenTelemetry observability framework, contains a resource exhaustion vulnerability in versions 1.36.0 through 1.40.0. The vulnerability exists in the multi-value baggage header extraction mechanism, which parses each header field-value independently and aggregates members across values. This design flaw allows attackers to amplify CPU and memory allocations by sending numerous baggage: header lines, bypassing the 8192-byte per-value parse limit through header multiplication.

Critical Impact

Attackers can cause denial of service through CPU and memory exhaustion by exploiting the baggage header parsing aggregation behavior, even when each individual header value stays within allowed limits.

Affected Products

  • OpenTelemetry-Go versions 1.36.0 through 1.40.0
  • Applications using OpenTelemetry-Go baggage header parsing functionality
  • Services implementing OpenTelemetry distributed tracing with baggage context propagation

Discovery Timeline

  • 2026-04-07 - CVE CVE-2026-29181 published to NVD
  • 2026-04-08 - Last updated in NVD database

Technical Details for CVE-2026-29181

Vulnerability Analysis

This vulnerability is classified under CWE-770 (Allocation of Resources Without Limits or Throttling). The OpenTelemetry-Go library's baggage header parsing implementation processes each baggage: header field-value independently before aggregating all members across multiple header values. While the library enforces an 8192-byte limit on individual header values, it fails to limit the total number of header lines or the aggregate size of all baggage data.

An attacker can exploit this by sending HTTP requests containing many separate baggage: header lines, each within the per-value limit but collectively causing significant resource consumption. The parsing and aggregation process multiplies the resource impact, leading to CPU exhaustion from parsing operations and memory exhaustion from storing aggregated baggage members.

Root Cause

The root cause lies in the absence of aggregate resource limits in the baggage header extraction logic. The implementation correctly validates individual header values against the 8192-byte threshold but lacks controls for:

  • Maximum number of baggage: headers per request
  • Total aggregate size of all baggage data
  • Rate limiting on baggage parsing operations

This architectural oversight allows the per-header validation to be circumvented through header multiplication, effectively creating an amplification vector where small individual inputs combine to produce disproportionate resource consumption.

Attack Vector

The attack is network-accessible and requires no authentication or user interaction. An attacker sends specially crafted HTTP requests to any service utilizing the vulnerable OpenTelemetry-Go versions for baggage header parsing. By including numerous baggage: header lines (each under 8192 bytes), the attacker forces the target application to parse and aggregate all values, consuming excessive CPU cycles and memory allocations.

The vulnerability manifests in the baggage header extraction functionality where multiple header values are processed sequentially and their members are combined. Technical details and the specific code path affected can be found in the GitHub Security Advisory.

Detection Methods for CVE-2026-29181

Indicators of Compromise

  • Anomalous increase in HTTP requests containing multiple baggage: headers
  • Memory consumption spikes in services using OpenTelemetry-Go for context propagation
  • CPU utilization anomalies correlated with request processing
  • Application slowdowns or timeouts in OpenTelemetry-instrumented services

Detection Strategies

  • Monitor for HTTP requests with unusually high numbers of baggage: header lines
  • Implement request rate limiting and header count thresholds at the load balancer or WAF level
  • Track memory allocation patterns in OpenTelemetry-instrumented applications
  • Set up alerting for sudden increases in request processing latency

Monitoring Recommendations

  • Deploy application performance monitoring to track resource consumption during request processing
  • Configure logging to capture requests with excessive header counts for forensic analysis
  • Establish baseline metrics for normal baggage header usage patterns to detect anomalies
  • Integrate dependency scanning to identify applications running vulnerable OpenTelemetry-Go versions

How to Mitigate CVE-2026-29181

Immediate Actions Required

  • Upgrade OpenTelemetry-Go to version 1.41.0 or later immediately
  • Audit all applications using OpenTelemetry-Go versions 1.36.0 through 1.40.0
  • Implement temporary rate limiting on incoming requests at the network edge
  • Configure web application firewalls to limit the number of baggage: headers per request

Patch Information

The vulnerability is fixed in OpenTelemetry-Go version 1.41.0. Organizations should update their Go module dependencies to reference the patched version. The fix implements proper aggregate resource limits for baggage header parsing, preventing the amplification attack vector.

For detailed patch information and upgrade guidance, refer to the GitHub Security Advisory.

Workarounds

  • Deploy a reverse proxy or WAF rule to limit the number of baggage: headers accepted per request
  • Implement request filtering at the application gateway to reject requests with excessive headers
  • Consider temporarily disabling baggage context propagation if not critical to operations
  • Apply network-level rate limiting to reduce the impact of potential exploitation attempts
bash
# Example: Update Go module to patched version
go get go.opentelemetry.io/otel@v1.41.0
go mod tidy

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechOpentelemetry

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-770
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-39882: 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