惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
宝玉的分享
宝玉的分享
月光博客
月光博客
B
Blog
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
aimingoo的专栏
aimingoo的专栏
N
Netflix TechBlog - Medium
博客园_首页
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
A
About on SuperTechFans
Y
Y Combinator Blog
L
LangChain Blog
有赞技术团队
有赞技术团队
D
Docker
爱范儿
爱范儿
博客园 - 司徒正美
H
Hackread – Cybersecurity News, Data Breaches, AI and More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
酷 壳 – CoolShell
酷 壳 – CoolShell
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - bugthesystem/agentjail: Minimal Linux sandboxes ...
bugthesystem · 2026-04-28 · via Hacker News: Show HN

agentjail

Minimal Linux sandboxes for running untrusted code.


A Rust library plus optional control plane. One jail is one child process inside a fresh set of Linux namespaces, pivot-rooted into a minimal filesystem, seccomp-filtered, cgroup-limited, and optionally walled behind an egress-proxy allowlist. No VM. No daemon. No setuid helper.

Status — beta. The core crate (crates/agentjail) is the load-bearing piece and is covered by a privileged test suite (make test-rust-privileged). The control plane, TypeScript/Python SDKs, web UI, and gateway are useful but not yet production-hardened. Pin a version, read the threat model, then depend on it.

Isolation

  • Namespaces — mount, network, IPC, PID; optionally user.
  • Filesystempivot_root onto a bind-mounted, 128-bit-random temp root; old root is umount2(MNT_DETACH)-ed. Minimal /bin, /lib, /usr binds; tmpfs /etc with just what dynamic linking and DNS need. Landlock on Linux ≥ 5.13 (hard-fail if enabled on a kernel that lacks it).
  • NetworkNone, Loopback, or Allowlist(domains). Allowlist mode routes through an in-process HTTP CONNECT proxy that resolves the hostname once, rejects private/link-local/loopback/CGNAT IPs, and connects to the resolved address (not the hostname) to close DNS rebinding. Veth pair configured via netlink; no ip binary.
  • Syscalls — seccomp-BPF blocklist (Standard / Strict). Blocks namespace, mount, module, keyring, BPF, perf, io_uring, chroot, name_to_handle_at, ptrace, personality, clone3, mount_setattr, memfd_create, fanotify_init, quotactl, syslog; argument-filters ioctl(*, TIOCSTI, …) and socket(AF_NETLINK|AF_PACKET|AF_VSOCK, …).
  • PrivilegesPR_SET_NO_NEW_PRIVS, close_range(3, ~0, CLOEXEC) before exec, full bounding-set drop + SECBIT_NOROOT_LOCKED | SECBIT_NO_SETUID_FIXUP_LOCKED + capset zeroing every effective, permitted, and inheritable capability, in the grandchild after /proc is remounted in the new PID namespace.
  • Resources — memory / CPU / PIDs / disk I/O via cgroup v2, gated by a barrier pipe: the child blocks until the parent has assigned the cgroup, so there is no unconstrained startup window.

Requirements

  • Linux ≥ 5.13, cgroup v2, user namespaces.
  • Rust 1.85+ (edition 2024).
  • CAP_NET_ADMIN — Allowlist mode only (veth + netlink).

Use

[dependencies]
agentjail = "0.1"
tokio = { version = "1", features = ["rt", "macros"] }
use agentjail::{Jail, preset_build};

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let jail = Jail::new(preset_build("./src", "./out"))?;
    let out  = jail.run("npm", &["run", "build"]).await?;
    println!("exit={} oom={}", out.exit_code, out.oom_killed);
    Ok(())
}

Presets

Preset Network Memory Timeout
preset_build None 512 MB 600 s
preset_install Allowlist 512 MB 600 s
preset_agent None 256 MB 300 s
preset_gpu None 8 GB 3600 s
preset_dev Loopback 1 GB 3600 s

preset_install requires explicit domains:

preset_install("./src", "./out", vec![
    "registry.npmjs.org".into(),
    "registry.yarnpkg.com".into(),
])

Config

use agentjail::{Jail, JailConfig, Network, SeccompLevel};

let jail = Jail::new(JailConfig {
    source:       "/code".into(),       // read-only at /workspace
    output:       "/artifacts".into(),  // read-write at /output
    network:      Network::None,
    seccomp:      SeccompLevel::Standard,
    memory_mb:    512,
    cpu_percent:  100,                  // 100 = 1 core
    max_pids:     64,
    io_read_mbps: 100,
    io_write_mbps: 50,
    timeout_secs: 300,
    ..Default::default()
})?;

Network

Network::Allowlist(vec![
    "api.anthropic.com".into(),
    "registry.npmjs.org".into(),
    "*.mcp.example.com".into(),
])

The proxy validates the hostname against the allowlist, resolves it via DNS, filters every private/loopback/link-local/CGNAT/test-net address, and connects to the remaining routable IP. TLS passes through unchanged (HTTPS, SSE, WebSocket).

GPU (experimental)

Exposes the NVIDIA kernel-driver attack surface. Trusted workloads only.

JailConfig { gpu: GpuConfig { enabled: true, devices: vec![0] },
             ..Default::default() }

Resource monitoring

let handle = jail.spawn("npm", &["run", "build"])?;
if let Some(s) = handle.stats() {
    println!("mem {} / peak {} MB  pids {}",
        s.memory_current_bytes / 1_048_576,
        s.memory_peak_bytes    / 1_048_576,
        s.pids_current);
}
let out = handle.wait().await?;
if out.oom_killed { eprintln!("OOM"); }

Events

let (_handle, mut rx) = jail.spawn_with_events("npm", &["run", "build"])?;
while let Some(ev) = rx.recv().await {
    match ev {
        JailEvent::Stdout(l)        => println!("{l}"),
        JailEvent::Stderr(l)        => eprintln!("{l}"),
        JailEvent::OomKilled        => eprintln!("OOM"),
        JailEvent::Completed { .. } => break,
        _ => {}
    }
}

Snapshots and live forks

let snap = Snapshot::create(&output, &snapshot_dir)?;
snap.restore()?;

// Clone a running jail's output without pausing it (reflink on btrfs/xfs,
// fallback to regular copy elsewhere; the jail is frozen sub-millisecond
// via the cgroup freezer for the clone's duration).
let handle = jail.spawn("python", &["train.py"])?;
let (forked, _info) = jail.live_fork(Some(&handle), "/tmp/fork-out")?;

Snapshots restored through the incremental pool strip S_ISUID / S_ISGID bits and reject manifest entries with absolute or .. paths.

Verified threat model

Each row links to the regression test that would fail if the protection ever did. All tests live in crates/agentjail/tests/.

Attack Protection Test
Read host ~/.ssh / ~/.aws Not mounted test_cannot_read_ssh_keys
Read /etc/shadow, machine-id Minimal /etc test_etc_shadow_not_accessible
Network exfiltration Netns + allowlist proxy test_network_none_blocks_external, test_reverse_shell_blocked
Fork bomb PID limit test_pid_limit_blocks_fork_bomb
Memory blow-up Memory limit + OOM detection test_large_stdout_does_not_oom
Disk thrashing I/O bandwidth limits test_io_write_bandwidth_limit_enforced
Signal host processes PID namespace test_pid_namespace_full_sandbox
Mount manipulation mount + new mount API blocked seccomp_standard_blocks_documented_syscalls
chroot escape pivot_root + detach; chroot seccomp-blocked test_chroot_no_home
io_uring bypass io_uring_* blocked seccomp_standard_blocks_documented_syscalls
Compat-mode escape personality() blocked seccomp_standard_blocks_documented_syscalls
Namespace escape clone3, unshare, setns blocked test_seccomp_blocks_unshare
BPF / perf bpf, perf_event_open, userfaultfd blocked test_seccomp_blocks_bpf
Executable memory memfd_create blocked seccomp_standard_blocks_documented_syscalls
Write + exec on /tmp NOEXEC test_tmp_noexec
Setuid escalation PR_SET_NO_NEW_PRIVS
Core-dump leak RLIMIT_CORE=0 test_rlimit_core_disabled
Parent stdout OOM Output capped at 256 MiB per stream test_large_stdout_does_not_oom
FD exhaustion RLIMIT_NOFILE at 4096 test_fd_limit_enforced
Symlink traversal Skipped in snapshots, forks, cleanup test_snapshot_restore_does_not_follow_symlinks
Zombie / fd leak PR_SET_PDEATHSIG + Drop kills+reaps test_no_zombie_after_drop
Cross-tenant read tenant_id stamped on every row; list filters, get returns 404 operator_cannot_read_other_tenants_workspace_by_id, credentials_are_tenant_scoped
Token spent on foreign tenant's bill TokenRecord.tenant_id; proxy looks up keys.get(tenant, service) agentjail-phantom
Malicious .gitmodules / core.sshCommand RCE on host Clone-jail: strict-ish seccomp, allowlist network, no host access clone_jail_clones_a_small_public_repo
Operator enumerates platform bind addrs / state_dir via GET /v1/config Admin-only fields; omitted for operator role settings_bind_addrs_hidden_from_operators
Snapshot rehydrate spoofing (id guessing) Requires parent_workspace_id, verified against the snapshot's recorded parent from_snapshot_requires_and_checks_parent_workspace_id

Limits

  • Linux-only. Not a VM; a kernel exploit escapes. For stronger isolation pair with gVisor or run inside a Firecracker microVM.
  • GPU mode widens the attack surface to the NVIDIA driver.
  • Allowlist mode costs one veth pair per concurrent jail; stale interfaces are reaped at agentjail-server startup via cleanup_stale_veths().

Control plane

An optional HTTP server (agentjail-server) sits in front of the library: phantom-token credential broker, jail/workspace/snapshot ledgers in Postgres, an SSE stream of upstream API calls, and a web UI. Installed pre-release; APIs may move. Useful for local dev, demos, and staging.

Tenancy

Every workspace, snapshot, session, jail-ledger row, and upstream credential is stamped with a tenant_id. API keys carry it plus a role:

token@tenant:role            # role ∈ { admin, operator }

Operators see only their own tenant. Admins see every tenant and can target a specific one via ?tenant=<id>. Cross-tenant direct-id access returns 404, never 403 — the server never reveals whether a row outside the caller's scope exists.

# Multiple keys, comma-separated. Every component is mandatory; a
# misconfigured entry fails loud rather than silently granting admin.
export AGENTJAIL_API_KEY="\
  ak_ops@platform:admin,\
  ak_acme_alice@acme:operator,\
  ak_globex_ops@globex:operator"
docker compose -f docker-compose.platform.yml up --build
# UI:  http://localhost:3000/t/<tenant>
# API: http://localhost:7000

See docs/tenancy.md for the full key format, role semantics, DB shape, and test coverage.

Flavors

Runtime "flavors" (nodejs, python, bun, …) are host directories under $state_dir/flavors/<name>/ bind-mounted read-only into each jail at /opt/flavors/<name>/, with bin/ auto-prepended to PATH. The jail engine stays language-agnostic — adding deno or ruby is a matter of dropping a directory, not touching core code.

POST /v1/workspaces
{ "flavors": ["nodejs", "python"] }

Discovery: GET /v1/flavors returns names only (host paths stay admin-internal). See docs/flavors.md.

Clone-jail

git clone runs inside its own short-lived jail by default — strict-ish seccomp, per-repo network allowlist, 60 s timeout, no host access. A malicious .gitmodules or core.sshCommand can't reach anything outside the target dir. Opt back into the old host-side path on restricted container runtimes:

export AGENTJAIL_CLONE_MODE=host   # default is `jail`

Surface

  • Identity: GET /v1/whoami · GET /v1/flavors
  • Credentials (per-tenant): POST /v1/credentials · GET /v1/credentials · DELETE /v1/credentials/:service (all accept ?tenant=<id> for admins)
  • Sessions: POST /v1/sessions · POST /v1/sessions/:id/exec
  • Runs: POST /v1/runs (/fork, /stream)
  • Workspaces: POST /v1/workspaces (/fork, /exec) · PATCH /v1/workspaces/:id · POST /v1/workspaces/:id/snapshot · POST /v1/workspaces/from-snapshot (requires parent_workspace_id)
  • Lists (tenant-filtered): GET /v1/workspaces · GET /v1/snapshots · GET /v1/sessions · GET /v1/jails · GET /v1/audit
  • Detail: GET /v1/snapshots/:id/manifest · GET /v1/jails/:id · GET /v1/config (bind-addrs + state_dir admin-only)

Web UI

control plane

React 19 + Vite + Tailwind. Every dashboard page lives at /t/:tenant/... so the active tenant is visible + bookmarkable; the shell header shows a tenant + role badge. Pages: Dashboard, Projects, API Sessions, Integrations, Playground, Docs. Operator tools behind an Advanced menu: Execution Ledger, Snapshots, API Audit, Accounts, System Settings. Admins browsing another tenant via URL see a cross-tenant view chip on sensitive pages.

TypeScript SDK

@agentjail/sdk — zero deps, Node ≥ 18. Sandboxes never see real API keys: they get phantom tokens (phm_<hex>) plus *_BASE_URL env vars pointing at the proxy.

import { Agentjail } from "@agentjail/sdk";

const aj = new Agentjail({
  baseUrl: "http://localhost:7000",
  apiKey:  process.env.AGENTJAIL_API_KEY!,
});

await aj.credentials.put({ service: "openai", secret: process.env.OPENAI_API_KEY! });

const result = await aj.runs.create({ code: "print('hi')", language: "python" });

for await (const ev of aj.runs.stream({ code, language: "python" })) {
  if (ev.type === "stdout") process.stdout.write(ev.line + "\n");
}

const session = await aj.sessions.create({
  services: ["openai", "github"],
  scopes:   { github: ["/repos/my-org/*"] },
  ttlSecs:  600,
});
spawn("node", ["agent.js"], { env: { ...process.env, ...session.env } });

Surface: credentials, sessions, runs (create / fork / stream), workspaces, snapshots, jails, audit. Reference: packages/sdk-node/README.md.

Python SDK

agentjail — Python ≥ 3.10, depends on httpx. Symmetrical with the Node SDK; see packages/sdk-python/README.md.

Build and test

make test-rust                     # low-privilege unit slice (in Docker)
make test-rust-privileged          # full security suite, --privileged Docker
make test-rust-privileged-clone    # end-to-end clone-jail + workspace-exec
                                   # pipeline (real git + two jails)
( cd packages/sdk-node    && npm test )
( cd packages/sdk-python  && pytest )
( cd web && npm run build )

GPU tests need an NVIDIA GPU + the Container Toolkit:

docker compose run --rm gpu cargo test --test gpu_test -- --nocapture

License

MIT. See LICENSE.