CVE-2025-50172 Overview
CVE-2025-50172 is a denial-of-service vulnerability in the Windows DirectX graphics subsystem. The flaw stems from allocation of resources without limits or throttling [CWE-770]. An authenticated attacker with low privileges can send crafted requests over a network to exhaust system resources and disrupt service availability.
Microsoft rates the issue at CVSS 6.5 with confidentiality and integrity unaffected. The vulnerability impacts a broad range of client and server Windows releases, including Windows 10, Windows 11, and Windows Server 2019 through 2025.
Critical Impact
An authorized network attacker can trigger high-availability impact against affected Windows systems through unbounded resource consumption in DirectX.
Affected Products
- Microsoft Windows 10 (1809, 21H2, 22H2)
- Microsoft Windows 11 (22H2, 23H2, 24H2)
- Microsoft Windows Server 2019, 2022, 2022 23H2, and 2025
Discovery Timeline
- 2025-08-12 - CVE-2025-50172 published to NVD
- 2026-06-17 - Last updated in NVD database
Technical Details for CVE-2025-50172
Vulnerability Analysis
The vulnerability resides in Windows DirectX, the graphics application programming interface (API) used for multimedia and hardware-accelerated rendering. DirectX components process requests without enforcing proper limits on resource allocation. An authenticated attacker with network access can submit repeated or malformed requests that force the subsystem to allocate memory, handles, or compute resources beyond safe thresholds.
Sustained exploitation degrades system responsiveness or causes the target host to stop servicing legitimate requests. The vulnerability does not expose data or allow modification of system state. Impact is limited to availability, but the attack surface spans both Windows workstations and Windows Server roles that expose DirectX-dependent functionality across a network.
Root Cause
The root cause is missing enforcement of allocation limits and throttling in DirectX request handling, categorized as [CWE-770] (Allocation of Resources Without Limits or Throttling). Without bounds on how many resources a single caller can request, an attacker consumes enough memory or kernel objects to starve the host.
Attack Vector
Exploitation requires network access and valid low-privilege credentials on the target. No user interaction is required. The attacker sends crafted traffic to a service that invokes vulnerable DirectX code paths, driving the host into resource exhaustion until legitimate workloads fail.
No public proof-of-concept or in-the-wild exploitation has been reported. Refer to the Microsoft Security Update for CVE-2025-50172 for authoritative technical guidance.
Detection Methods for CVE-2025-50172
Indicators of Compromise
- Sustained spikes in memory, handle count, or GPU resource utilization on Windows hosts with no corresponding legitimate workload.
- Repeated authenticated requests from a single source to services that invoke DirectX rendering or compute paths.
- Application or service crashes referencing DirectX components in Windows Event Logs.
Detection Strategies
- Baseline normal DirectX resource utilization and alert on statistical anomalies in memory or handle allocation.
- Correlate authentication events with subsequent resource exhaustion on the same host to identify low-privilege abuse.
- Monitor Windows Reliability and Performance counters for graphics subsystem exceptions on servers running DirectX-dependent roles.
Monitoring Recommendations
- Ingest Windows Event Logs, performance counters, and authentication telemetry into a centralized analytics platform for correlation.
- Track patch state across all affected Windows client and server SKUs and alert on hosts missing the August 2025 security update.
- Watch for repeated session establishment from the same authenticated principal followed by service degradation.
How to Mitigate CVE-2025-50172
Immediate Actions Required
- Apply the Microsoft security update for CVE-2025-50172 to all affected Windows 10, Windows 11, and Windows Server systems.
- Prioritize patching on servers exposing DirectX-dependent workloads or remote graphics services to authenticated users.
- Review and tighten which accounts have network authentication rights to affected hosts.
Patch Information
Microsoft released a security update addressing CVE-2025-50172 through the Microsoft Update Guide. Deploy the fix using Windows Update, Windows Server Update Services (WSUS), Microsoft Intune, or your standard patch management tooling. Full details are available in the Microsoft Security Update for CVE-2025-50172.
Workarounds
- Restrict network access to Windows hosts exposing DirectX-dependent services using host and network firewalls.
- Enforce least-privilege access so that only necessary accounts hold authenticated network access to affected systems.
- Apply rate limiting or connection throttling at network boundaries where feasible to reduce exposure until patches are deployed.
# Configuration example - verify patch installation status on Windows hosts
Get-HotFix | Where-Object { $_.InstalledOn -ge (Get-Date '2025-08-12') } | Format-Table -AutoSize
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

