Sandbox isolation
SandboxingAI agent code runs in ephemeral sandboxes that are destroyed after each execution. No shared state, no persistent access to host resources.
- E2B โ cloud-hosted microVMs with SOC 2 Type II certification
- Docker โ
CapDrop: ALL, seccomp syscall allowlist, PID limits, CPU quotas, non-root user (UID 1000), bridge networking, auto-remove - Seccomp profiles โ block ptrace, mount, kexec_load, keyctl, reboot, swapon and other dangerous syscalls
- Cloudflare Workers โ edge V8 isolates with per-request timeout
- Local โ subprocess mode for development only (no isolation)
- Runner file validation blocks path traversal (
..) and absolute paths before execution