CVE-2026-55054 Overview
CVE-2026-55054 is an out-of-bounds read vulnerability [CWE-125] in Microsoft Office Excel that allows an unauthorized attacker to disclose information over a network. The flaw affects multiple Microsoft Office product families, including Microsoft 365 Apps, Excel 2016, Office 2019, Office LTSC 2021, Office LTSC 2024, Office Online Server, and Office 365, on both Windows and macOS platforms. Exploitation requires user interaction, typically opening a crafted Excel document, and can result in the exposure of sensitive process memory to an attacker.
Critical Impact
A remote attacker can read out-of-bounds memory contents from an Excel process by convincing a user to open a malicious workbook, potentially leaking sensitive data used to build follow-on exploits.
Affected Products
- Microsoft 365 Apps (Enterprise x64 and x86)
- Microsoft Excel 2016, Microsoft Office 2019, Office LTSC 2021, Office LTSC 2024 (Windows and macOS)
- Microsoft Office Online Server and Microsoft Office 365
Discovery Timeline
- 2026-07-14 - CVE-2026-55054 published to NVD
- 2026-07-15 - Last updated in NVD database
Technical Details for CVE-2026-55054
Vulnerability Analysis
The vulnerability is an out-of-bounds read [CWE-125] within Microsoft Excel's parsing logic for spreadsheet content. When Excel processes a specially crafted file, the application reads memory outside the bounds of an allocated buffer. The attacker does not gain code execution or the ability to modify data through this issue alone, but disclosed memory may contain pointers, tokens, or document fragments useful to an attacker.
Because the affected surface includes Office Online Server and Microsoft 365 Apps, exploitation scenarios extend beyond traditional desktop use to hybrid environments where Excel content is rendered server-side. Confidentiality is directly impacted, while integrity and availability remain unaffected.
Root Cause
The root cause is missing or insufficient bounds validation when Excel parses structured fields inside a workbook. A crafted length or offset value causes the parser to read past the end of the intended buffer. This class of defect is common in complex binary and OOXML parsing code where record sizes are attacker-controlled.
Attack Vector
The attack vector is network-based but requires user interaction. An attacker delivers a malicious Excel document through email, a shared drive, a collaboration platform, or a web download. When the user opens the document in a vulnerable version of Excel, the parser triggers the out-of-bounds read and the attacker obtains disclosed information through a channel controlled by the document, such as embedded content or a callback. No verified public exploit or proof-of-concept is currently referenced for this CVE.
Detection Methods for CVE-2026-55054
Indicators of Compromise
- Excel documents arriving from untrusted senders that contain malformed or unusually structured records, particularly in workbook parts of OOXML archives.
- EXCEL.EXE process telemetry showing crashes, exception handlers firing, or unexpected outbound network connections shortly after opening an attachment.
- Office Online Server rendering failures or memory access exceptions tied to specific uploaded workbooks.
Detection Strategies
- Inspect inbound email attachments and file uploads for Excel documents with anomalous record sizes, oversized structures, or invalid OOXML schemas using content disarm and reconstruction or sandbox detonation.
- Alert on EXCEL.EXE spawning network connections to previously unseen domains immediately after document open events.
- Correlate Office telemetry with EDR process tree data to identify user-initiated document opens followed by suspicious child process or DNS activity.
Monitoring Recommendations
- Enable Microsoft Office diagnostic logging and forward events to a centralized SIEM for correlation with endpoint telemetry.
- Monitor Office Online Server logs for repeated rendering exceptions on user-supplied content.
- Track patch compliance across all Office channels (Current, Monthly Enterprise, Semi-Annual, and LTSC) to identify unpatched endpoints.
How to Mitigate CVE-2026-55054
Immediate Actions Required
- Apply the Microsoft security update referenced in the Microsoft Security Update CVE-2026-55054 advisory to all affected Office installations.
- Prioritize patching endpoints and servers that routinely process externally sourced Excel files, including mail gateways rendering previews and Office Online Server instances.
- Instruct users to avoid opening Excel documents from untrusted or unexpected sources until patches are deployed.
Patch Information
Microsoft has published fixes through the Microsoft Security Response Center. Refer to the Microsoft Security Update CVE-2026-55054 advisory for the specific Click-to-Run and MSI update packages corresponding to each affected channel and platform, including macOS builds of Office 2021 and Office 2024.
Workarounds
- Enforce Protected View for files originating from the internet and other untrusted locations through Group Policy or Intune configuration profiles.
- Block or quarantine Excel attachments at the mail gateway for high-risk user groups until patches are validated.
- Disable preview handlers for Excel documents in Windows Explorer and Outlook to reduce automatic parsing exposure.
# Configuration example: enforce Protected View via Group Policy registry keys
reg add "HKCU\Software\Policies\Microsoft\Office\16.0\Excel\Security\ProtectedView" /v DisableInternetFilesInPV /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Policies\Microsoft\Office\16.0\Excel\Security\ProtectedView" /v DisableAttachmentsInPV /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Policies\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.

