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-2025-64390 | PS4 BD-J: sandbox escape via malformed JAR file | 7.4 | |
| CRITICAL | CVE-2024-6877 | Panel: Reflected XSS enables session hijack in ML UI | Panel | - |
| CRITICAL | CVE-2024-5959 | Panel: Stored XSS enables session hijack in ML dashboards | Panel | - |
| CRITICAL | CVE-2024-5958 | Panel: SQL injection enables OS command execution | Panel | - |
| CRITICAL | CVE-2025-14014 | Smart Panel: unauthenticated file upload enables RCE | Smart Panel | 9.8 |
| HIGH | CVE-2026-5121 | libarchive: integer overflow in zisofs hits vllm containers | rhaiis/vllm-cuda-rhel9 | 7.5 |
| HIGH | CVE-2026-45833 | ChromaDB: RCE via trust_remote_code in collection update | chromadb | 8.8 |
| MEDIUM | CVE-2026-47345 | typo3/html-sanitizer: XSS bypass via namespace encoding | typo3/html-sanitizer | - |
| MEDIUM | CVE-2026-53820 | OpenClaw: exec denylist bypass via MCP session-spawn | OpenClaw | 6.6 |
| HIGH | CVE-2026-53822 | OpenClaw: TOCTOU command injection bypasses allowlist | OpenClaw | 8.8 |
| MEDIUM | CVE-2026-53824 | OpenClaw: stale slash tokens bypass revocation controls | OpenClaw | 6.5 |
| HIGH | CVE-2026-53821 | OpenClaw: auth bypass grants admin RPC via WebSocket | OpenClaw | 8.8 |
| HIGH | CVE-2026-53831 | OpenClaw: safe-bin allowlist bypass via shell expansion | OpenClaw | 8.3 |
| HIGH | CVE-2026-53828 | OpenClaw: auth bypass enables owner command execution | OpenClaw | 8.8 |
| HIGH | CVE-2026-53832 | OpenClaw: identity header spoof grants operator access | OpenClaw | 7.7 |
| HIGH | CVE-2026-53829 | OpenClaw: approval truncation bypasses exec oversight | OpenClaw | 8.0 |
| HIGH | CVE-2026-53834 | OpenClaw: auth bypass in QQBot pre-dispatch commands | OpenClaw | 7.5 |
| HIGH | CVE-2026-53836 | OpenClaw: PowerShell allowlist bypass enables arbitrary RCE | OpenClaw | 8.8 |
| CRITICAL | CVE-2026-53838 | OpenClaw: approval scope bypass via reconnection state | OpenClaw | 9.8 |
| MEDIUM | GHSA-c9cv-mq2m-ppp3 | Nuxt: open redirect + XSS in navigation API (SSR+client) | nuxt | - |