CVE-2026-63529 Overview
CVE-2026-63529 is an out-of-bounds read vulnerability in Microsoft Office that permits local information disclosure. An unauthorized attacker can read memory beyond an allocated buffer by tricking a user into opening a crafted document. The flaw is classified under [CWE-125] (Out-of-bounds Read) and affects the confidentiality of data processed by Microsoft Office.
Exploitation requires local access and user interaction, which reduces the practical attack surface. No public proof-of-concept exists and the vulnerability is not listed on the CISA Known Exploited Vulnerabilities catalog. Microsoft published the advisory on August 11, 2026.
Critical Impact
Successful exploitation discloses sensitive process memory contents from Microsoft Office, potentially exposing credentials, document fragments, or address layout data usable for chained attacks.
Affected Products
- Microsoft Office (specific versions listed in the vendor advisory)
- See the Microsoft Security Update CVE-2026-63529 advisory for the authoritative build list
Discovery Timeline
- 2026-08-11 - CVE-2026-63529 published to NVD
- 2026-08-11 - Microsoft security update released
- 2026-08-11 - Last updated in NVD database
Technical Details for CVE-2026-63529
Vulnerability Analysis
The vulnerability is an out-of-bounds read within Microsoft Office file parsing logic. When Office processes a specially crafted document, the parser reads memory outside the intended buffer boundary. The excess bytes are then incorporated into internal structures or rendered content, allowing an attacker to observe process memory that should remain isolated.
Information disclosure vulnerabilities of this class typically leak heap contents adjacent to the target buffer. Attackers use the leaked bytes to recover sensitive artifacts or to defeat address space layout randomization (ASLR). The Microsoft advisory identifies the impact as confidentiality-only, with no integrity or availability effects.
Root Cause
The root cause is missing or incorrect bounds validation when parsing an untrusted document structure. Office reads a length or offset value from the file, then uses it to index into a memory region without confirming the target address lies within the allocated buffer. This is a canonical [CWE-125] pattern.
Attack Vector
The attack vector is local and requires user interaction. An attacker delivers a malicious document through email, a file share, or a web download. When the target opens the file in a vulnerable Office application, the parser triggers the out-of-bounds read and the leaked data can be exfiltrated through document content, embedded scripting, or subsequent interaction.
No verified proof-of-concept code is available for CVE-2026-63529. Refer to the Microsoft Security Update CVE-2026-63529 advisory for vendor-supplied technical details.
Detection Methods for CVE-2026-63529
Indicators of Compromise
- Office documents containing malformed structural fields, oversized length values, or corrupted stream headers that trigger parser anomalies
- Unexpected Office child processes spawning after a document open event, particularly network-capable binaries
- Outbound network connections from WINWORD.EXE, EXCEL.EXE, or POWERPNT.EXE to unfamiliar destinations shortly after document open
Detection Strategies
- Enable Microsoft Office telemetry and forward document open events, macro execution, and crash reports to a central log platform
- Alert on Office process crashes with exception codes consistent with access violations during file parsing
- Inspect inbound Office attachments with content-aware sandboxing to observe parser behavior before delivery
Monitoring Recommendations
- Monitor endpoints for high volumes of document open failures or repeated Office crashes tied to a single user or file hash
- Track email gateway logs for documents matching known malicious hashes referenced in Microsoft advisories
- Correlate document open events with subsequent process creation, script host activity, and outbound network requests
How to Mitigate CVE-2026-63529
Immediate Actions Required
- Apply the Microsoft security update referenced in the MSRC advisory for CVE-2026-63529
- Inventory endpoints running Microsoft Office and prioritize patch deployment for users who routinely open external documents
- Instruct users to avoid opening Office attachments from unverified senders until patches are applied
Patch Information
Microsoft released a security update on August 11, 2026 that resolves the out-of-bounds read. Deploy the update through Microsoft Update, Windows Server Update Services (WSUS), Microsoft Intune, or your standard patch management workflow. Verify installation by checking Office build numbers against the fixed versions listed in the vendor advisory.
Workarounds
- Enable Protected View for documents originating from the internet and other untrusted locations
- Configure Office File Block policies to prevent opening legacy or unnecessary file formats
- Use Attack Surface Reduction (ASR) rules to block Office applications from creating child processes and injecting into other processes
# Enforce Protected View for files from the internet (Group Policy registry key)
reg add "HKCU\Software\Microsoft\Office\16.0\Word\Security\ProtectedView" /v DisableInternetFilesInPV /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\PowerPoint\Security\ProtectedView" /v DisableInternetFilesInPV /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.

