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 |
|---|---|---|---|---|
| CRITICAL | CVE-2026-31229 | ART: torch.load() RCE via insecure deserialization | 9.8 | |
| HIGH | CVE-2026-31232 | CosyVoice: RCE via unsafe torch.load() model deserialization | 8.8 | |
| HIGH | CVE-2026-44246 | nnU-Net: prompt injection hijacks CI/CD triage agent | claude-code | 7.2 |
| HIGH | CVE-2026-45136 | claude-code-cache-fix: hook path injection → RCE | claude-code-cache-fix | - |
| CRITICAL | GHSA-9rvc-vf7m-pgm2 | Flowise: auth RCE via NodeVM sandbox escape | flowise | - |
| HIGH | GHSA-m99r-2hxc-cp3q | Flowise MCP: 3-path blocklist bypass enables server RCE | flowise-components | - |
| MEDIUM | CVE-2026-44898 | mistune: XSS in TOC render via unescaped heading ID | mistune | 6.1 |
| CRITICAL | CVE-2026-44792 | n8n: SQL injection via poisoned Source Control git repo | n8n | 9.0 |
| CRITICAL | CVE-2026-44791 | n8n: XML node patch bypass enables host RCE | n8n | 9.9 |
| HIGH | CVE-2026-44790 | n8n: Git node arg injection enables full server compromise | n8n | 8.8 |
| CRITICAL | CVE-2026-44789 | n8n: prototype pollution in HTTP node enables RCE | n8n | 9.9 |
| HIGH | CVE-2026-8597 | SageMaker: RCE via poisoned Triton model artifacts in S3 | sagemaker | 7.2 |
| HIGH | CVE-2026-45370 | utcp-cli: env leak exfiltrates all agent process secrets | utcp-cli | 7.7 |
| HIGH | CVE-2026-45672 | open-webui: code exec gate bypass via API endpoint | open-webui | 8.8 |
| HIGH | GHSA-3wgj-c2hg-vm6q | open-webui: XSS via OAuth SVG picture → account takeover | open-webui | 7.3 |
| HIGH | CVE-2026-45350 | open-webui: missing authz allows admin tool hijacking | open-webui | 7.1 |
| MEDIUM | CVE-2026-45318 | open-webui: Stored XSS via Office file preview bypass | open-webui | 5.4 |
| HIGH | CVE-2026-45314 | Open WebUI: Stored XSS via webhook SVG profile image | open-webui | - |
| HIGH | CVE-2026-45315 | open-webui: stored XSS → JWT theft and admin takeover | open-webui | 8.7 |
| HIGH | CVE-2026-45303 | Open WebUI: XSS iframe allows auth token exfiltration | open-webui | 7.7 |