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

CVE-2026-41484: OpenTelemetry OneCollector DOS Vulnerability

CVE-2026-41484 is a denial of service vulnerability in OpenTelemetry.Exporter.OneCollector that enables unbounded memory consumption through malicious HTTP responses. This article covers technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-41484 Overview

CVE-2026-41484 affects the OpenTelemetry.Exporter.OneCollector .NET library, which exports telemetry to a OneCollector back-end over HTTP. Versions 1.15.0 and earlier read the entire HTTP error response body into memory without an upper bound. An attacker controlling the configured endpoint, or performing a man-in-the-middle attack on adjacent network traffic, can return an oversized response body. This triggers unbounded heap allocation in the consuming .NET process, producing transient memory pressure, garbage-collection stalls, or an OutOfMemoryException that terminates the application. The flaw is categorized as uncontrolled resource consumption [CWE-770] and is fixed in version 1.15.1.

Critical Impact

Attackers with adjacent-network access or endpoint control can crash .NET processes consuming OpenTelemetry OneCollector telemetry by returning oversized HTTP error responses.

Affected Products

  • OpenTelemetry.Exporter.OneCollector for .NET, versions 1.15.0 and earlier
  • .NET applications using the OneCollector exporter from the opentelemetry-dotnet-contrib repository
  • Telemetry pipelines forwarding traces, metrics, or logs to OneCollector back-ends

Discovery Timeline

  • 2026-05-06 - CVE-2026-41484 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-41484

Vulnerability Analysis

The vulnerability resides in the HttpJsonPostTransport class within the OneCollector exporter. When a POST request to the configured back-end returns an unsuccessful HTTP 4xx or 5xx response, the transport reads the entire response body into a buffer so the error content can be surfaced in operator logs. The implementation does not enforce a maximum read size, content-length cap, or streaming boundary on the response body. A malicious or compromised endpoint can therefore stream an arbitrarily large payload that the .NET runtime allocates onto the managed heap.

The resulting allocation pattern produces three observable failure modes. Large transient allocations cause garbage-collection pauses that stall telemetry processing threads. Sustained pressure pushes the process into Gen 2 collections and Large Object Heap fragmentation. In sufficiently constrained environments, the runtime raises OutOfMemoryException and terminates the host process, removing observability from production workloads.

Root Cause

The root cause is missing input size validation on a network-sourced response stream. The error-handling path prioritized log fidelity over resource bounding, violating defensive limits expected for any externally controlled byte stream [CWE-770].

Attack Vector

Exploitation requires the attacker to control the configured OneCollector endpoint or to intercept traffic between the .NET application and the legitimate endpoint. The CVSS vector indicates an adjacent-network attack with high attack complexity and no privileges or user interaction required. The impact is limited to availability — confidentiality and integrity are not affected. Refer to the GitHub Security Advisory GHSA-55m9-299j-53c7 for the maintainer analysis.

Detection Methods for CVE-2026-41484

Indicators of Compromise

  • Unusual spikes in managed heap size or Large Object Heap allocations within .NET processes hosting the OneCollector exporter.
  • Repeated OutOfMemoryException events or unexpected process restarts coinciding with telemetry export failures.
  • HTTP 4xx or 5xx responses from the configured OneCollector endpoint with abnormally large Content-Length values or chunked transfer encoding.

Detection Strategies

  • Inventory .NET applications referencing OpenTelemetry.Exporter.OneCollector package versions 1.15.0 or earlier through software composition analysis.
  • Monitor outbound TLS sessions to OneCollector endpoints for response sizes that exceed normal telemetry acknowledgment volumes.
  • Correlate .NET runtime exception telemetry with exporter log entries containing truncated or oversized error response bodies.

Monitoring Recommendations

  • Enable .NET runtime metrics (gc-heap-size, gen-2-gc-count, loh-size) and alert on sudden growth in processes performing telemetry export.
  • Capture network flow telemetry between application hosts and OneCollector endpoints to baseline expected response sizes.
  • Log and alert on exporter retry storms, which often precede memory exhaustion driven by malicious response bodies.

How to Mitigate CVE-2026-41484

Immediate Actions Required

  • Upgrade OpenTelemetry.Exporter.OneCollector to version 1.15.1, which caps error response body reads at 4 MiB.
  • Audit configured OneCollector endpoints and remove any that are not under trusted administrative control.
  • Enforce mutual TLS (mTLS) between exporters and OneCollector back-ends to prevent man-in-the-middle interception on adjacent networks.

Patch Information

The maintainers fixed the issue in version 1.15.1 by limiting the number of bytes read from the response body in error conditions to 4 MiB. The code change is documented in GitHub Pull Request #4117. Consumers should update package references in project files and redeploy affected services.

Workarounds

  • Apply firewall rules that restrict outbound connections from application hosts to known OneCollector endpoint IP ranges only.
  • Deploy a service mesh or egress proxy that enforces response size limits on traffic to telemetry back-ends.
  • Configure mTLS between the exporter and the collector so unauthorized intermediaries cannot inject crafted responses.
bash
# Update the OneCollector exporter package to the patched version
dotnet add package OpenTelemetry.Exporter.OneCollector --version 1.15.1

# Verify the resolved version in the project
dotnet list package | grep OneCollector

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-770
  • Technical References
  • GitHub Pull Request

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-41483: OpenTelemetry Azure Resources DOS Attack

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

  • 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