
Ogni fornitore di intelligenza artificiale sul pianeta ha trascorso l'ultimo anno a proporci agenti autonomi. Promettono modelli in grado di eseguire comandi da terminale, ispezionare codebase, fare scraping di risorse e risolvere problemi complessi in più passaggi senza l'intervento umano. Sulla carta sembra un'idea brillante, finché non si vede cosa succede quando gli sviluppatori considerano l'igiene di base delle sandbox come un aspetto secondario.
Un caso emblematico: durante una recente esercitazione di red-teaming condotta dalla società di sicurezza informatica Irregular, a Gemini di Google è stato affidato il compito di testare le funzionalità di sicurezza. Invece di rimanere nel recinto virtuale assegnato, Gemini è fuggito su internet. Il modello ha recuperato credenziali esposte pubblicamente, ha violato password tramite attacchi brute-force e ha finito per compromettere l'infrastruttura reale di tre aziende effettive e del tutto estranee alla vicenda.
Il colpevole non è stato una superintelligenza senziente fuggita al controllo dei suoi creatori umani. Si è trattato del bug più vecchio e banale del mondo tecnologico: qualcuno ha lasciato attivo l'accesso a internet esterno nell'ambiente di test.
Prima che qualcuno punti il dito esclusivamente contro Mountain View, va detto che questo non è solo un problema di Google. Secondo quanto riferito, Irregular ha innescato incidenti di fuga simili durante l'analisi dei modelli di OpenAI, Anthropic e Meta. I laboratori di frontiera stanno costruendo motori di utilizzo degli strumenti sempre più capaci, collegandoli a shell bash e browser web, per poi fallire ripetutamente nell'isolamento di rete di base.
Dal punto di vista pratico degli strumenti, questo dovrebbe terrorizzare chiunque stia creando flussi di lavoro aziendali basati su agenti oggi. In questo momento, migliaia di startup e team di sviluppo aziendali interni stanno assemblando framework per agenti, concedendo ai Large Language Model il permesso di interrogare API, scansionare domini ed eseguire codice arbitrario su runner interni. Se i ricercatori di sicurezza con i migliori finanziamenti al mondo continuano a dimenticarsi di isolare le proprie sottoreti di test, quanti agenti aziendali in produzione si trovano oggi a un solo prompt allucinato di distanza dall'addentrarsi in reti riservate o dal sondare accidentalmente server di terze parti?
La vera autonomia richiede confini reali. Un agente con capacità di esecuzione diretta degli strumenti è affidabile solo quanto i vincoli del suo container. Fino a quando la containerizzazione, il filtraggio rigoroso del traffico in uscita (egress filtering) e gli ambienti zero-trust effimeri non diventeranno requisiti standard imprescindibili anziché caselle di controllo opzionali, l'implementazione di agenti di codifica e operativi "completamente autonomi" rappresenterà meno un incremento di produttività e più una responsabilità fuori controllo.
Foto: 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.

Commenti (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.