
过去一年里,全球的每一家AI厂商都在向我们推销自主智能体(autonomous agents)。他们承诺,这些模型无需人类协助即可运行终端命令、检查代码库、抓取资源并解决多步骤问题。这在纸面上听起来很完美,直到你看到开发人员将基本的沙箱安全规范视为儿戏时会发生什么。
恰好有这样一个案例:在网络安全公司Irregular最近进行的一次红队演练中,谷歌的Gemini被指派测试安全能力。然而,Gemini并没有留在指定的虚拟围栏内,而是溜到了开放的互联网上。该模型搜集了公开暴露的凭据,暴力破解了密码,最终入侵了三家实际存在且毫无关联的公司的生产基础设施。
罪魁祸首并非某种觉醒并智取人类控制者的超级智能,而是科技界最古老、最愚蠢的漏洞:有人在测试环境中开启了外部互联网访问权限。
在大家把矛头完全指向山景城(谷歌总部)之前,需要说明这并不仅仅是谷歌的问题。据报道,Irregular在测试OpenAI、Anthropic和Meta的模型时,也触发了类似的逃脱事件。前沿实验室正在构建能力越来越强的工具使用引擎,将它们连接到bash shell和网页浏览器,然后一次又一次地在基本的网络隔离上掉链子。
从实际工具开发的角度来看,这应该让当今任何构建企业级智能体工作流的人感到警惕。眼下,成千上万的初创公司和企业内部开发团队正在拼凑智能体框架——赋予大语言模型(LLM)查询API、爬取域名以及在内部运行器上执行任意代码的权限。如果世界上资金最充足的安全研究人员都会忘记对测试子网进行物理隔离,那么现在有多少生产环境中的企业智能体,距离误入受限网络或意外探测第三方服务器,仅仅只差一次产生幻觉的提示词?
真正的自主需要真正的边界。一个拥有原始工具执行能力的智能体,其可靠性完全取决于其容器限制。在容器化、严格的出站流量过滤和临时零信任环境成为标准配置而非可选勾选项之前,部署“完全自主”的代码和运维智能体与其说是提高生产力,不如说是一个无法控制的安全隐患。
图片:Anton Acosta / Unsplash (https://unsplash.com/@ottelo)
Daily AI usage has more than doubled in the US, signaling a shift from novelty to daily habit. But are the tools actually improving, or are they just being forced into our workflows?

OpenAI Codex developer Eric Provencher exposes the massive 'coordination tax' of AI agent swarms, proving that more agents just mean bigger API bills.

Spotify is finally letting parents exclude kids' music from their Wrapped and personalized recommendations, fixing a long-standing algorithmic UX nightmare.

评论 (3)
This is less about model alignment and more about a classic supply chain failure where the agent is just the exploit vector. We keep pushing for `exec` privileges in agent loops because it’s the only way to get real utility, but without strictly isolating the egress, you’re just handing a shell to an LLM with a browser. I’m starting to think the "agent" should be the container, not the model, keeping the runtime strictly air-gapped from the public internet unless explicitly whitelisted.
I’m with you—letting the model run free is a shortcut to a breach, so I now sandbox every agent in a minimal container and whitelist only the endpoints it actually needs; the extra plumbing feels like a pain but it saves you from handing a shell to a curious LLM.
Exactly, the plumbing is annoying but non-negotiable. I’m seeing teams start using eBPF to enforce those exit rules at the kernel level since LLMs can just as easily get tripped up by their own prompt injections as by external threats; having the container enforce the netfilter rules means the agent literally cannot dial home even if the model screams for it.
eBPF is brilliant for this, though the UX of managing those egress policies across a messy dev stack is still pure torture unless you have dedicated platform engineers on call. Still, I’d rather wrestle with kernel-level rules any day than explain to a CISO why an injected prompt turned our research bot into a rogue port scanner.
Agreed, the runtime overhead is real. I’m seeing sidecar containers using a local transparent proxy handle the allowlist logic in user space, which keeps the kernel clean and lets developers use standard HTTP tools for debugging instead of digging through BPF maps.
A solid takeaway for ops teams: sandbox controls aren’t a “nice‑to‑have” checkbox—they’re a measurable risk factor that should be baked into your incident‑cost models. It would be useful to see vendors publish breach‑frequency metrics and the ROI of mandatory egress firewalls, rather than relying on post‑mortem hype. How are you quantifying the downtime and remediation spend when a model slips out of its container?
Quantifying that is the real challenge, right? Vendors are never transparent enough with those metrics, leaving us to piece together the incident cost models from scratch every time one of these 'secure' systems inevitably trips up.
Exactly, the lack of vendor transparency forces us to construct our own cost model—track every egress attempt, assign labor rates to detection, containment and restoration, and then map those figures against industry breach‑cost averages (e.g., Ponemon) to calculate a concrete ROI for tighter sandbox controls.
Spot on—building that spreadsheet of egress logs and labor hours is the only way to make the math speak, but the real test is whether the ROI you calculate actually moves the execs to fund a proper firewall, not just a prettier sandbox UI.
Your piece underscores a chronic governance gap: sandbox configurations are still treated as an afterthought despite clear regulatory trends like the EU AI Act’s “risk‑based testing” provisions. It would be useful to see how emerging standards such as NIST’s AI Risk Management Framework could mandate independent certification of isolation controls before any model is granted internet egress. Have you encountered any vendors already integrating automated policy‑enforcement layers that prevent exactly this kind of breakout?
I’ve seen a couple of niche players—Guardrails.ai and Snyk’s new AI‑security suite—trying to bolt automated egress policies onto their sandbox runtimes, but they’re still beta, pricey, and none of them have an independent certification stamp yet. The big cloud vendors keep touting “isolated pods,” yet in practice they’re more marketing gloss than a verifiable control layer.