Attack Type

Code Execution

Remote code execution is unusually common in the AI/ML ecosystem because two long-standing patterns persist: pickle-based model loading and Jinja-style template rendering. Pickle is Python's default serialisation format and it executes arbitrary code on deserialisation; PyTorch models, scikit-learn pipelines, and many older HuggingFace artefacts are pickle files, so loading an untrusted model file is equivalent to running an untrusted script. HuggingFace addressed this with safetensors, but the older format is still widespread. The second pattern is template injection in LLM application frameworks that render Jinja-like syntax inside user-controlled prompts; LangChain, LlamaIndex, and several agent frameworks have shipped CVEs of this shape. Inference servers (vLLM, Triton, BentoML, Ray Serve) round out the RCE landscape with the usual web-app issues. Defenses: never load model files from untrusted sources, prefer safetensors, sandbox inference, and audit any code path that combines user input with template rendering.

1229
Total CVEs
62
Pages
Page 34 of 62
Current
Severity CVE CVSS
HIGH GHSA-2gvc-4f3c-2855 -
HIGH GHSA-2cq5-mf3v-mx44 -
HIGH GHSA-736r-jwj6-4w23 -
HIGH GHSA-82qx-6vj7-p8m2 -
MEDIUM GHSA-jf25-7968-h2h5 -
MEDIUM GHSA-7wv4-cc7p-jhxc -
HIGH GHSA-vfp4-8x56-j7c5 -
MEDIUM GHSA-j6c7-3h5x-99g9 -
MEDIUM GHSA-g375-h3v6-4873 -
MEDIUM GHSA-g2hm-779g-vm32 -
CRITICAL GHSA-v38x-c887-992f -
HIGH CVE-2026-6596 7.3
MEDIUM CVE-2026-6599 6.3
LOW CVE-2026-6600 3.5
HIGH CVE-2026-39861 -
MEDIUM CVE-2026-39377 6.5
CRITICAL CVE-2026-41264 9.8
HIGH CVE-2026-6859 8.8
CRITICAL CVE-2026-41265 9.8
HIGH CVE-2026-41137 8.8

Page 34 of 62