Security Vulnerability Report
中文
CVE-2026-32200 CVSS 7.8 HIGH

CVE-2026-32200

Published: 2026-04-14 18:17:27
Last Modified: 2026-04-28 17:16:27

Description

Use after free in Microsoft Office PowerPoint allows an unauthorized attacker to execute code locally.

CVSS Details

CVSS Score
7.8
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H

Configurations (Affected Products)

cpe:2.3:a:microsoft:365_apps:-:*:*:*:enterprise:*:x64:* - VULNERABLE
cpe:2.3:a:microsoft:365_apps:-:*:*:*:enterprise:*:x86:* - VULNERABLE
cpe:2.3:a:microsoft:office:2019:*:*:*:*:*:x64:* - VULNERABLE
cpe:2.3:a:microsoft:office:2019:*:*:*:*:*:x86:* - VULNERABLE
cpe:2.3:a:microsoft:office_long_term_servicing_channel:2021:*:*:*:*:-:x64:* - VULNERABLE
Microsoft Office PowerPoint (具体受影响版本请参考官方安全通告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import sys # Proof of Concept for CVE-2026-32200 (Use After Free in PowerPoint) # This script demonstrates the logic of creating a malformed file structure # that triggers the UAF vulnerability. Actual exploit bytes are omitted for safety. def generate_malicious_pptx(): # 1. Create a standard PPTX structure (zipped XMLs) # 2. Modify slide XML to include a specific malformed object reference # 3. The object is freed (Object A) but a reference to it remains # 4. Reallocate memory with attacker-controlled data (Object B) # 5. Trigger the use of the dangling pointer to Object A (now pointing to B) print("[*] Parsing PPTX structure...") # Simulating the vulnerability trigger vulnerable_object = allocate_object("slide_layout") print("[*] Freeing object...") deallocate_object(vulnerable_object) # Step 1: Free print("[*] Reallocating memory with payload...") # Step 2: Reallocate/Heap Spray to occupy the freed memory payload = create_shellcode() reallocate_memory(payload) print("[*] Triggering use-after-free...") # Step 3: PowerPoint tries to access the freed object trigger_use(vulnerable_object) print("[+] Exploit triggered! Code execution logic initiated.") # Helper functions for demonstration def allocate_object(name): return f"Obj_{name}" def deallocate_object(obj): pass def create_shellcode(): return b"\x90\x90..." # NOP sled + shellcode def reallocate_memory(data): pass def trigger_use(obj): pass if __name__ == "__main__": generate_malicious_pptx()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32200", "sourceIdentifier": "[email protected]", "published": "2026-04-14T18:17:26.957", "lastModified": "2026-04-28T17:16:26.707", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Use after free in Microsoft Office PowerPoint allows an unauthorized attacker to execute code locally."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "baseScore": 7.8, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-416"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:microsoft:365_apps:-:*:*:*:enterprise:*:x64:*", "matchCriteriaId": "3259EBFE-AE2D-48B8-BE9A-E22BBDB31378"}, {"vulnerable": true, "criteria": "cpe:2.3:a:microsoft:365_apps:-:*:*:*:enterprise:*:x86:*", "matchCriteriaId": "CD25F492-9272-4836-832C-8439EBE64CCF"}, {"vulnerable": true, "criteria": "cpe:2.3:a:microsoft:office:2019:*:*:*:*:*:x64:*", "matchCriteriaId": "CF5DDD09-902E-4881-98D0-CB896333B4AA"}, {"vulnerable": true, "criteria": "cpe:2.3:a:microsoft:office:2019:*:*:*:*:*:x86:*", "matchCriteriaId": "26A3B226-5D7C-4556-9350-5222DC8EFC2C"}, {"vulnerable": true, "criteria": "cpe:2.3:a:microsoft:office_long_term_servicing_channel:2021:*:*:*:*:-:x64:*", "matchCriteriaId": "851BAC4E-9965-4F40-9A6C-B73D9004F4C1"}, {"vulnerable": true, "criteria": "cpe:2.3:a:microsoft:office_long_term_servicing_channel:2021:*:*:*:*:-:x86:*", "matchCriteriaId": "23B2FA23-76F4-4D83-A718-B8D04D7EA37B"}, {"vulnerable": true, "criteria": "cpe:2.3:a:microsoft:office_long_term_servicing_channel:2024:*:*:*:*:-:x64:*", "matchCriteriaId": "D31E509A-0B2E-4B41-88C4-0099E800AFE6"}, {"vulnerable": true, "criteria": "cpe:2.3:a:microsoft:office_long_term_servicing_channel:2024:*:*:*:*:-:x86:*", "matchCriteriaId": "017A7041-BEF1-4E4E-AC8A-EFC6AFEB01FE"}, {"vulnerable": true, "criteria": "cpe:2.3:a:microsoft:powerpoint:2016:*:*:*:*:*:*:*", "matchCriteriaId": "C971A8FC-3897-496D-BB9A-9E6C8A03AEA1"}]}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-32200", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}