CVE-2026-63533 Overview
CVE-2026-63533 is a heap-based buffer overflow vulnerability in Microsoft Office that allows an unauthorized attacker to execute code locally. The flaw is categorized under [CWE-122] (Heap-based Buffer Overflow) and requires user interaction to trigger. An attacker who successfully exploits this issue can execute arbitrary code in the context of the current user.
The vulnerability affects Microsoft Office and is delivered through a malicious document that a user must open. Successful exploitation compromises confidentiality, integrity, and availability of the affected system.
Critical Impact
Local code execution in the user context via a crafted Office document, enabling malware installation, data theft, and lateral movement.
Affected Products
- Microsoft Office (specific versions listed in the vendor advisory)
- See the Microsoft Security Update Guide for CVE-2026-63533 for the full product and build matrix
Discovery Timeline
- 2026-08-11 - CVE-2026-63533 published to NVD
- 2026-08-12 - Last updated in NVD database
Technical Details for CVE-2026-63533
Vulnerability Analysis
The vulnerability is a heap-based buffer overflow in Microsoft Office. An attacker crafts a malicious Office document that, when opened by a targeted user, causes Office to write beyond the bounds of an allocated heap buffer. The overflow corrupts adjacent heap structures and can be leveraged to hijack control flow, resulting in arbitrary code execution.
Execution occurs in the security context of the user running Office. If the user holds administrative privileges, the attacker effectively gains full control of the host. Because the attack vector is local and requires user interaction, phishing and social engineering are the expected delivery methods.
Microsoft classifies the issue in the Office product family. The vulnerability does not require prior authentication to the target system, but it does require the victim to open the attacker-supplied file.
Root Cause
The root cause is improper validation of input size or structure when Office parses a specific document element and copies data into a heap-allocated buffer. When the source data exceeds the destination allocation, adjacent heap metadata and object pointers are corrupted. Refer to the Microsoft Security Update for CVE-2026-63533 for vendor-supplied technical details.
Attack Vector
The attack vector is local with user interaction required. A typical exploitation chain proceeds as follows:
- The attacker crafts a malicious Office document containing the triggering payload
- The document is delivered via email attachment, web download, or removable media
- The victim opens the document in a vulnerable version of Office
- Office parses the malformed structure, triggering the heap overflow
- Attacker-controlled shellcode executes in the user context
No public proof-of-concept or in-the-wild exploitation has been reported at publication. The EPSS score is 0.31%, reflecting a low near-term exploitation probability, though targeted attacks against Office remain a persistent threat pattern.
Detection Methods for CVE-2026-63533
Indicators of Compromise
- Office processes (WINWORD.EXE, EXCEL.EXE, POWERPNT.EXE) spawning unexpected child processes such as cmd.exe, powershell.exe, rundll32.exe, or mshta.exe
- Unexpected outbound network connections initiated by Office processes shortly after document open
- Office processes writing executable files (.exe, .dll, .js, .hta) to disk in user-writable paths
- Crash events for Office applications with heap corruption signatures in Windows Error Reporting
Detection Strategies
- Monitor parent-child process relationships where Office binaries launch scripting or LOLBin executables
- Alert on Office processes performing suspicious memory operations, code injection, or DLL loads from %TEMP% and %APPDATA%
- Inspect inbound email attachments and web downloads for Office documents containing embedded objects, macros, or malformed structures
Monitoring Recommendations
- Enable audit logging for Office application crashes and correlate with document open events
- Ingest endpoint telemetry into a centralized platform to detect anomalous Office behavior at scale
- Track user reports of Office crashes on document open, which may indicate exploitation attempts or unstable exploit payloads
How to Mitigate CVE-2026-63533
Immediate Actions Required
- Apply the Microsoft security update for CVE-2026-63533 as documented in the Microsoft Security Update Guide
- Inventory all endpoints running Microsoft Office and prioritize patching for users who routinely handle external documents
- Reinforce user awareness training on opening unsolicited Office attachments
Patch Information
Microsoft has released security updates addressing CVE-2026-63533. Administrators should deploy the update through Microsoft Update, Windows Server Update Services (WSUS), Microsoft Intune, or Microsoft Configuration Manager. Consult the vendor advisory for the exact build numbers corresponding to each affected Office channel and version.
Workarounds
- Enable Protected View for documents originating from the internet and other untrusted locations
- Configure Office Attack Surface Reduction (ASR) rules to block Office applications from creating child processes and injecting into other processes
- Restrict opening of Office documents from email attachments through mail gateway policies and file-type filtering
- Enforce Mark-of-the-Web (MOTW) preservation so downloaded documents open in Protected View
# Enable ASR rules via PowerShell to block Office child processes
Set-MpPreference -AttackSurfaceReductionRules_Ids `
D4F940AB-401B-4EFC-AADC-AD5F3C50688A `
-AttackSurfaceReductionRules_Actions Enabled
# Block Office from injecting code into other processes
Set-MpPreference -AttackSurfaceReductionRules_Ids `
75668C1F-73B5-4CF0-BB93-3ECF5CB7CC84 `
-AttackSurfaceReductionRules_Actions Enabled
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

