CVE-2026-68808 Overview
CVE-2026-68808 is an out-of-bounds read vulnerability [CWE-125] in Microsoft Office Excel. An unauthorized attacker can exploit the flaw locally to disclose sensitive information from process memory. Exploitation requires user interaction, typically by convincing a victim to open a crafted spreadsheet file.
The vulnerability affects multiple Excel and Microsoft Office builds across Windows and macOS, including Microsoft 365 Apps, Excel 2016, Office 2019, Office 2021 LTSC, and Office 2024 LTSC. Microsoft published the advisory on August 11, 2026.
Critical Impact
Successful exploitation allows local information disclosure by reading memory outside allocated buffers when Excel parses a malicious file.
Affected Products
- Microsoft 365 Apps (Enterprise x64/x86) and Microsoft 365 for macOS
- Microsoft Excel 2016 (x64/x86) and Microsoft Office 2019 (x64/x86)
- Microsoft Office 2021 LTSC and Office 2024 LTSC (x64/x86 and macOS)
Discovery Timeline
- 2026-08-11 - CVE-2026-68808 published to NVD
- 2026-08-13 - Last updated in NVD database
Technical Details for CVE-2026-68808
Vulnerability Analysis
The issue is an out-of-bounds read [CWE-125] in Microsoft Office Excel. When Excel parses a specially crafted document, the application reads data past the end of an allocated buffer. The result is disclosure of adjacent memory contents to the attacker-controlled processing path.
Exploitation is local and requires user interaction. The attacker must deliver a malicious workbook and convince a user to open it in a vulnerable Excel client. There is no impact on integrity or availability, and no privileges are required prior to the user action. The current EPSS probability is 0.345% (27.364 percentile), indicating limited observed exploitation activity.
Root Cause
The defect stems from missing or incorrect bounds validation in Excel's file parsing logic. When processing malformed structures in a spreadsheet, the parser dereferences memory beyond the intended buffer boundary. Sensitive contents such as heap metadata, pointers, or residual data can then be surfaced through error paths, embedded objects, or subsequent computations rendered to the user.
Attack Vector
The attack vector is local (AV:L) with required user interaction (UI:R). An attacker distributes a weaponized .xls or .xlsx file via email, file share, or web download. Upon opening in a vulnerable Excel version, the parser triggers the out-of-bounds read, leaking memory contents that may include cryptographic material, session data, or process layout information usable to bypass mitigations in a follow-on attack.
No verified proof-of-concept exploit is publicly available. Refer to the Microsoft CVE-2026-68808 Advisory for parsing component details.
Detection Methods for CVE-2026-68808
Indicators of Compromise
- Unexpected Excel process crashes or Watson error reports referencing EXCEL.EXE following opening of externally sourced spreadsheets.
- Delivery of .xls, .xlsx, .xlsm, or .xlsb attachments from untrusted senders, especially with unusual embedded objects or malformed OLE streams.
- Anomalous child processes spawned by EXCEL.EXE shortly after document open events.
Detection Strategies
- Monitor endpoint telemetry for Excel process crashes coinciding with document open events from email or browser-downloaded files.
- Inspect mail gateway and web proxy logs for spreadsheet attachments containing malformed BIFF, OOXML, or embedded object structures.
- Correlate document open events with subsequent outbound network connections or memory dump artifacts.
Monitoring Recommendations
- Enable audit logging of Microsoft Office application crashes via Windows Event Log (Application log, source Microsoft Office).
- Ingest endpoint process telemetry into a centralized data lake to hunt for anomalous Excel behavior across the fleet.
- Deploy attachment sandboxing on mail gateways to detonate Excel files before delivery.
How to Mitigate CVE-2026-68808
Immediate Actions Required
- Apply the Microsoft security update referenced in the Microsoft CVE-2026-68808 Advisory across all affected Excel and Office installations.
- Prioritize patching of endpoints handling untrusted external documents, including finance, HR, and executive workstations.
- Enforce Protected View and Office File Block policies for files originating from the internet or email.
Patch Information
Microsoft has released updates for Microsoft 365 Apps, Excel 2016, Office 2019, Office 2021 LTSC, and Office 2024 LTSC on both Windows and macOS. Consult the Microsoft CVE-2026-68808 Advisory for build numbers and deployment channels.
Workarounds
- Configure Group Policy to open documents from untrusted locations in Protected View, blocking active content by default.
- Use the Office File Block policy to restrict opening of legacy Excel binary formats where feasible.
- Restrict execution of spreadsheet macros and embedded content through Attack Surface Reduction (ASR) rules on Windows endpoints.
# Configuration example: enforce Protected View via registry (Excel 2016+)
reg add "HKCU\Software\Microsoft\Office\16.0\Excel\Security\ProtectedView" /v DisableInternetFilesInPV /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Office\16.0\Excel\Security\ProtectedView" /v DisableAttachmentsInPV /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Office\16.0\Excel\Security\ProtectedView" /v DisableUnsafeLocationsInPV /t REG_DWORD /d 0 /f
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

