ONNX: Malicious ONNX models can crash servers by exploiting unprotected object settings
High8.6CVE-2026-34445 · Published Apr 1, 2026 · updated Sep 10, 2026
### Summary The ExternalDataInfo class in ONNX was using Python’s setattr() function to load metadata (like file paths or data lengths) directly from an ONNX model file. The problem? It didn’t check if the "keys" in the file were valid. Because it blindly trusted the file, an attacker could craft a malicious model that overwrites internal object properties. ### Why its Dangerous **Instant Crash DoS**: An attacker can set the length property to a massive number like 9 petabytes. When the system tries to load the model, it attempts to allocate all that RAM at once, causing the server to crash or freeze Out of Memory. **Access Bypass**: By setting a negative offset -1, an attacker can trick the system into reading parts of a file it wasn't supposed to touch. **Object Corruption**: Attackers can even inject "dunder" attributes like __class__ to change the object's type entirely, which could lead to more complex exploits. **Fixed**: https://github.com/onnx/onnx/pull/7751 object state corruption and DoS via ExternalDataInfo attribute injection
Affected versions
| Package | Affected | Fixed in |
|---|---|---|
| onnx PyPI | < 1.21.0 | 1.21.0 |
Details and references
More ONNX advisories
All ONNX| Date | Advisory | Severity | Fixed in |
|---|---|---|---|
| Jul 7 | ONNX has Null Pointer Dereference in Upsample Version Converter Adapter (Zero Inputs) | Medium5.5 | 1.22.0 |
| Apr 1 | ONNX: TOCTOU arbitrary file read/write in save_external_dat | High7.1 | 1.21.0 |
| Apr 1 | ONNX: External Data Symlink Traversal | Medium5.5 | 1.21.0 |
| Apr 1 | ONNX: Arbitrary File Read via ExternalData Hardlink Bypass in ONNX load | Medium4.7 | 1.21.0 |
| Mar 31 | onnx Vulnerable to Path Traversal via Symlink | High | 1.21.0 |
| Mar 16 | ONNX: insufficient authenticity check | High8.6 | 1.21.0rc1 |