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-71372 | Picklescan: RCE gadget bypasses pickle safety scanner | picklescan | 8.1 |
| HIGH | CVE-2025-71343 | picklescan: scanner bypass lets malicious pickle files evade detection | picklescan | 8.1 |
| HIGH | CVE-2025-71345 | picklescan: scanner blocklist bypass hides pickle RCE | picklescan | 8.1 |
| HIGH | CVE-2025-71347 | picklescan: numpy.f2py bypass lets malicious pickle evade scan | picklescan | 8.1 |
| HIGH | CVE-2025-71353 | picklescan: detection bypass allows pickle RCE | picklescan | 8.1 |
| HIGH | CVE-2025-71356 | picklescan: torch.fx gadget bypasses malicious-pickle detection | picklescan | 8.1 |
| HIGH | CVE-2025-71359 | picklescan: scan bypass lets malicious models RCE | picklescan | 8.1 |
| HIGH | CVE-2025-71360 | picklescan: scanner bypass enables pickle RCE | picklescan | 8.1 |
| HIGH | CVE-2025-71362 | picklescan: scanner bypass enables RCE via numpy eval | picklescan | 8.1 |
| HIGH | CVE-2025-71364 | picklescan: scanner blind spot enables pickle RCE | picklescan | 8.1 |
| HIGH | CVE-2025-71366 | picklescan: scan bypass lets malicious pickle RCE | picklescan | 8.1 |
| HIGH | CVE-2025-71367 | picklescan: attrgetter bypass evades malicious pickle scan | picklescan | 8.1 |
| HIGH | CVE-2025-71369 | picklescan misses malicious pickles via torch decoder | picklescan | 8.1 |
| HIGH | CVE-2025-71373 | picklescan: methodcaller bypass enables pickle RCE | picklescan | 8.1 |
| HIGH | CVE-2025-71375 | picklescan: detection bypass enables pickle RCE | picklescan | 8.1 |
| HIGH | CVE-2025-71380 | n8n: authenticated RCE via Execute Command node | n8n | 8.8 |
| HIGH | CVE-2026-12196 | HestiaCP: cronjob flaw lets low-priv users get root | - | |
| CRITICAL | CVE-2026-14535 | fickling: shared-state bug disables ML pickle allowlist check | fickling | 9.8 |
| HIGH | CVE-2026-14534 | fickling: denylist gaps let malicious pickles execute | fickling | 8.8 |
| MEDIUM | CVE-2026-14647 | ONNX: OOB read in shape inference parsing untrusted models | onnx | 4.3 |