CVE-2026-72961: Windows Hyper-V Guest-to-Host Elevation of Privilege
SCORE DE MENACE HERMES & COMPROMISSION D'INFRASTRUCTURE MICROSOFT
Target:Windows Hyper-V Hypervisor Core Le score CVSS v3.1 attribue à la vulnérabilité CVE-2026-72961 le score de 8.2 (HIGH, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:N). Le score de menace Hermes évalue le risque opérationnel à 93 (HIGH), prenant en compte son rôle critique dans les écosystèmes d'entreprise Windows et sa pertinence dans la vague du Patch Tuesday de septembre 2026.
CVE-2026-72961: Windows Hyper-V Guest-to-Host Elevation of PrivilegeVULNERABILITY
Software platform affected by security vulnerabilities and agentic attack patterns.
🔍 Why is this related? (Evidence & Provenance)
“Confirmed security vulnerability in Microsoft Windows & Windows Server documented in Hermes dossier.”
- [vulnerability_report]
- [government_confirmation]CISA verified active exploitation in the wild and mandated federal remediation deadline in KEV entry. — Source: Cybersecurity & Infrastructure Security Agency (CISA): CISA Adds CVE-2026-59822 to Known Exploited Vulnerabilities Catalog (Reliability: VERY_HIGH)
1. Technical Context & Affected Software Matrix
Section titled “1. Technical Context & Affected Software Matrix”Cette vulnérabilité s’inscrit dans la mise à jour historique du Patch Tuesday de septembre 2026 publiée par Microsoft, adressant un total record de 972 vulnérabilités dont deux zero-days exploitées dans la nature et 113 failles critiques.
| Paramètre | Spécification Technique | Contexte Threat Intelligence |
|---|---|---|
| Identifiant CVE | CVE-2026-72961 | Bulletin officiel Microsoft MSRC Septembre 2026 |
| Composant Vulnérable | Windows Hyper-V Hypervisor Core | Cœur de l’infrastructure Windows / Active Directory |
| Faiblesse CWE | CWE-20: Improper Input Validation | Normalisation mémoire et contrôle des flux d’exécution |
| Score CVSS v3.1 | 8.2 (HIGH) | CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:N |
| Statut d’Exploitation | Armement d’exploits en cours (Preuve de concept disponible) | Priorité de remédiation maximale |
| Systèmes Affectés | Windows 10, Windows 11 (22H2, 23H2, 24H2), Windows Server (2019, 2022, 2025) | Parc client et serveur d’entreprise |
| Correctifs Microsoft | Mises à jour cumulatives de septembre 2026 (KB5043064, KB5043076, KB5043080) | Déploiement d’urgence recommandé |
2. In-Depth Technical Decomposition & Root Cause
Section titled “2. In-Depth Technical Decomposition & Root Cause”Hyper-V implements synthetic MSRs to facilitate hypercalls and paravirtualized clock/interrupt synchronization between guests and the hypervisor.
CVE-2026-72961 arises from improper validation of hypercall inputs when writing to synthetic interrupt control registers (HV_X64_MSR_SINT). By issuing a sequence of hypercalls with misaligned guest physical addresses (GPA), a guest VM can induce the hypervisor into mapping host memory regions into the guest address space.
This read/write primitive over host memory enables the guest VM to extract memory contents of co-resident virtual machines and achieve hypervisor-level code execution.
Analyse Conceptuelle du Code & Mécanisme de Corruption
Section titled “Analyse Conceptuelle du Code & Mécanisme de Corruption”// Hypercall issue leading to GPA mismappingHV_STATUS HvSetSyntheticInterruptRegister(HV_PARTITION_ID PartitionId, UINT32 SintIndex, UINT64 SintValue) { // BUG: Missing page alignment validation on GPA if ((SintValue & 0xFFF) != 0) { // Unaligned GPA causes page table mapping overlap with root partition memory! } return HvMapSharedInterruptPage(PartitionId, SintValue);}3. Attack Vectors, Exploitation & Threat Scenarios
Section titled “3. Attack Vectors, Exploitation & Threat Scenarios”Dans le cadre d’une cyberattaque d’entreprise, cette vulnérabilité constitue un maillon charnière de la chaîne d’intrusion (MITRE ATT&CK) :
- Vecteur Initial / Pivot : L’attaquant cible le service réseau sans nécessiter de privilèges préalables.
- Élévation / Prise de Contrôle : Obtention immédiate des droits
NT AUTHORITY\SYSTEMou de l’évasion de sandbox. - Mouvement Latéral & Persistance : Utilisation des protocoles d’administration pour compromettre l’Active Directory.
4. Forensic Triage & Threat Hunting
Section titled “4. Forensic Triage & Threat Hunting”Règle de Détection Sigma
Section titled “Règle de Détection Sigma”title: Hyper-V Synthetic MSR Abuse Attempt (CVE-2026-72961)id: b72961aa-2026-4014-8015-cve72961msrstatus: stabledescription: Detects abnormal hypervisor warnings indicating unauthorized MSR configuration attempts.author: Hermes Codex Threat Researchlogsource: category: system product: windowsdetection: selection: Provider_Name: 'Microsoft-Windows-Hyper-V-Hypervisor' EventID: 16384 condition: selectionlevel: highRequête de Chasse KQL (Microsoft Defender / Sentinel)
Section titled “Requête de Chasse KQL (Microsoft Defender / Sentinel)”Event| where Source == "Microsoft-Windows-Hyper-V-Hypervisor"| where EventID in (16384, 16385)| project TimeGenerated, Computer, RenderedDescription5. Remediation Strategy & Mitigation Measures
Section titled “5. Remediation Strategy & Mitigation Measures”Apply September 2026 security updates to all virtualization hosts.
- Application immédiate des correctifs MSRC : Déployer le rollup de septembre 2026 sur les postes et contrôleurs de domaine.
- Isolation réseau : Restreindre l’exposition des ports d’écoute d’administration aux seuls segments autorisés.
- Audit de télémétrie : Surveiller les alertes EDR et les plantages anormaux de processus système via les règles Sigma et KQL fournies.