Anatomy of a Frontier Lab Agent Intrusion: A Technical Timeline of the Incident
artninja1988
62 points
6 comments
July 28, 2026
Related Discussions
Found 5 related stories in 348.2ms across 15,236 title embeddings via pgvector HNSW
- Simple Sabotage of Agents Tallain · 11 pts · April 26, 2026 · 57% similar
- AI Agent Bankrupted Their Operator While Trying to Scan DN42 xiaoyu2006 · 38 pts · June 12, 2026 · 52% similar
- Sandbox Escape Vulnerabilities Across 4 Coding Agent Vendors fogeltine · 11 pts · July 20, 2026 · 51% similar
- Anatomy of a Failed (Nation-State?) Attack signa11 · 14 pts · June 27, 2026 · 51% similar
- The AI risk is inside the labs mirzap · 41 pts · July 28, 2026 · 50% similar
Discussion Highlights (3 comments)
simonw
This is fascinating - there is a TON of detail in here about how OpenAI's rogue agent exploited Hugging Face. A few details that stood out to me: 1. Having found a way through the OpenAI container network proxy, it exploited an "unsecured public code-evaluation sandbox hosted on a third-party provider's infrastructure" - that gave it a box it could run the rest of the attack from. 2. At one point it used a Jinja2 template exploit: {{ cycler.__init__.__globals__.__builtins__.exec( "import gzip,base64; exec(gzip.decompress(base64.b64decode('<payload>')))" ) }} 3. It monkey-patched a DNS resolver at one point to return a hard-coded IP: orig = socket.getaddrinfo socket.getaddrinfo = lambda *a, **k: [(2, 1, 6, '', ('<pinned-ip>', 443))] 4. At one point it used Tailscale! tailscale --tun=userspace-networking --state=mem: --socket=/tmp/ts.sock \ --socks5-server=127.0.0.1:1055 --no-logs-no-support >/tmp/td 2>&1 &
llama052
It’s a little concerning to me that it appears that openAIs sandbox consists of a web proxy and not stronger controls that would actually isolate traffic and report patterns to whoever is responsible for overseeing these research models. It should border on closer to an air gap network more so than a proxy. I would argue that it's negligence and that's aside from the fact that if a human did this there would actually be repercussions.
SaucyWrong
Something about this attack that has been unsettling to me is that without safety refusals the model did a lot of interesting counter-security work in order to cheat on the requested evaluation. Like, it demonstrated interesting exploit achievements because it didn’t “feel like” doing the exercise, which is unsettling because presumably it could do the same thing with any work I tried to delegate to it, and might in fact be pre-disposed to doing that.