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

CVE-2026-42899: Microsoft .NET DoS Vulnerability

CVE-2026-42899 is a denial of service flaw in ASP.NET Core that allows attackers to cause infinite loops over a network. This article covers the technical details, affected versions, security impact, and mitigation.

Published: May 17, 2026

CVE-2026-42899 Overview

CVE-2026-42899 is a denial-of-service vulnerability in ASP.NET Core caused by a loop with an unreachable exit condition. An unauthorized remote attacker can trigger an infinite loop over the network, exhausting CPU resources on the affected host. The flaw is tracked under CWE-835 (Loop with Unreachable Exit Condition).

The vulnerability affects Microsoft .NET deployments running on Windows, Linux, and macOS. No authentication or user interaction is required for exploitation, making any internet-facing ASP.NET Core service a potential target.

Critical Impact

An unauthenticated remote attacker can send crafted network requests that drive an ASP.NET Core worker into an infinite loop, producing sustained CPU exhaustion and service outage.

Affected Products

  • Microsoft .NET (ASP.NET Core runtime)
  • Microsoft Windows hosts running ASP.NET Core
  • Apple macOS and Linux hosts running ASP.NET Core

Discovery Timeline

  • 2026-05-12 - CVE-2026-42899 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-42899

Vulnerability Analysis

The issue resides in ASP.NET Core request-processing logic that contains a loop whose termination condition can never become true when fed specific attacker-controlled input. When a vulnerable code path is reached, the worker thread enters a non-terminating execution state. Subsequent valid requests queue behind the stalled thread, and additional malicious requests multiply the impact across the thread pool.

The weakness maps to CWE-835. It is a classic algorithmic availability defect rather than a memory-corruption bug. Confidentiality and integrity are unaffected, but availability impact is high because each successful request consumes a worker indefinitely.

Microsoft has published advisory details at the Microsoft Security Update CVE-2026-42899 guide.

Root Cause

The loop relies on a state variable that the parser fails to advance for certain malformed inputs. Because the exit condition depends on that variable, iteration continues forever. The defect is platform-independent and reproduces on every operating system where the affected .NET runtime executes.

Attack Vector

Exploitation requires only network reachability to an ASP.NET Core endpoint. The attacker submits a crafted HTTP request that traverses the defective code path. No credentials, cookies, or prior session state are needed. Repeated requests amplify resource exhaustion until the host becomes unresponsive.

No public proof-of-concept is listed in CISA KEV, ExploitDB, or referenced PoC repositories at the time of publication. The EPSS probability is 0.037%, reflecting low observed exploitation activity to date.

Detection Methods for CVE-2026-42899

Indicators of Compromise

  • Sustained high CPU utilization on dotnet or w3wp.exe worker processes without a corresponding rise in completed requests.
  • HTTP request queue length growing on Kestrel or IIS while throughput drops to near zero.
  • Repeated requests from a single source to ASP.NET Core endpoints immediately preceding the CPU spike.
  • Thread dumps showing many worker threads stuck inside the same ASP.NET Core parsing or routing function.

Detection Strategies

  • Baseline CPU and request-latency metrics per ASP.NET Core service and alert on deviations that persist beyond normal traffic bursts.
  • Correlate web access logs with process telemetry to identify request patterns that precede worker thread starvation.
  • Use behavioral endpoint telemetry, such as the Singularity Platform agent on Windows, Linux, and macOS hosts, to flag anomalous long-running dotnet threads.

Monitoring Recommendations

  • Forward Kestrel, IIS, and reverse-proxy logs into a centralized SIEM such as Singularity Data Lake for correlation with host metrics.
  • Track ASP.NET Core performance counters including Requests Queued, Requests Executing, and per-process CPU time.
  • Alert on health-probe failures and 5xx surges from upstream load balancers fronting .NET services.

How to Mitigate CVE-2026-42899

Immediate Actions Required

  • Apply the Microsoft .NET security update referenced in the Microsoft Security Update CVE-2026-42899 guide to all affected runtimes.
  • Inventory every host running ASP.NET Core across Windows, Linux, and macOS, and prioritize internet-facing services.
  • Restart dotnet worker processes after patching to ensure the vulnerable image is no longer resident in memory.

Patch Information

Microsoft has issued updated .NET runtime and SDK packages addressing the defective loop. Install the latest patch level for the .NET major version in use (for example, the current servicing release for .NET 8 or .NET 9). Container images that bundle the runtime must be rebuilt from updated base images and redeployed.

Workarounds

  • Place a web application firewall or reverse proxy in front of ASP.NET Core endpoints and enforce request size, timeout, and rate limits.
  • Configure Kestrel RequestTimeout and per-connection limits to terminate long-running requests automatically.
  • Restrict exposure of non-essential ASP.NET Core endpoints to trusted networks until patching is complete.
  • Monitor and auto-recycle worker processes that exceed CPU thresholds to limit the duration of any successful attack.
bash
# Configuration example: enforce request timeouts in ASP.NET Core (Program.cs)
builder.WebHost.ConfigureKestrel(options =>
{
    options.Limits.KeepAliveTimeout = TimeSpan.FromSeconds(30);
    options.Limits.RequestHeadersTimeout = TimeSpan.FromSeconds(10);
    options.Limits.MaxRequestBodySize = 1_048_576; // 1 MB
});

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechMicrosoft

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-835
  • Vendor Resources
  • Microsoft Security Update CVE-2026-42899
  • Related CVEs
  • CVE-2026-32203: .NET & Visual Studio DoS Vulnerability

  • CVE-2026-25168: Microsoft Graphics Component DoS Vulnerability

  • CVE-2026-25169: Microsoft Graphics Component DoS Flaw

  • CVE-2025-33056: Windows 10 1507 LSASRV 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