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

CVE-2026-41078: OpenTelemetry Jaeger Exporter DoS Flaw

CVE-2026-41078 is a denial of service vulnerability in OpenTelemetry Jaeger Exporter caused by memory pressure from pooled-list sizing. This article covers the technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-41078 Overview

OpenTelemetry .NET is a telemetry framework for .NET applications. A memory exhaustion vulnerability exists in OpenTelemetry.Exporter.Jaeger version 1.6.0-rc.1 and earlier that can lead to denial of service conditions. The vulnerability stems from how the internal pooled-list sizing mechanism handles large span/tag sets, where the enlarged allocation size is reused for subsequent allocations without proper bounds management.

Critical Impact

Under high-cardinality or attacker-influenced telemetry input, this vulnerability can cause sustained memory pressure, leading to increased memory consumption and potential denial of service. The deprecated status of OpenTelemetry.Exporter.Jaeger means no fix will be released.

Affected Products

  • OpenTelemetry.Exporter.Jaeger version 1.6.0-rc.1 and earlier
  • Applications using the deprecated Jaeger exporter component
  • .NET applications with high-cardinality telemetry configurations

Discovery Timeline

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

Technical Details for CVE-2026-41078

Vulnerability Analysis

This vulnerability is classified under CWE-770 (Allocation of Resources Without Limits or Throttling). The issue manifests in the internal memory pooling mechanism of the Jaeger exporter component, where pooled-list structures grow dynamically based on observed span and tag set sizes without implementing appropriate size limits or cleanup procedures.

When the exporter processes telemetry data with large span or tag sets, the internal pooled-list grows to accommodate this data. The critical flaw is that this enlarged memory allocation persists and is reused for subsequent allocations, even when smaller allocations would suffice. Over time, especially under conditions with high-cardinality input or attacker-controlled telemetry data, this leads to cumulative memory consumption that degrades application performance and can ultimately cause denial of service.

The network-based attack vector with high attack complexity indicates that while exploitation requires network access, specific conditions must be met for successful exploitation, such as the ability to influence telemetry data or sustained high-cardinality input patterns.

Root Cause

The root cause lies in improper resource management within the OpenTelemetry.Exporter.Jaeger component's memory pooling implementation. Specifically, the pooled-list data structure lacks:

  1. Maximum size limits for pooled allocations
  2. Automatic shrinking or cleanup of oversized pool entries
  3. Memory pressure detection and mitigation

When a large span or tag set is processed, the pool expands to accommodate it. However, the implementation fails to reduce the allocation size when smaller data sets are subsequently processed, causing the inflated memory footprint to persist indefinitely.

Attack Vector

An attacker with the ability to influence telemetry data can exploit this vulnerability by injecting high-cardinality telemetry input. This could occur through:

  1. Direct telemetry injection: If an attacker can submit telemetry data to an application using the vulnerable exporter
  2. High-cardinality data manipulation: Generating requests that result in spans with unusually large tag sets
  3. Sustained resource pressure: Repeatedly triggering large allocations to progressively exhaust available memory

The attack requires network access and the ability to influence telemetry data either directly or indirectly through application functionality that generates telemetry. The high attack complexity reflects the need for specific conditions and sustained effort to achieve denial of service.

The vulnerability mechanism involves the pooled-list sizing behavior where memory allocations grow based on observed data but fail to shrink, leading to resource exhaustion. For detailed technical information, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-41078

Indicators of Compromise

  • Unusual memory growth patterns in applications using OpenTelemetry Jaeger exporter
  • Progressively increasing memory consumption without corresponding workload increase
  • Application performance degradation over time correlating with telemetry processing
  • Out-of-memory exceptions or crashes in long-running applications

Detection Strategies

  • Monitor application memory metrics for sustained growth patterns indicative of memory leaks or exhaustion
  • Implement alerting on memory utilization thresholds for applications using OpenTelemetry.Exporter.Jaeger
  • Review application dependencies for presence of deprecated Jaeger exporter packages
  • Analyze garbage collection metrics for abnormal allocation patterns

Monitoring Recommendations

  • Enable memory profiling for applications using OpenTelemetry .NET exporters
  • Configure memory utilization alerts at 70%, 85%, and 95% thresholds
  • Monitor telemetry cardinality metrics to identify unusually high-cardinality span or tag patterns
  • Implement application health checks that include memory pressure indicators

How to Mitigate CVE-2026-41078

Immediate Actions Required

  • Migrate from the deprecated OpenTelemetry.Exporter.Jaeger to supported OTLP exporters
  • Review and update application telemetry configurations to use OpenTelemetry.Exporter.OpenTelemetryProtocol
  • Implement input validation and cardinality limits for user-influenced telemetry data
  • Configure memory limits and resource constraints for affected applications

Patch Information

No patch will be released for this vulnerability as OpenTelemetry.Exporter.Jaeger was deprecated in 2023. The official recommendation is to migrate to the OpenTelemetry Protocol (OTLP) exporter, which is the actively maintained and supported exporter for OpenTelemetry .NET.

Migration guidance is available in the GitHub Security Advisory.

Workarounds

  • Replace OpenTelemetry.Exporter.Jaeger with OpenTelemetry.Exporter.OpenTelemetryProtocol in application dependencies
  • Implement application-level memory constraints using container orchestration or runtime configuration
  • Apply rate limiting to telemetry data sources that could be influenced by external actors
  • Configure cardinality limits on span attributes and tags to prevent oversized allocations
bash
# Configuration example - Migrate to OTLP Exporter
# Remove deprecated Jaeger exporter
dotnet remove package OpenTelemetry.Exporter.Jaeger

# Install OTLP exporter
dotnet add package OpenTelemetry.Exporter.OpenTelemetryProtocol

# Configure OTLP endpoint in application settings
# Set OTEL_EXPORTER_OTLP_ENDPOINT environment variable
export OTEL_EXPORTER_OTLP_ENDPOINT="http://your-collector:4317"

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.9

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-770
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-41484: OpenTelemetry OneCollector DOS Vulnerability

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

  • CVE-2026-41310: OpenTelemetry Zipkin Exporter DOS Vulnerability

  • CVE-2026-40894: OpenTelemetry dotnet 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