Security Vulnerability Report
中文
CVE-2025-70070 CVSS 6.5 MEDIUM

CVE-2025-70070

Published: 2026-05-04 15:16:03
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 FBXMeshGeometry.cpp, MeshGeometry::MeshGeometry()

CVSS Details

CVSS Score
6.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/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
import assimp # PoC for CVE-2025-70070 # This script attempts to load a malicious FBX file that triggers a DoS in Assimp v6.0.2 # The vulnerability lies in FBXMeshGeometry.cpp within MeshGeometry::MeshGeometry() def trigger_dos(malicious_file_path): try: # Load the scene # Internally calls MeshGeometry::MeshGeometry() which crashes on malformed data scene = assimp.load(malicious_file_path) print("File processed successfully (Vulnerability not triggered or patched)") except Exception as e: print(f"Exception caught: {e}") except: print("Application crashed (Denial of Service occurred)") if __name__ == "__main__": # Replace 'malicious.fbx' with the actual crafted file # Crafting involves manipulating the mesh geometry definition in the FBX binary format trigger_dos("malicious.fbx")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-70070", "sourceIdentifier": "[email protected]", "published": "2026-05-04T15:16:03.360", "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 FBXMeshGeometry.cpp, MeshGeometry::MeshGeometry()"}], "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:R/S:U/C:N/I:N/A:H", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-476"}]}], "references": [{"url": "http://assimp.com", "source": "[email protected]"}, {"url": "https://gist.github.com/GunP4ng/a2118ba977b10074a4477322afa7b763", "source": "[email protected]"}, {"url": "https://gist.github.com/GunP4ng/a2118ba977b10074a4477322afa7b763", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}