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

CVE-2026-41310: OpenTelemetry Zipkin Exporter DOS Vulnerability

CVE-2026-41310 is a denial of service flaw in OpenTelemetry.Exporter.Zipkin that causes unbounded memory growth through remote endpoint cache overflow. This article covers technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-41310 Overview

CVE-2026-41310 affects the OpenTelemetry .NET Zipkin exporter (OpenTelemetry.Exporter.Zipkin) in versions 1.15.2 and earlier. The exporter caches remote endpoint data derived from span attributes without bounding cache key growth. Applications generating high-cardinality client or producer spans accumulate cache entries indefinitely, increasing process memory usage over time. The flaw is classified under CWE-400 (Uncontrolled Resource Consumption). Maintainers fixed the issue in version 1.15.3 by introducing a bounded, thread-safe Least Recently Used (LRU) cache with a fixed maximum size.

Critical Impact

Sustained unique remote endpoint values can exhaust process memory, degrading availability of .NET services that export telemetry through Zipkin.

Affected Products

  • OpenTelemetry .NET Zipkin Exporter (OpenTelemetry.Exporter.Zipkin) versions ≤ 1.15.2
  • .NET applications using Zipkin export for client spans
  • .NET applications using Zipkin export for producer spans

Discovery Timeline

  • 2026-05-06 - CVE-2026-41310 published to the National Vulnerability Database (NVD)
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-41310

Vulnerability Analysis

The Zipkin exporter maintains a cache that maps span attribute values to remote endpoint objects. The cache implementation accepts unbounded growth of cache keys derived directly from span attributes. When applications generate spans containing high-cardinality attribute values, such as unique request identifiers, customer identifiers, or dynamic URLs, each unique value produces a new cache entry.

Client spans and producer spans are particularly affected because their remote endpoint values often derive from request-specific data. Long-running services experience steady memory growth as the cache retains every unique key encountered. The application process eventually consumes excessive memory, triggering garbage collection pressure, paging, or out-of-memory termination.

Root Cause

The root cause is missing bounds enforcement on the remote endpoint cache. The original implementation lacked an eviction policy, allowing the cache to grow proportionally to the number of unique remote endpoint values observed during the process lifetime. Version 1.15.3 replaces this structure with a thread-safe LRU cache that enforces a fixed maximum size and evicts least recently used entries.

Attack Vector

An attacker with the ability to influence span attribute values can amplify memory growth by generating requests that produce unique remote endpoint values. The vulnerability is reachable over the network because the attacker only needs to drive instrumented operations on the target service. No authentication or user interaction is required. The result is reduced availability rather than data compromise.

The vulnerability mechanism is described in the GitHub Security Advisory GHSA-88hf-wf7h-7w4m and the corresponding fix is implemented in Pull Request #7081.

Detection Methods for CVE-2026-41310

Indicators of Compromise

  • Steady, monotonic growth of working set or private bytes in .NET processes that export to Zipkin
  • Increasing managed heap size attributable to OpenTelemetry.Exporter.Zipkin allocations
  • Rising garbage collection frequency and Gen2 collection counts in services using Zipkin export
  • Out-of-memory exceptions or process restarts correlated with sustained span throughput

Detection Strategies

  • Inventory .NET applications and identify those referencing OpenTelemetry.Exporter.Zipkin at version 1.15.2 or earlier
  • Profile managed heap snapshots to confirm retained objects originate from the Zipkin exporter remote endpoint cache
  • Correlate memory growth with span cardinality metrics for client and producer span types

Monitoring Recommendations

  • Track per-process memory metrics with thresholds aligned to expected workload baselines
  • Alert on .NET process restarts triggered by memory pressure on hosts running instrumented services
  • Monitor span attribute cardinality at ingest to identify producers emitting unbounded unique values

How to Mitigate CVE-2026-41310

Immediate Actions Required

  • Upgrade OpenTelemetry.Exporter.Zipkin to version 1.15.3 or later across all affected .NET applications
  • Review span instrumentation and reduce the cardinality of attributes contributing to remote endpoint identification
  • Restart long-running services after upgrade to release accumulated cache memory

Patch Information

The fix is included in OpenTelemetry.Exporter.Zipkin version 1.15.3. The patch introduces a bounded, thread-safe LRU cache for remote endpoints with a fixed maximum size. Implementation details are available in Pull Request #7081 on the open-telemetry/opentelemetry-dotnet repository.

Workarounds

  • Switch to an alternative OpenTelemetry exporter, such as the OTLP exporter, until the upgrade is applied
  • Sanitize or normalize high-cardinality span attributes before they reach the exporter
  • Recycle affected processes on a schedule to bound cumulative memory growth until patching completes
bash
# Upgrade the affected NuGet package to the patched version
dotnet add package OpenTelemetry.Exporter.Zipkin --version 1.15.3

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:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-400
  • Technical References
  • GitHub Pull Request

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-41484: OpenTelemetry OneCollector DOS Vulnerability

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

  • CVE-2026-41078: OpenTelemetry Jaeger Exporter DoS Flaw

  • 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