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 |
|---|---|---|---|---|
| MEDIUM | CVE-2026-31999 | OpenClaw: CWD injection enables integrity loss on Windows | OpenClaw | 6.3 |
| HIGH | CVE-2026-31994 | OpenClaw: cmd injection via scheduled task generation | OpenClaw | 7.1 |
| MEDIUM | CVE-2026-31996 | OpenClaw: safeBins bypass allows file read/write | OpenClaw | 4.4 |
| MEDIUM | CVE-2026-32003 | OpenClaw: env var injection enables RCE via allowlist bypass | OpenClaw | 6.6 |
| MEDIUM | CVE-2026-32007 | OpenClaw: path traversal enables sandbox file escape | OpenClaw | 6.8 |
| HIGH | CVE-2026-32015 | OpenClaw: PATH hijack bypasses exec allowlist controls | OpenClaw | 7.8 |
| HIGH | CVE-2026-32013 | OpenClaw: symlink traversal enables host file read/write | OpenClaw | 8.8 |
| MEDIUM | CVE-2026-32010 | OpenClaw: safeBins bypass enables arbitrary code execution | OpenClaw | 6.3 |
| MEDIUM | CVE-2026-32009 | OpenClaw: binary hijacking via safeBins path bypass | OpenClaw | 5.7 |
| HIGH | CVE-2026-32016 | OpenClaw: path bypass allows unauthorized binary execution | OpenClaw | 7.8 |
| HIGH | CVE-2026-32017 | OpenClaw: allowlist bypass enables arbitrary file write | OpenClaw | 7.1 |
| HIGH | CVE-2026-32014 | OpenClaw: metadata spoofing bypasses agent command policies | OpenClaw | 8.0 |
| HIGH | CVE-2026-32025 | OpenClaw: WebSocket auth bypass enables agent hijack | OpenClaw | 7.5 |
| HIGH | CVE-2026-32023 | OpenClaw: approval gating bypass enables shell execution | OpenClaw | 7.1 |
| HIGH | CVE-2026-32032 | OpenClaw: SHELL env var injection enables local RCE | OpenClaw | 7.8 |
| MEDIUM | CVE-2026-32031 | OpenClaw: auth bypass in plugin channel gateway | OpenClaw | 4.8 |
| MEDIUM | CVE-2026-32039 | OpenClaw: auth bypass grants privileged tool access | OpenClaw | 5.9 |
| MEDIUM | CVE-2026-32041 | OpenClaw: auth bypass exposes browser-control RCE | OpenClaw | 6.9 |
| MEDIUM | CVE-2026-32040 | OpenClaw: XSS via HTML export mimeType injection | OpenClaw | 4.6 |
| CRITICAL | CVE-2026-32038 | OpenClaw: sandbox bypass enables container lateral movement | OpenClaw | 9.8 |