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-1114 | lollms: weak JWT secret allows admin takeover | lollms | 9.8 |
| HIGH | CVE-2026-57252 | Foxit PDF: use-after-free in attachment panel via JS page deletion | 7.8 | |
| MEDIUM | CVE-2026-56359 | n8n: XSS via malicious OAuth2 Authorization URL | n8n | 5.4 |
| HIGH | CVE-2026-56776 | n8n: workflow:read scope bypass triggers execution | n8n | 7.4 |
| HIGH | CVE-2026-59257 | n8n: SQL injection via MySQL v1 node expressions | n8n | 8.8 |
| MEDIUM | CVE-2026-56273 | Flowise: path traversal in vector store basePath | flowise | 6.5 |
| MEDIUM | CVE-2026-60092 | AVideo Meet: stored XSS via unescaped User-Agent | 6.1 | |
| HIGH | CVE-2026-15035 | OpenLLM: command injection via model repo name | 7.8 | |
| UNKNOWN | CVE-2026-59820 | LiteLLM: Zip Slip in Skills upload allows file write | litellm | - |
| UNKNOWN | CVE-2026-59821 | LiteLLM: code exec via unsandboxed Custom Guardrails | litellm | - |
| HIGH | CVE-2026-49471 | Serena: unauth dashboard API enables RCE via memory poisoning | serena-agent | 8.3 |
| HIGH | CVE-2026-59723 | Cline: missing Origin check on Hub enables RCE | cline | 8.8 |
| HIGH | GHSA-52vm-mxx8-f227 | Phantom MCP: unconfined output path enables file write | 7.7 | |
| MEDIUM | CVE-2026-15193 | OpenClaw Android: command injection via WebView bridge | 5.3 | |
| HIGH | CVE-2026-59214 | Open WebUI: Pyodide sandbox bypass reaches admin RCE | open-webui | 7.3 |
| HIGH | CVE-2026-59216 | Open WebUI: session hijack enables cross-user code exec | open-webui | 7.7 |
| HIGH | CVE-2026-59224 | Open WebUI: terminal proxy allows user ID spoofing | open-webui | 8.0 |
| MEDIUM | CVE-2026-59831 | GitHub CLI: command execution via malicious Codespace URI | 4.4 | |
| MEDIUM | CVE-2026-56354 | n8n: stored XSS + phishing redirect in Form Node | n8n | 4.1 |
| MEDIUM | CVE-2026-60089 | PraisonAI: config.toml path traversal overwrites files | praisonaiagents | 5.5 |