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 | GHSA-2gvc-4f3c-2855 | OpenClaw: auth bypass lets DM senders run room commands | openclaw | - |
| HIGH | GHSA-2cq5-mf3v-mx44 | openclaw: exec approval bypass via opaque multi-call binaries | openclaw | - |
| HIGH | GHSA-736r-jwj6-4w23 | openclaw: sandbox escape via host=node exec routing bypass | openclaw | - |
| HIGH | GHSA-82qx-6vj7-p8m2 | openclaw: trust bypass loads untrusted workspace plugins | openclaw | - |
| MEDIUM | GHSA-jf25-7968-h2h5 | openclaw: path traversal bypasses workspace filesystem guard | openclaw | - |
| MEDIUM | GHSA-7wv4-cc7p-jhxc | openclaw: .env injection hijacks agent runtime config | openclaw | - |
| HIGH | GHSA-vfp4-8x56-j7c5 | openclaw: env denylist bypass enables code exec in agents | openclaw | - |
| MEDIUM | GHSA-j6c7-3h5x-99g9 | openclaw: OS command injection via shell env-argv bypass | openclaw | - |
| MEDIUM | GHSA-g375-h3v6-4873 | openclaw: privilege retention via async exec completion miss | openclaw | - |
| MEDIUM | GHSA-g2hm-779g-vm32 | openclaw: auth bypass preserves owner-level agent execution | openclaw | - |
| CRITICAL | GHSA-v38x-c887-992f | Flowise: prompt injection bypasses Python sandbox RCE | flowise-components | - |
| HIGH | CVE-2026-6596 | Langflow: unauthenticated file upload allows RCE | langflow-base | 7.3 |
| MEDIUM | CVE-2026-6599 | Langflow: MCP config injection via X-Forwarded-For header | langflow | 6.3 |
| LOW | CVE-2026-6600 | Langflow: stored XSS in chat message editor | langflow | 3.5 |
| HIGH | CVE-2026-39861 | Claude Code: sandbox escape via symlink allows arbitrary write | @anthropic-ai/claude-code | - |
| MEDIUM | CVE-2026-39377 | nbconvert: path traversal enables arbitrary file write | nbconvert | 6.5 |
| CRITICAL | CVE-2026-41264 | Flowise: prompt injection → unsandboxed RCE via CSV Agent | flowise-components | 9.8 |
| HIGH | CVE-2026-6859 | InstructLab: RCE via hardcoded trust_remote_code flag | instructlab | 8.8 |
| CRITICAL | CVE-2026-41265 | Flowise: RCE via prompt injection in Airtable Agent | flowise | 9.8 |
| HIGH | CVE-2026-41137 | Flowise: RCE via CSVAgent unsanitized code injection | flowise | 8.8 |