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 | GHSA-9752-mhqh-h34f | praisonai npm: AgentOS missing auth enables agent abuse | praisonai | 9.4 |
| CRITICAL | GHSA-p69m-4f92-2v84 | praisonai: sandbox escape in codeMode → full host RCE | praisonai | 9.8 |
| HIGH | GHSA-vjv9-7m7j-h833 | praisonai (npm): allowlist bypass enables RCE | praisonai | 8.8 |
| CRITICAL | GHSA-vmmj-pfw7-fjwp | praisonai: sandbox escape gives RCE via codeMode tool | praisonai | 9.9 |
| HIGH | GHSA-gqmf-56h7-rrpf | praisonai: network-isolated sandbox bypass exposes host network | praisonai | 7.6 |
| UNKNOWN | CVE-2026-54003 | Kirby CMS: admin takeover via reverse proxy header bypass | getkirby/cms | - |
| HIGH | CVE-2026-54002 | Kirby CMS: stored XSS bypasses DOM sanitizer via unwrap flaw | getkirby/cms | - |
| HIGH | CVE-2026-49276 | Kirby CMS: XSS via writer field malicious links | getkirby/cms | - |
| HIGH | CVE-2026-44688 | Eclipse Theia: indirect prompt injection → RCE + exfil | @theia/ai-ide | - |
| HIGH | CVE-2026-46580 | Eclipse Theia: workspace prompt injection enables RCE/exfil | @theia/ai-editor | - |
| HIGH | GHSA-fq4x-789w-jg5h | agenticmail: email prompt injection → bypassPermissions RCE | @agenticmail/openclaw | - |
| HIGH | CVE-2026-56075 | PraisonAI: RCE via hardcoded approval_mode bypass | PraisonAI | 8.8 |
| HIGH | CVE-2026-56078 | PraisonAI: path traversal → arbitrary file read/write/RCE | PraisonAI | 8.8 |
| HIGH | CVE-2026-56076 | PraisonAI: CORS bypass enables arbitrary agent execution | PraisonAI | 8.1 |
| CRITICAL | CVE-2026-12048 | pgAdmin 4: Stored XSS enables full browser session hijack | 9.3 | |
| MEDIUM | GHSA-vmhf-c436-hxj4 | JupyterLab: XSS via malicious PyPI extension URL | jupyterlab | - |
| HIGH | GHSA-vcv2-r9jh-99m5 | agentic-flow: MCP tool args enable OS command injection RCE | 8.8 | |
| UNKNOWN | CVE-2026-54527 | jupyterlab-git: stored XSS escalates to full RCE | @jupyterlab/git | - |
| HIGH | CVE-2026-54499 | Stanza: pickle fallback bypass enables model RCE | torch | 7.5 |
| HIGH | CVE-2026-53488 | containerd: label injection enables host RCE via CRI plugin | github.com/containerd/containerd/v2 | - |