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-53863 | OpenClaw: access control bypass via unvalidated group ID | openclaw | 7.1 |
| HIGH | CVE-2026-53864 | OpenClaw: env var bypass enables child process code exec | openclaw | 8.1 |
| HIGH | CVE-2026-53865 | OpenClaw: path traversal enables arbitrary local code exec | openclaw | 7.1 |
| HIGH | CVE-2026-53866 | OpenClaw: allowlist bypass allows unauthorized shell exec | openclaw | 8.1 |
| MEDIUM | CVE-2026-48775 | LangGraph SQLite: deserialization RCE at checkpoint load | langgraph | 6.8 |
| LOW | CVE-2026-54326 | pi-coding-agent: XSS in HTML exports via prompt injection | 2.5 | |
| LOW | GHSA-m3q2-p4fw-w38m | Nuxt: NoScript XSS enables script execution in head | nuxt | - |
| UNKNOWN | CVE-2026-54309 | n8n: MCP browser auth bypass allows full browser takeover | n8n | - |
| MEDIUM | GHSA-jwm3-qcfw-c5pp | n8n: AST bypass leaks env vars in Python Task Runner | n8n | 5.0 |
| UNKNOWN | CVE-2026-54302 | n8n: stored XSS in Chat Trigger enables session hijack | n8n | - |
| UNKNOWN | CVE-2026-54312 | n8n: prototype pollution renders instance non-functional | n8n | - |
| HIGH | CVE-2026-47750 | stable-diffusion.cpp: heap overflow via crafted .ckpt model | 7.8 | |
| HIGH | CVE-2026-47747 | stable-diffusion.cpp: .ckpt heap overflow enables RCE | 7.8 | |
| HIGH | CVE-2026-54013 | Open WebUI: stored SVG XSS enables full account takeover | open-webui | 7.6 |
| HIGH | CVE-2026-54011 | Open WebUI: Stored XSS via Mermaid loose mode in preview | open-webui | 8.7 |
| HIGH | CVE-2026-54007 | open-webui: cross-origin postMessage forces model execution | open-webui | - |
| MEDIUM | CVE-2026-54236 | vLLM: heap address leak enables ASLR bypass | vllm | 5.3 |
| UNKNOWN | CVE-2026-53875 | picklescan: scanner bypass enables PyTorch RCE | picklescan | - |
| CRITICAL | CVE-2025-71321 | picklescan: blocklist bypass allows arbitrary file write/RCE | picklescan | 9.8 |
| CRITICAL | CVE-2025-71320 | picklescan: deny-list bypass enables arbitrary RCE | picklescan | 9.8 |