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-40182

CVE-2026-40182: OpenTelemetry dotnet DoS Vulnerability

CVE-2026-40182 is a denial of service flaw in OpenTelemetry dotnet that causes memory exhaustion through unbounded response reads. This post covers technical details, affected versions 1.13.1-1.15.1, and mitigation.

Published: April 23, 2026

CVE-2026-40182 Overview

OpenTelemetry .NET is a telemetry framework for .NET applications that enables observability through metrics, traces, and logs. A memory exhaustion vulnerability exists in versions 1.13.1 through 1.15.1 when exporting telemetry data to a backend or collector over gRPC or HTTP using the OpenTelemetry Protocol (OTLP) format. When a request results in an unsuccessful response (HTTP 4xx or 5xx), the response body is read into memory without any upper bound on the number of bytes consumed. This unbounded memory allocation can lead to memory exhaustion in the consuming application.

Critical Impact

Applications using vulnerable OpenTelemetry .NET versions may experience denial of service through memory exhaustion if an attacker controls the collector endpoint or can perform a man-in-the-middle attack on the connection.

Affected Products

  • OpenTelemetry .NET versions 1.13.1 to 1.15.1
  • Applications using OTLP exporter over gRPC
  • Applications using OTLP exporter over HTTP

Discovery Timeline

  • April 23, 2026 - CVE CVE-2026-40182 published to NVD
  • April 23, 2026 - Last updated in NVD database

Technical Details for CVE-2026-40182

Vulnerability Analysis

The vulnerability resides in the OTLP exporter component of OpenTelemetry .NET. When telemetry data is exported to a backend collector and the collector returns an error response (HTTP status codes 4xx or 5xx), the exporter reads the entire response body into memory. The fundamental flaw is the absence of any size limit or boundary check on this memory read operation.

In a typical scenario, error responses from legitimate collectors are small, containing brief error messages. However, if an attacker controls the collector endpoint or can intercept and modify network traffic through a man-in-the-middle attack, they can return an arbitrarily large response body. The application will attempt to allocate memory for the entire response, potentially consuming all available memory and causing the application to crash or become unresponsive.

This vulnerability is classified under CWE-789 (Memory Allocation with Excessive Size Value), which describes scenarios where memory allocation occurs based on untrusted input without proper validation of the size parameter.

Root Cause

The root cause is improper handling of HTTP response bodies when processing error responses from OTLP collectors. The code responsible for reading error responses does not implement a maximum size limit, allowing unbounded memory allocation based on attacker-controlled data. This represents a failure to validate input size before memory allocation operations.

Attack Vector

The attack requires adjacent network access, meaning the attacker must either control the configured collector endpoint or be positioned to intercept network traffic between the application and its legitimate collector. The attack scenario involves:

  1. The vulnerable application attempts to export telemetry data to a collector endpoint
  2. The attacker-controlled or compromised endpoint returns an HTTP 4xx or 5xx error response
  3. The response body contains an extremely large payload (potentially gigabytes in size)
  4. The application reads the entire response into memory without bounds checking
  5. Memory exhaustion occurs, causing denial of service

The vulnerability mechanism can be understood as follows: when the OTLP exporter receives an error response, it attempts to read the response body to extract error details. Without a size limit on this operation, the memory allocated grows proportionally to the attacker-controlled response size. For detailed technical implementation, refer to the GitHub Security Advisory GHSA-q834-8qmm-v933.

Detection Methods for CVE-2026-40182

Indicators of Compromise

  • Sudden spikes in memory consumption by applications using OpenTelemetry .NET
  • Out-of-memory exceptions in application logs related to telemetry export operations
  • Unusual network traffic patterns between applications and telemetry collector endpoints
  • Application crashes or unresponsiveness following failed telemetry export attempts

Detection Strategies

  • Monitor application memory usage for abnormal growth patterns during telemetry export operations
  • Implement network traffic analysis to detect unusually large HTTP responses from collector endpoints
  • Review application logs for repeated HTTP 4xx or 5xx responses from OTLP collectors
  • Audit configured collector endpoints to ensure they are trusted and not potentially attacker-controlled

Monitoring Recommendations

  • Configure memory usage alerts for applications utilizing OpenTelemetry .NET exporters
  • Implement network monitoring between applications and collector endpoints for anomalous traffic
  • Enable detailed logging for OTLP export operations to capture error response patterns
  • Regularly review and validate the integrity of collector endpoint configurations

How to Mitigate CVE-2026-40182

Immediate Actions Required

  • Upgrade OpenTelemetry .NET to version 1.15.2 or later immediately
  • Audit all applications using OpenTelemetry .NET to identify vulnerable versions
  • Verify that collector endpoints are legitimate and properly secured
  • Implement network security controls to prevent man-in-the-middle attacks on telemetry traffic

Patch Information

The vulnerability is fixed in OpenTelemetry .NET version 1.15.2. The fix implements a maximum size limit on response body reads when processing error responses from OTLP collectors. Organizations should upgrade to this version or later to remediate the vulnerability. Additional technical details about the fix can be found in GitHub Pull Request #7017 and GitHub Pull Request #6564.

Workarounds

  • Ensure collector endpoints are only configured to trusted, organization-controlled infrastructure
  • Implement TLS/mTLS for all connections to collector endpoints to prevent man-in-the-middle attacks
  • Deploy network segmentation to limit exposure of telemetry traffic to adjacent network attackers
  • Consider implementing application-level memory limits as a defense-in-depth measure
bash
# Upgrade OpenTelemetry .NET packages to patched version
dotnet add package OpenTelemetry --version 1.15.2
dotnet add package OpenTelemetry.Exporter.OpenTelemetryProtocol --version 1.15.2

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

  • 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 Pull Request #6564

  • GitHub Pull Request #7017

  • GitHub Security Advisory GHSA-q834-8qmm-v933

  • GitHub Pull Request #781
  • Related CVEs
  • CVE-2026-42348: OpenTelemetry OpAMP Client DoS Vulnerability

  • CVE-2026-41484: OpenTelemetry OneCollector DOS Vulnerability

  • CVE-2026-41483: OpenTelemetry Azure Resources DOS Attack

  • CVE-2026-41310: OpenTelemetry Zipkin Exporter DOS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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