CVE-2025-22224
VMware ESXi and Workstation TOCTOU Race Condition Vulnerability
Description
CVE-2025-22224 is a critical TOCTOU (Time-of-Check Time-of-Use) vulnerability in VMware ESXi and Workstation that leads to an out-of-bounds write, enabling code execution as the virtual machine's VMX process on the host. A malicious actor with local administrative privileges on a virtual machine can exploit this race condition to escape the guest VM boundary and execute arbitrary code in the VMX process context. With a CVSS v3.1 base score of 9.3 and an EPSS score of 59.97% at the 98th percentile, this is among the most actively exploited vulnerabilities in the VMware ecosystem. CISA has added CVE-2025-22224 to the Known Exploited Vulnerabilities catalog with a remediation deadline of March 25, 2025.
KEV Information
CVSS Score
CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:HOpen in CalculatorAffected Products
| Vendor | Product | Version |
|---|---|---|
| vmware | esxi | 7.0; 8.0 |
| vmware | cloud foundation | - |
| vmware | telco cloud infrastructure | 2.2; 2.5; 2.7; 3.0 |
| vmware | telco cloud platform | 2.0; 2.5; 2.7; 3.0; 4.0; 4.0.1; 5.0 |
| vmware | workstation | >= 17.0, < 17.6.3 |
Multiple CVSS Assessments
CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H
CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H
References
Weakness Type
CWE-367: Time-of-Check Time-of-Use (TOCTOU) Race Condition
CVE-2025-22224 is classified as a TOCTOU race condition, a type of software flaw where a resource's state is checked at one point in time but used at a later point, and the resource can be modified between the check and the use. In VMware ESXi and Workstation, the vulnerability occurs when the hypervisor validates a condition and then uses the result of that validation after a window during which an attacker can alter the underlying data. This race condition leads to an out-of-bounds write, as the stale validation result permits a write operation to an unintended memory location.
Learn more: CWE-367 — Time-of-Check Time-of-Use (TOCTOU) Race Condition
CWE-787: Out-of-bounds Write
The TOCTOU race condition in CVE-2025-22224 ultimately results in an out-of-bounds write, where data is written beyond the boundaries of an allocated buffer. This enables the attacker to corrupt adjacent memory structures and hijack execution flow within the VMX process, achieving arbitrary code execution on the host.
Learn more: CWE-787 — Out-of-bounds Write
Impact Analysis
CVE-2025-22224 represents a critical threat to any organization running VMware ESXi or Workstation. The vulnerability requires local access (AV:L) with low attack complexity (AC:L) and no privileges or user interaction at the hypervisor level (PR:N/UI:N), though the attacker needs administrative access within the virtual machine. The scope is changed (S:C), meaning exploitation in the guest VM impacts the host system beyond the vulnerable component's boundary. Confidentiality (High): Achieving code execution as the VMX process grants access to host-level memory and resources, potentially exposing data from all virtual machines on the host. Integrity (High): VMX-level code execution enables modification of virtual machine configurations, host system files, and hypervisor state. The attacker can inject malicious code, alter disk images, and manipulate network traffic for all VMs. Availability (High): The attacker can terminate virtual machines, crash the host, or use the VMX process as a stepping stone for deeper hypervisor compromise via CVE-2025-22225. The EPSS score of 59.97% at the 98th percentile places this among the most likely-to-be-exploited vulnerabilities currently tracked, and the ransomware association is listed as unknown but the exploitation chain with CVE-2025-22225 (confirmed ransomware use) makes it a critical concern.
Exploit Maturity
CVE-2025-22224 exhibits confirmed active exploitation with critical exploit maturity. CISA has added this vulnerability to the Known Exploited Vulnerabilities catalog, mandating remediation by March 25, 2025. The EPSS score of 59.97% at the 98th percentile is exceptionally high, indicating that this vulnerability is among the top 2% most likely to be exploited across all tracked CVEs. The vulnerability serves as the initial entry point in the VMware exploitation chain — CVE-2025-22224 provides code execution within the VMX process, CVE-2025-22226 leaks host memory for reconnaissance, and CVE-2025-22225 enables the final hypervisor kernel escape. While the ransomware association for this specific CVE is listed as unknown, its role as the gateway to CVE-2025-22225 (confirmed ransomware use) makes it equally critical. Broadcom has published a security advisory with full details on affected products and patches.
Remediation
-
Apply vendor patches as an emergency priority. Broadcom has released patches addressing CVE-2025-22224. Update VMware Workstation to version 17.6.3 or later. For ESXi 7.0 and 8.0, apply the latest security patches as documented in VMSA-2025-0004. Given the near-60% EPSS exploitation probability, this must be treated with maximum urgency.
-
Patch the complete vulnerability chain. CVE-2025-22224 must be patched alongside CVE-2025-22225 and CVE-2025-22226, as all three form a connected exploitation chain. Patching only one leaves the attack path viable through the remaining vulnerabilities.
-
Update Cloud Foundation and Telco Cloud deployments. VMware Cloud Foundation, Telco Cloud Infrastructure versions 2.2 through 3.0, and Telco Cloud Platform versions 2.0 through 5.0 all require corresponding async patches from Broadcom.
-
Restrict virtual machine administrative access. Since exploitation requires local administrative privileges within a VM, minimize the number of users with VM-level admin access. Implement strong authentication for VM administrative interfaces and audit administrative actions.
-
Deploy hypervisor monitoring and backup strategies. Implement integrity monitoring for ESXi hosts to detect unauthorized modifications. Ensure VM backups and hypervisor configurations are stored in isolated, offline locations to enable recovery from potential ransomware attacks that leverage this vulnerability chain.
Technical Details
CVE-2025-22224 is a TOCTOU (Time-of-Check Time-of-Use) race condition in VMware ESXi and Workstation that leads to an out-of-bounds write. The CVSS v3.1 vector string CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H reflects local access with maximum impact across all three security objectives and changed scope, indicating cross-boundary impact from guest to host. The vulnerability exists in the mechanism that manages data transfers between the guest virtual machine and the VMX process on the host. A TOCTOU race condition occurs when the system checks a condition (such as buffer size or memory bounds) and then uses the result of that check at a later time, during which an attacker has modified the underlying data. In this case, the attacker can win the race between the validation check and the subsequent memory operation, causing the system to write data to a location outside the intended buffer. This out-of-bounds write corrupts VMX process memory structures, enabling the attacker to overwrite function pointers or other control data to redirect execution flow. The result is arbitrary code execution within the VMX process, which runs on the host with privileges sufficient to manage the virtual machine. Although the attack complexity is rated low (AC:L), the TOCTOU race can be reliably won because the attacker controls the timing from within the guest VM, making exploitation deterministic in practice.
Frequently Asked Questions
Is CVE-2025-22224 being actively exploited?
Yes. CISA has confirmed active exploitation by adding CVE-2025-22224 to the Known Exploited Vulnerabilities catalog with a remediation deadline of March 25, 2025. The EPSS score of 59.97% at the 98th percentile indicates this is among the most actively exploited vulnerabilities currently tracked.
What products are affected by CVE-2025-22224?
CVE-2025-22224 affects VMware ESXi versions 7.0 and 8.0, VMware Workstation versions 17.0 through 17.6.2, VMware Cloud Foundation, and VMware Telco Cloud Infrastructure and Platform across multiple versions. VMware Fusion is not affected by this specific vulnerability.
How does CVE-2025-22224 enable virtual machine escape?
The TOCTOU race condition allows an attacker with VM-level administrative privileges to win a race between a security check and a subsequent memory operation, causing an out-of-bounds write in the VMX process. This corrupts VMX memory and enables code execution on the host. Combined with CVE-2025-22225, this leads to full hypervisor kernel escape.
How severe is CVE-2025-22224?
CVE-2025-22224 is rated Critical with a CVSS v3.1 base score of 9.3 out of 10. The changed scope means exploitation within a guest VM compromises the host system. With an EPSS score of nearly 60%, it is among the most dangerous actively exploited vulnerabilities in virtualization software.
Need Help With Vulnerability Management?
Our security experts can help you prioritize and remediate vulnerabilities effectively.