CVE-2026-70327 Overview
CVE-2026-70327 is an out-of-bounds read vulnerability [CWE-125] in Microsoft Office Excel. An unauthorized attacker can disclose information over a network by convincing a user to open a specially crafted file. The flaw affects multiple supported Office releases, including Microsoft 365 Apps, Office 2019, Office 2021, and Office 2024 across Windows and macOS. Exploitation requires user interaction, which typically occurs through phishing campaigns that deliver malicious spreadsheets. Successful exploitation exposes process memory contents, potentially leaking sensitive data such as heap addresses, document fragments, or credential material handled by Excel.
Critical Impact
A remote attacker can read memory outside allocated buffers in Excel, disclosing sensitive information when a user opens a crafted spreadsheet.
Affected Products
- Microsoft 365 Apps (Enterprise, x64 and x86)
- Microsoft Excel 2016 (x64 and x86)
- Microsoft 365 for macOS
- Microsoft Office 2019 (x64 and x86)
- Microsoft Office 2021 LTSC (Windows and macOS)
- Microsoft Office 2024 LTSC (Windows and macOS)
Discovery Timeline
- 2026-08-11 - CVE-2026-70327 published to NVD
- 2026-08-13 - Last updated in NVD database
Technical Details for CVE-2026-70327
Vulnerability Analysis
The vulnerability is an out-of-bounds read in the Excel file parsing logic. When Excel processes a malformed workbook, the parser reads memory beyond the bounds of an allocated buffer. The read data can then be reflected into a document field or leaked to the attacker through embedded content channels. The issue affects confidentiality only; integrity and availability of the target system are not directly impacted. The attack completes over the network because the crafted file is typically delivered by email or web download.
Root Cause
The underlying defect is classified as CWE-125 (Out-of-bounds Read). Excel's parser fails to validate a length, offset, or index field within a proprietary Office structure before dereferencing a pointer into an internal buffer. When the input crosses the intended boundary, the parser returns adjacent heap or stack contents rather than valid document data.
Attack Vector
An attacker crafts a malicious .xlsx, .xls, or related Excel document containing malformed structures that trigger the out-of-bounds read. The attacker delivers the file through phishing, a compromised web page, or a shared drive. When the user opens the file in a vulnerable Excel build, the parser leaks memory contents. Attackers can weaponize the leak to defeat address space layout randomization (ASLR) or to harvest fragments of previously opened documents.
No public proof-of-concept code is available at the time of publication. See the Microsoft CVE-2026-70327 Advisory for vendor technical details.
Detection Methods for CVE-2026-70327
Indicators of Compromise
- Inbound email attachments containing Excel documents from unverified senders, particularly files with unusual structure sizes or embedded objects.
- Excel process (EXCEL.EXE) making outbound network connections shortly after opening a document.
- Crash dumps or Windows Error Reporting entries citing access violations in Excel modules following file open.
Detection Strategies
- Inspect Office telemetry and Microsoft Defender alerts for anomalous Excel file open events tied to external senders.
- Deploy YARA rules for malformed BIFF or OOXML structures targeting known parser fields.
- Correlate endpoint EDR telemetry with mail gateway logs to identify the delivery vector for suspicious spreadsheets.
Monitoring Recommendations
- Monitor Excel child processes and outbound connections following document open events.
- Alert on Office applications loading unsigned or unusual DLLs during spreadsheet parsing.
- Track patch compliance across Microsoft 365 Apps, Office 2019, 2021, and 2024 endpoints using configuration management data.
How to Mitigate CVE-2026-70327
Immediate Actions Required
- Apply the Microsoft security updates for Excel referenced in the MSRC advisory to all affected Office and Microsoft 365 Apps installations.
- Enable Protected View and Application Guard for Office to contain untrusted spreadsheets.
- Block or quarantine Excel attachments from external senders at the mail gateway until patching is complete.
Patch Information
Microsoft has released updates addressing CVE-2026-70327 across Microsoft 365 Apps, Office 2019, Office 2021 LTSC, Office 2024 LTSC, and Excel 2016 on both Windows and macOS. Administrators should consult the Microsoft CVE-2026-70327 Advisory for build numbers and deployment guidance. Update through Microsoft Update, Click-to-Run channels, or WSUS according to the organization's servicing model.
Workarounds
- Enforce Protected View for files originating from the internet and other untrusted locations via Group Policy.
- Restrict opening of legacy Excel formats (.xls, .xlsb) through File Block policies where operationally feasible.
- Provide targeted user awareness training focused on unsolicited spreadsheet attachments.
# Configuration example: enforce Protected View via registry (Office 365 / Excel)
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 DisableInternetFilesInPV /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.

