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

CVE-2026-41483: OpenTelemetry Azure Resources DOS Attack

CVE-2026-41483 is a denial of service vulnerability in OpenTelemetry.Resources.Azure that allows unbounded memory allocation through malicious metadata responses. This article covers technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-41483 Overview

CVE-2026-41483 affects OpenTelemetry.Resources.Azure, the .NET resource detector for Azure environments. The AzureVmMetaDataRequestor class issues HTTP requests to the Azure VM instance metadata service and reads the response body into memory without enforcing a size limit. An attacker who controls the configured endpoint, or who can intercept traffic via a man-in-the-middle attack, can return an arbitrarily large response body. This triggers unbounded heap allocation in the consuming process, producing memory pressure, garbage-collection stalls, or an OutOfMemoryException that terminates the process. The flaw is tracked under [CWE-770] (Allocation of Resources Without Limits or Throttling).

Critical Impact

Unbounded memory allocation in the Azure VM metadata detector enables remote denial-of-service against .NET applications using affected OpenTelemetry contrib packages.

Affected Products

  • OpenTelemetry.Resources.Azure versions 1.15.0-beta.1 and earlier
  • .NET applications consuming the Azure VM resource detector
  • OpenTelemetry .NET Contrib distributions bundling the affected package

Discovery Timeline

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

Technical Details for CVE-2026-41483

Vulnerability Analysis

The vulnerability resides in the AzureVmMetaDataRequestor class within the OpenTelemetry .NET Contrib repository. The component contacts the Azure Instance Metadata Service (IMDS) at runtime to enrich telemetry with VM resource attributes. The response handler reads the entire HTTP body into memory in a single buffered operation. No content-length validation, streaming boundary, or maximum-size guard is applied before allocation.

When the response body is large, the .NET runtime attempts to grow managed buffers on the heap to accommodate the data. This causes transient memory pressure, blocking garbage-collection cycles, or an outright OutOfMemoryException that crashes the host process. Long-running services that load the resource detector at startup or refresh metadata periodically inherit the same exposure.

Root Cause

The root cause is missing input size enforcement on untrusted HTTP response data, classified as [CWE-770]. The detector trusts the metadata endpoint to behave correctly and does not impose an upper bound on buffered bytes. When the endpoint is attacker-controlled or reachable through an unauthenticated network path, the trust assumption breaks.

Attack Vector

Exploitation requires the attacker to influence traffic to the metadata endpoint. Two paths apply: control of the configured endpoint URL, or interception of the network path between the application and the IMDS host. The attack is network-based with high complexity, since the adversary must occupy a privileged network position or alter detector configuration. No authentication or user interaction is required, and successful exploitation produces denial-of-service through process termination or sustained memory exhaustion.

No public proof-of-concept exploit code is available. The mechanism is described in prose: the attacker returns an HTTP response with a body sized to exhaust available managed heap, causing the consuming process to allocate until the runtime aborts. See the GitHub Security Advisory for technical details.

Detection Methods for CVE-2026-41483

Indicators of Compromise

  • Repeated OutOfMemoryException events in .NET application logs originating from OpenTelemetry.Resources.Azure stack frames
  • Unexpected high memory allocation rates or extended garbage-collection pauses shortly after process startup or telemetry initialization
  • HTTP responses from the Azure IMDS endpoint (169.254.169.254) with unusually large Content-Length values

Detection Strategies

  • Inventory .NET applications and identify those referencing OpenTelemetry.Resources.Azure at version 1.15.0-beta.1 or earlier through dependency scanning
  • Instrument the host runtime to alert on rapid managed-heap growth during resource detector initialization
  • Inspect outbound traffic to the IMDS endpoint for response sizes that exceed expected metadata payloads, which are typically a few kilobytes

Monitoring Recommendations

  • Track .NET process restart frequency and crash dumps containing OpenTelemetry resource detector frames
  • Forward application logs and runtime metrics to a centralized analytics platform for correlation across services
  • Monitor for configuration changes that redirect the IMDS endpoint to non-default hosts

How to Mitigate CVE-2026-41483

Immediate Actions Required

  • Upgrade OpenTelemetry.Resources.Azure to version 1.15.1-beta.1, which streams responses and rejects bodies larger than 4 MiB
  • Audit application configuration for custom IMDS endpoint overrides and revert to the documented default where appropriate
  • Restrict outbound network paths from production workloads so only the legitimate Azure metadata endpoint is reachable

Patch Information

The issue is fixed in OpenTelemetry.Resources.Azure version 1.15.1-beta.1. The patch streams HTTP responses rather than buffering them entirely in memory and ignores responses larger than 4 MiB. Review the GitHub Pull Request for the code change and the GitHub Security Advisory for vendor guidance.

Workarounds

  • Disable the Azure VM resource detector in OpenTelemetry configuration until the upgrade is deployed
  • Enforce mutual TLS (mTLS) or service-mesh policies on the path to the metadata endpoint to prevent man-in-the-middle interception
  • Apply firewall rules that restrict metadata traffic to the link-local IMDS address 169.254.169.254 and block alternate destinations
bash
# Configuration example
# Update package reference in your .csproj to the fixed version
dotnet add package OpenTelemetry.Resources.Azure --version 1.15.1-beta.1

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 Pull Request

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

  • 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