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-48519 | Langflow: unauthenticated RCE via Shareable Playground | langflow | 9.6 |
| MEDIUM | CVE-2026-42867 | Langflow: path traversal enables arbitrary file write | langflow | 6.5 |
| HIGH | CVE-2026-41523 | vLLM: assert bypass → RCE via poisoned HuggingFace model | vllm | 7.5 |
| MEDIUM | CVE-2026-54306 | n8n: webhook prototype pollution enables confused deputy | n8n | - |
| HIGH | CVE-2026-54301 | n8n: XSS via CSP bypass steals user sessions | n8n | - |
| MEDIUM | CVE-2026-54308 | n8n: unauthed webhook bypass hijacks AI agent workflows | n8n | - |
| HIGH | GHSA-hv7x-3x78-gx53 | n8n: auth bypass lets read-only users execute workflows | n8n | 7.4 |
| UNKNOWN | CVE-2026-54310 | n8n: SQL injection in Postgres nodes, CVSS 9.9 | n8n | - |
| UNKNOWN | CVE-2026-49444 | n8n: Python sandbox escape enables container RCE | n8n | - |
| HIGH | CVE-2026-47749 | stable-diffusion.cpp: heap overflow in .ckpt model parser | 7.8 | |
| MEDIUM | CVE-2026-53841 | OpenClaw: XSS via unsafe links in exported session HTML | openclaw | 6.1 |
| HIGH | CVE-2026-53842 | OpenClaw: env var injection enables arbitrary code exec | openclaw | 7.1 |
| HIGH | CVE-2026-53846 | OpenClaw: path traversal enables arbitrary package-manager exec | openclaw | 7.1 |
| MEDIUM | CVE-2026-53848 | OpenClaw: exec allowlist bypass via command wrappers | openclaw | 4.3 |
| HIGH | CVE-2026-53853 | OpenClaw: exec allowlist bypass enables unrestricted RCE | openclaw | 8.3 |
| MEDIUM | CVE-2026-53854 | OpenClaw: privilege escalation via channel auth wildcard | openclaw | 6.5 |
| HIGH | CVE-2026-53855 | OpenClaw: allowlist bypass enables shell code execution | openclaw | 8.1 |
| HIGH | CVE-2026-53858 | OpenClaw: env var injection loads malicious runtime deps | openclaw | 7.1 |
| MEDIUM | CVE-2026-53860 | OpenClaw: sender allowlist bypass via conversation metadata | openclaw | 4.2 |
| MEDIUM | CVE-2026-53861 | OpenClaw: allowlist bypass enables arbitrary shell exec | openclaw | 6.6 |