Security Vulnerability Report
中文
CVE-2026-42832 CVSS 7.7 HIGH

CVE-2026-42832

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

Description

Improper access control in Microsoft Office allows an unauthorized attacker to perform spoofing locally.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Microsoft Office (具体受影响版本请参考官方MSRC公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Conceptual PoC for CVE-2026-42832 # This script demonstrates the logic flow to exploit the access control issue. import os def simulate_exploit(): print("[*] Simulating CVE-2026-42832 exploit...") # The vulnerability requires local access (AV:L) target_file = "crafted_spoofing_document.docx" # Check if we are in a local context if os.name == 'nt': print(f"[*] Attempting to bypass access control on {target_file}...") # In a real exploit, the file structure would trigger the spoofing # due to lack of proper checks in Microsoft Office. try: # os.startfile(target_file) # This would trigger the app print("[+] Access Control Bypassed!") print("[+] Spoofing condition achieved.") except Exception as e: print(f"[-] Simulation failed: {e}") else: print("[-] This vulnerability affects Microsoft Office on Windows.") if __name__ == "__main__": simulate_exploit()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-42832", "sourceIdentifier": "[email protected]", "published": "2026-05-12T18:17:25.800", "lastModified": "2026-05-13T15:34:52.573", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper access control in Microsoft Office allows an unauthorized attacker to perform spoofing 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:N", "baseScore": 7.7, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.5, "impactScore": 5.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-284"}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-42832", "source": "[email protected]"}]}}