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-32972 | OpenClaw: auth bypass enables persistent CDP backdoor | OpenClaw | 7.1 |
| HIGH | CVE-2026-32974 | OpenClaw: auth bypass triggers forged webhook tool execution | OpenClaw | 8.6 |
| CRITICAL | CVE-2026-32973 | OpenClaw: exec allowlist bypass enables RCE | OpenClaw | 9.8 |
| HIGH | CVE-2026-32979 | OpenClaw: TOCTOU race enables local code execution | OpenClaw | 7.3 |
| CRITICAL | CVE-2026-32987 | OpenClaw: bootstrap code replay escalates to operator.admin | OpenClaw | 9.8 |
| HIGH | CVE-2026-32978 | OpenClaw: script approval bypass allows RCE | OpenClaw | 8.0 |
| HIGH | CVE-2026-32988 | OpenClaw: sandbox escape via fs-bridge TOCTOU race | OpenClaw | 7.5 |
| MEDIUM | CVE-2026-32977 | OpenClaw: TOCTOU race condition enables sandbox file escape | OpenClaw | 6.3 |
| CRITICAL | CVE-2026-33579 | OpenClaw: scope bypass escalates low-priv to admin | OpenClaw | 9.9 |
| HIGH | CVE-2026-33573 | OpenClaw: workspace boundary bypass, arbitrary exec | OpenClaw | 8.8 |
| MEDIUM | CVE-2026-33580 | OpenClaw: webhook brute-force enables event forgery | OpenClaw | 6.5 |
| MEDIUM | CVE-2026-33574 | OpenClaw: TOCTOU path traversal enables arbitrary file write | OpenClaw | 6.2 |
| MEDIUM | CVE-2026-34505 | OpenClaw: webhook rate-limit bypass enables brute-force | OpenClaw | 6.5 |
| MEDIUM | CVE-2026-35623 | OpenClaw: Brute-force auth bypass via webhook rate limit miss | OpenClaw | 4.8 |
| HIGH | CVE-2026-35625 | OpenClaw: privilege escalation to RCE via silent reconnect | OpenClaw | 7.8 |
| MEDIUM | CVE-2026-35622 | OpenClaw: auth bypass in Google Chat webhook | OpenClaw | 5.9 |
| HIGH | CVE-2026-35638 | OpenClaw: priv escalation via trusted-proxy scope bypass | OpenClaw | 8.8 |
| HIGH | CVE-2026-35632 | OpenClaw: symlink traversal enables RCE via agent config | OpenClaw | 7.1 |
| HIGH | CVE-2026-35639 | OpenClaw: scope bypass enables admin RCE via device pairing | OpenClaw | 8.8 |
| HIGH | CVE-2026-35645 | OpenClaw: privilege escalation via synthetic admin session scope | OpenClaw | 8.1 |