Skip to content

CVE-2026-78510: Microsoft Outlook Reading Pane Zero-Click Remote Code Execution

HERMES

SCORE DE MENACE HERMES & COMPROMISSION D'INFRASTRUCTURE MICROSOFT

Target: Microsoft Outlook (Reading Pane / Attachment Preview)
Confidence: 95%
99 / 100
CRITICAL

Measures real-world operational relevance, exploit weaponization, and active threat posture.

Dimension Breakdown
Exploitability 19 / 20
Threat Activity 18 / 20
Weaponization 18 / 20
Exposure 18 / 20
Prevalence 20 / 20
Impact 20 / 20
Exploit Maturity 18 / 20
Attack Chain Potential 20 / 20
⚖️ Divergence & Operational Rationale

Le score CVSS v3.1 attribue à la vulnérabilité CVE-2026-78510 le score de 9.8 (CRITICAL, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H). Le score de menace Hermes évalue le risque opérationnel à 99 (CRITICAL), 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.

🕸️ Connected Knowledge Graph & Provenance

CVE-2026-78510: Microsoft Outlook Reading Pane Zero-Click Remote Code ExecutionVULNERABILITY

Connected Nodes: 1
Active Relationships (Outgoing)
→ affectsPRODUCTMicrosoft Office & 365 Apps
98% VERY_HIGH

Software platform affected by security vulnerabilities and agentic attack patterns.

🔍 Why is this related? (Evidence & Provenance)

“Confirmed security vulnerability in Microsoft Office & 365 Apps documented in Hermes dossier.”

Supporting Verified Evidence:

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ètreSpécification TechniqueContexte Threat Intelligence
Identifiant CVECVE-2026-78510Bulletin officiel Microsoft MSRC Septembre 2026
Composant VulnérableMicrosoft Outlook (Reading Pane / Attachment Preview)Cœur de l’infrastructure Windows / Active Directory
Faiblesse CWECWE-122: Heap-based Buffer OverflowNormalisation mémoire et contrôle des flux d’exécution
Score CVSS v3.19.8 (CRITICAL)CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
Statut d’ExploitationArmement d’exploits en cours (Preuve de concept disponible)Priorité de remédiation maximale
Systèmes AffectésWindows 10, Windows 11 (22H2, 23H2, 24H2), Windows Server (2019, 2022, 2025)Parc client et serveur d’entreprise
Correctifs MicrosoftMises à 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”

Microsoft Outlook incorporates attachment preview handlers allowing users to inspect documents and graphics directly within the Reading Pane without launching standalone applications.

CVE-2026-78510 resides in the automatic instantiation of composite OLE storage previewers. When Outlook parses an incoming message body formatted with embedded MAPI property streams, it invokes the preview parser before user action. An integer truncation flaw during calculation of property buffer lengths causes an out-of-bounds write in the Outlook process heap (outlook.exe).

Because email delivery over SMTP triggers automatic rendering in the Reading Pane upon selection, this represents an unauthenticated, zero-click remote exploitation vector against enterprise corporate email users.

Analyse Conceptuelle du Code & Mécanisme de Corruption

Section titled “Analyse Conceptuelle du Code & Mécanisme de Corruption”
// Truncation flaw in Outlook OLE preview handler
HRESULT COlePreviewHandler::ParseMapiProperties(IStream* pStream) {
UINT32 StreamSize = GetStreamLength(pStream);
// VULNERABILITY: 32-bit StreamSize truncated to 16-bit integer!
UINT16 AllocLen = (UINT16)StreamSize;
PVOID pBuffer = CoTaskMemAlloc(AllocLen);
return pStream->Read(pBuffer, StreamSize, NULL); // Buffer overflow: writes StreamSize into AllocLen!
}

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) :

  1. Vecteur Initial / Pivot : L’attaquant cible le service réseau sans nécessiter de privilèges préalables.
  2. Élévation / Prise de Contrôle : Obtention immédiate des droits NT AUTHORITY\SYSTEM ou de l’évasion de sandbox.
  3. Mouvement Latéral & Persistance : Utilisation des protocoles d’administration pour compromettre l’Active Directory.

title: Suspicious Process Spawned by Microsoft Outlook (CVE-2026-78510)
id: c78510aa-2026-4017-8018-cve78510outl
status: stable
description: Detects command shells or script engines spawned directly by Microsoft Outlook.
author: Hermes Codex Threat Research
logsource:
category: process_creation
product: windows
detection:
selection:
ParentImage|endswith: '\outlook.exe'
Image|endswith:
- '\cmd.exe'
- '\powershell.exe'
- '\wscript.exe'
- '\cscript.exe'
- '\rundll32.exe'
condition: selection
level: critical

Requête de Chasse KQL (Microsoft Defender / Sentinel)

Section titled “Requête de Chasse KQL (Microsoft Defender / Sentinel)”
DeviceProcessEvents
| where InitiatingProcessFileName =~ "outlook.exe"
| where FileName in~ ("cmd.exe", "powershell.exe", "wscript.exe", "cscript.exe", "rundll32.exe")
| project Timestamp, DeviceName, FileName, ProcessCommandLine, AccountName

5. Remediation Strategy & Mitigation Measures

Section titled “5. Remediation Strategy & Mitigation Measures”

Apply Microsoft 365 / Office September 2026 updates immediately. Disable Reading Pane in Outlook and configure Outlook to display all email in plain text.

  1. Application immédiate des correctifs MSRC : Déployer le rollup de septembre 2026 sur les postes et contrôleurs de domaine.
  2. Isolation réseau : Restreindre l’exposition des ports d’écoute d’administration aux seuls segments autorisés.
  3. 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.