Security Vulnerability Report
中文
CVE-2025-70069 CVSS 7.5 HIGH

CVE-2025-70069

Published: 2026-05-04 14:16:29
Last Modified: 2026-05-05 19:47:31

Description

An issue in Assimp v.6.0.2 allows a remote attacker to cause a denial of service via the FBXConverter.cpp and ConvertMeshMultiMaterial() method

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Assimp 6.0.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC for CVE-2025-70069 # This script demonstrates loading a malicious FBX file to trigger the DoS. import assimp def exploit(): # Load a crafted FBX file designed to trigger the bug in FBXConverter.cpp # The file should contain invalid material mapping in ConvertMeshMultiMaterial() file_path = "malicious_cve_2025_70069.fbx" try: scene = assimp.load(file_path) print("Exploit failed: Application did not crash.") except Exception as e: print(f"Exception occurred: {e}") if __name__ == "__main__": exploit()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-70069", "sourceIdentifier": "[email protected]", "published": "2026-05-04T14:16:29.473", "lastModified": "2026-05-05T19:47:31.297", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "An issue in Assimp v.6.0.2 allows a remote attacker to cause a denial of service via the FBXConverter.cpp and ConvertMeshMultiMaterial() method"}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-400"}, {"lang": "en", "value": "CWE-770"}]}], "references": [{"url": "http://assimp.com", "source": "[email protected]"}, {"url": "https://gist.github.com/GunP4ng/9080ae7f0470c889a59cc3bfca445223", "source": "[email protected]"}]}}