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.
| Severity | CVE | Headline | Package | CVSS |
|---|---|---|---|---|
| MEDIUM | CVE-2026-50195 | containerd: checkpoint import poisons node image cache | github.com/containerd/containerd/v2 | - |
| CRITICAL | CVE-2026-55447 | Langflow: TAR symlink traversal enables full RCE | langflow | 9.6 |
| HIGH | GHSA-6vxv-wg6j-5qwp | Gogs: XSS via outdated Jupyter renderer, account takeover | gogs.io/gogs | - |
| MEDIUM | CVE-2026-49345 | Mercator: SSRF enables internal network RCE via gopher:// | - | |
| CRITICAL | CVE-2024-58351 | Flowise: RCE and sandbox escape via overrideConfig | Flowise | 9.8 |
| MEDIUM | CVE-2025-71331 | Flowise: XSS enables session hijacking in AI agent UI | Flowise | 6.1 |
| HIGH | CVE-2026-56340 | vLLM: sparse tensor DoS/memory corruption via embeddings | vllm | 7.5 |
| MEDIUM | CVE-2026-12774 | litellm: SSRF in MCP server exposes cloud metadata | litellm | 6.3 |
| HIGH | CVE-2026-12795 | litellm: auth bypass in SSO debug exposes LLM proxy | litellm | 7.3 |
| HIGH | CVE-2025-71348 | picklescan: scanner bypass enables supply chain RCE | picklescan | 8.1 |
| HIGH | CVE-2025-71378 | picklescan: detection bypass enables RCE via pickle files | picklescan | 8.1 |
| HIGH | CVE-2025-71357 | picklescan: detection bypass enables RCE via malicious models | picklescan | 8.1 |
| HIGH | CVE-2025-71351 | picklescan: scanner bypass enables RCE via pickle files | picklescan | - |
| MEDIUM | CVE-2026-56393 | Craft CMS: stored XSS hijacks admin panel sessions | 4.8 | |
| MEDIUM | CVE-2026-12822 | Langflow: code injection via Bundle URL Loader (PoC) | langflow | 5.3 |
| CRITICAL | CVE-2026-10561 | Langflow: auth bypass + unauthenticated RCE (CVSS 10) | langflow | 10.0 |
| HIGH | CVE-2026-9029 | Grafana: stored XSS in geomap bypasses CVE-2023-0507 fix | 7.3 | |
| UNKNOWN | CVE-2026-12479 | Keras: path traversal via layer names allows arbitrary file write | keras-team/keras | - |
| CRITICAL | CVE-2026-7664 | Langflow: auth bypass in MCP endpoint, CVSS 9.8 | Langflow OSS | 9.8 |
| HIGH | CVE-2026-52798 | Gogs: Stored XSS via .ipynb Markdown re-render bypass | gogs.io/gogs | 8.9 |