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-32034 | OpenClaw: auth bypass enables high-privilege agent control | OpenClaw | 8.1 |
| MEDIUM | CVE-2026-32043 | OpenClaw: TOCTOU symlink bypasses command approval guard | OpenClaw | 6.5 |
| HIGH | CVE-2026-32048 | OpenClaw: sandbox escape via cross-agent spawn bypass | OpenClaw | 7.5 |
| MEDIUM | CVE-2026-32046 | OpenClaw: sandbox bypass enables host code execution | OpenClaw | 5.3 |
| HIGH | CVE-2026-32055 | OpenClaw: path traversal enables arbitrary file write | OpenClaw | 7.6 |
| LOW | CVE-2026-32058 | OpenClaw: approval bypass enables unauthorized agent execution | OpenClaw | 2.6 |
| HIGH | CVE-2026-32051 | OpenClaw: auth bypass lets operators invoke owner control-plane | OpenClaw | 8.8 |
| MEDIUM | CVE-2026-32052 | OpenClaw: command injection via shell-wrapper argv bypass | OpenClaw | 6.4 |
| HIGH | CVE-2026-32056 | OpenClaw: RCE via shell env var injection in system.run | OpenClaw | 7.5 |
| MEDIUM | CVE-2026-32054 | OpenClaw: symlink traversal enables arbitrary file overwrite | OpenClaw | 6.5 |
| HIGH | CVE-2026-32057 | OpenClaw: auth bypass grants unauthorized agent control access | OpenClaw | 7.1 |
| MEDIUM | CVE-2026-32065 | OpenClaw: approval bypass enables unauthorized command exec | OpenClaw | 4.8 |
| HIGH | CVE-2026-32915 | OpenClaw: sandbox bypass enables sibling agent hijack | OpenClaw | 8.8 |
| CRITICAL | CVE-2026-32916 | OpenClaw: auth bypass enables unauth agent execution | OpenClaw | 9.4 |
| CRITICAL | CVE-2026-32922 | OpenClaw: privilege escalation to RCE via token scope bypass | OpenClaw | 9.9 |
| HIGH | CVE-2026-32920 | OpenClaw: workspace plugin auto-load enables RCE | OpenClaw | 8.4 |
| MEDIUM | CVE-2026-32921 | OpenClaw: script approval bypass allows code execution | OpenClaw | 6.3 |
| CRITICAL | CVE-2026-32917 | OpenClaw: RCE via unsanitized iMessage SCP paths | OpenClaw | 9.8 |
| HIGH | CVE-2026-32971 | OpenClaw: approval UI spoofing enables local RCE | OpenClaw | 7.1 |
| CRITICAL | CVE-2026-32924 | OpenClaw: auth bypass via Feishu reaction misclassification | OpenClaw | 9.8 |