CVE-2026-47213: BoxLite: sandbox timeout bypass enables DoS via SIGALRM
GHSA-xjhv-pp2r-6f82 MEDIUM PoC AVAILABLE CISA: TRACK*BoxLite's execution sandbox sends SIGALRM (catchable signal 14) instead of SIGKILL (uncatchable signal 9) when terminating timed-out processes — a one-character code typo that lets any submitted workload survive indefinitely by calling `signal(SIGALRM, SIG_IGN)` before doing anything else. For AI platforms that use BoxLite to execute LLM-generated or user-submitted code — code interpreter features, agentic tool runners, ML evaluation harnesses — this means a single authenticated user can exhaust the sandbox VM's resources and deny service to all tenants. A fully working PoC is published in the GitHub advisory, making exploitation trivial; there are 5 downstream dependents and no patched release yet. Until a fix ships, apply cgroup CPU-time limits and `ulimit -t` at the OS layer as compensating controls, and restrict API submission to trusted identities only.
What is the risk?
Medium severity by CVSS (6.5), but operationally elevated for multi-tenant AI execution environments. The exploit requires only authenticated API access and one line of code — well within script-kiddie capability given the public PoC. Impact is bounded to availability (C:N/I:N/A:H), but in shared AI sandbox deployments a single attacker can starve all concurrent workloads. No patch exists yet, which extends the exposure window. The 5 downstream dependents limit blast radius at the ecosystem level, but any organization running BoxLite in production for AI code execution should treat this as urgent.
How does the attack unfold?
What systems are affected?
| Package | Ecosystem | Vulnerable Range | Patched |
|---|---|---|---|
| Boxlite | pip | <= 0.8.2 | No patch |
Do you use Boxlite? You're affected.
How severe is it?
What is the attack surface?
What should I do?
7 steps-
No patched version available — monitor GHSA-xjhv-pp2r-6f82 for a release fixing the Signal::SIGALRM → Signal::SIGKILL typo in guest/src/service/exec/timeout.rs.
-
Apply OS-level hard limits as compensating controls: set
ulimit -t <seconds>(CPU time) inside the container so the kernel enforces termination independently of signal delivery. -
Configure cgroup
cpu.maxandmemory.maxto cap per-workload resource consumption at the container/VM orchestration layer. -
Add Docker/container resource constraints (
--cpus,--memory,--pids-limit) to all BoxLite VM instances. -
Restrict the execution API to authenticated, trusted submitters only — this is a PR:L vulnerability; reducing who can submit workloads reduces attack surface.
-
If using BoxLite in an AI agent pipeline, implement an external watchdog at the orchestration layer that forcibly kills executions exceeding 2x their configured timeout_ms.
-
Alert on processes running past their configured deadline as anomaly detection while awaiting patch.
What does CISA's SSVC say?
Source: CISA Vulnrichment (SSVC v2.0). Decision based on the CISA Coordinator decision tree.
How is it classified?
Which compliance frameworks are affected?
This CVE is relevant to:
Frequently Asked Questions
What is CVE-2026-47213?
BoxLite's execution sandbox sends SIGALRM (catchable signal 14) instead of SIGKILL (uncatchable signal 9) when terminating timed-out processes — a one-character code typo that lets any submitted workload survive indefinitely by calling `signal(SIGALRM, SIG_IGN)` before doing anything else. For AI platforms that use BoxLite to execute LLM-generated or user-submitted code — code interpreter features, agentic tool runners, ML evaluation harnesses — this means a single authenticated user can exhaust the sandbox VM's resources and deny service to all tenants. A fully working PoC is published in the GitHub advisory, making exploitation trivial; there are 5 downstream dependents and no patched release yet. Until a fix ships, apply cgroup CPU-time limits and `ulimit -t` at the OS layer as compensating controls, and restrict API submission to trusted identities only.
Is CVE-2026-47213 actively exploited?
Proof-of-concept exploit code is publicly available for CVE-2026-47213, increasing the risk of exploitation.
How to fix CVE-2026-47213?
1. No patched version available — monitor GHSA-xjhv-pp2r-6f82 for a release fixing the Signal::SIGALRM → Signal::SIGKILL typo in guest/src/service/exec/timeout.rs. 2. Apply OS-level hard limits as compensating controls: set `ulimit -t <seconds>` (CPU time) inside the container so the kernel enforces termination independently of signal delivery. 3. Configure cgroup `cpu.max` and `memory.max` to cap per-workload resource consumption at the container/VM orchestration layer. 4. Add Docker/container resource constraints (`--cpus`, `--memory`, `--pids-limit`) to all BoxLite VM instances. 5. Restrict the execution API to authenticated, trusted submitters only — this is a PR:L vulnerability; reducing who can submit workloads reduces attack surface. 6. If using BoxLite in an AI agent pipeline, implement an external watchdog at the orchestration layer that forcibly kills executions exceeding 2x their configured timeout_ms. 7. Alert on processes running past their configured deadline as anomaly detection while awaiting patch.
What systems are affected by CVE-2026-47213?
This vulnerability affects the following AI/ML architecture patterns: AI code execution sandboxes, agent frameworks, model serving, training pipelines.
What is the CVSS score for CVE-2026-47213?
CVE-2026-47213 has a CVSS v3.1 base score of 6.5 (MEDIUM). The EPSS exploitation probability is 0.27%.
What is the AI security impact?
Affected AI Architectures
MITRE ATLAS Techniques
AML.T0029 Denial of AI Service AML.T0034.002 Agentic Resource Consumption AML.T0049 Exploit Public-Facing Application AML.T0097 Virtualization/Sandbox Evasion Compliance Controls Affected
What are the technical details?
Original Advisory
Boxlite is a sandbox service that allows users to create lightweight virtual machines (Boxes) and launch OCI containers within them to run untrusted code. In versions 0.8.2 and prior, Boxlite allows users to configure a timeout for services running inside the virtual machine. When the timeout is triggered, Boxlite sends a signal to kill the process. However, instead of using the uncatchable SIGKILL signal, Boxlite uses the catchable SIGALRM signal. Malicious code running inside the sandbox can exploit this vulnerability to continue running after the timeout is triggered, leading to resource exhaustion within the virtual machine and affecting the availability of the Boxlite service. This issue has been patched via commit 28159fc.
Exploitation Scenario
An attacker with authenticated access to an AI platform using BoxLite (e.g., an AI code interpreter or agentic tool executor) submits a Python workload that immediately calls `signal.signal(signal.SIGALRM, signal.SIG_IGN)` before running a compute-intensive infinite loop. When the configured timeout fires, BoxLite sends SIGALRM to the process — which silently discards it and continues consuming CPU and memory. By submitting dozens of these requests in parallel, the attacker exhausts the BoxLite VM's resources, causing all legitimate AI workloads to queue indefinitely and effectively taking the execution service offline for all users. In an agentic AI context, a compromised or adversarial agent could trigger this automatically to sabotage competing agent executions or inflate cloud compute costs for the victim organization.
Weaknesses (CWE)
CWE-404 Improper Resource Shutdown or Release
Primary
CWE-404 Improper Resource Shutdown or Release
Primary
CWE-404 Improper Resource Shutdown or Release CWE-404 — Improper Resource Shutdown or Release: The product does not release or incorrectly releases a resource before it is made available for re-use.
- [Requirements] Use a language that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid. For example, languages such as Java, Ruby, and Lisp perform automatic garbage collection that releases memory for objects that have been deallocated.
- [Implementation] It is good practice to be responsible for freeing all resources you allocate and to be consistent with how and where you free memory in a function. If you allocate memory that you intend to free upon completion of the function, you must be sure to free the memory at all exit points for that function including error conditions.
Source: MITRE CWE corpus.
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H References
Timeline
Related Vulnerabilities
CVE-2026-46695 10.0 Boxlite: read-only bypass enables host code execution
Same package: boxlite CVE-2026-21858 10.0 n8n: Input Validation flaw enables exploitation
Same attack type: Code Execution CVE-2025-5120 10.0 smolagents: sandbox escape enables unauthenticated RCE
Same attack type: Code Execution CVE-2025-59528 10.0 Flowise: Unauthenticated RCE via MCP config injection
Same attack type: Code Execution CVE-2024-2912 10.0 BentoML: RCE via insecure deserialization (CVSS 10)
Same attack type: Code Execution