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 |
|---|---|---|---|---|
| HIGH | CVE-2026-54232 | vLLM: dependency confusion RCE backdoors container images | vllm | 8.8 |
| HIGH | CVE-2025-71339 | picklescan: scanner bypass enables arbitrary code execution | picklescan | 8.1 |
| HIGH | CVE-2025-71344 | picklescan: scanner bypass enables undetected pickle RCE | picklescan | 8.1 |
| HIGH | CVE-2025-71358 | picklescan: scanner bypass enables RCE via pickle | picklescan | 8.1 |
| MEDIUM | CVE-2026-48167 | Filament: stored XSS in ImageColumn/ImageEntry | 6.4 | |
| MEDIUM | CVE-2026-56357 | n8n: webhook forgery enables unauthorized workflow execution | n8n | 4.0 |
| HIGH | CVE-2025-71341 | picklescan: scanner bypass enables undetected RCE via pickle | picklescan | 8.1 |
| HIGH | CVE-2025-71365 | picklescan: detection bypass enables RCE via numpy.f2py | picklescan | 8.1 |
| HIGH | CVE-2025-71370 | picklescan: scanner bypass enables arbitrary code execution | picklescan | 8.1 |
| HIGH | CVE-2025-71376 | picklescan: scanner bypass enables undetected RCE | picklescan | 8.1 |
| CRITICAL | CVE-2026-56315 | picklescan: stdlib bypass enables arbitrary RCE | picklescan | 9.8 |
| CRITICAL | CVE-2026-56274 | Flowise: RCE via MCP server command validation bypass | Flowise | 9.9 |
| CRITICAL | CVE-2018-25117 | VestaCP: backdoored installer, not an AI/ML CVE | Control Panel (CP) | - |
| HIGH | CVE-2025-34267 | Flowise: authenticated RCE via nodevm sandbox escape | Flowise | - |
| MEDIUM | CVE-2026-22168 | OpenClaw: cmd.exe argument smuggling evades approval log | OpenClaw | 6.5 |
| MEDIUM | CVE-2026-22169 | OpenClaw: safeBins allowlist bypass enables command exec | OpenClaw | 6.7 |
| HIGH | CVE-2026-22175 | OpenClaw: allowlist bypass lets agents run any command | OpenClaw | 7.1 |
| MEDIUM | CVE-2026-22180 | OpenClaw: path traversal enables arbitrary file writes | OpenClaw | 5.3 |
| HIGH | CVE-2026-22179 | OpenClaw: allowlist bypass enables arbitrary OS command exec | OpenClaw | 7.2 |
| MEDIUM | CVE-2026-22176 | OpenClaw: cmd injection in Windows task script generation | OpenClaw | 6.1 |