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 |
|---|---|---|---|---|
| CRITICAL | CVE-2025-71323 | picklescan: ctypes bypass enables full RCE via pickle files | picklescan | 9.8 |
| CRITICAL | CVE-2025-71325 | picklescan: scanner bypass enables RCE via model files | picklescan | 9.8 |
| HIGH | CVE-2025-71322 | PickleScan: pty.spawn bypass enables RCE in model scans | PickleScan | 8.8 |
| CRITICAL | CVE-2026-3490 | picklescan: blocklist bypass enables full RCE | picklescan | 10.0 |
| CRITICAL | CVE-2026-53874 | picklescan: scanner bypass enables pickle RCE | picklescan | 9.8 |
| CRITICAL | CVE-2026-53873 | picklescan: blocklist bypass allows arbitrary code exec | picklescan | 9.8 |
| CRITICAL | CVE-2026-35304 | Oracle Coherence: unauthenticated HTTPS takeover | coherence | 9.8 |
| CRITICAL | CVE-2026-35307 | Oracle Coherence: unauthenticated RCE, CVSS 10.0 | coherence | 10.0 |
| CRITICAL | CVE-2026-35308 | Oracle Coherence: unauthenticated RCE via third-party jars | coherence | 10.0 |
| CRITICAL | CVE-2026-35309 | Oracle Coherence: unauthenticated RCE via HTTP (CVSS 9.8) | coherence | 9.8 |
| CRITICAL | CVE-2026-35310 | Oracle Coherence: unauthenticated HTTP full takeover | coherence | 9.8 |
| HIGH | CVE-2026-54017 | open-webui: double-encoded path traversal in terminal proxy | open-webui | 7.7 |
| HIGH | CVE-2026-55405 | langchain4j: SQL injection in vector store filters | dev.langchain4j:langchain4j-pgvector | 7.6 |
| MEDIUM | CVE-2026-54386 | marimo: reflected XSS enables JS injection in notebooks | marimo | 6.1 |
| CRITICAL | CVE-2026-44727 | jupyter-server: stored XSS yields kernel RCE | notebook | 9.0 |
| HIGH | GHSA-6jcq-6546-qrrw | PraisonAI: sandbox escape via silent Landlock fallback | praisonaiagents | 8.8 |
| HIGH | GHSA-8ccj-p46r-jwqq | PraisonAI: auth bypass exposes full agent invocation API | praisonai | 8.2 |
| CRITICAL | GHSA-29w3-p9w9-wc47 | PraisonAI: multiedit path traversal, arbitrary file R/W | praisonai | 9.1 |
| HIGH | GHSA-7qw2-w5rc-37x2 | PraisonAI: workflow policy bypass enables shell RCE | praisonaiagents | 7.8 |
| HIGH | GHSA-f44v-7qgw-9gh9 | PraisonAI: path traversal enables arbitrary write/delete | praisonai | 8.1 |