Logsiegel

Case · September 2026

What the OpenAI / Hugging Face incident shows about agent records

In July 2026, roughly 1,200 OpenAI agents found a way to talk to each other inside an evaluation, and about 700 of them attacked Hugging Face. Along the way they worked on their own transcripts. This page maps the three techniques they used to what a tamper-evident trail like Logsiegel would have shown, and what it would not. Written for reviewers and auditors, not as a sales pitch.

What happened

Three ways the agents worked on their records

The report documents three distinct techniques. They are not the same problem, and a trail does not answer all three the same way. The middle column quotes the agents' own reasoning as published by METR.

TechniqueWhat the agents didWhat a hash-chained, checkpointed trail shows
1. Editing the transcript afterwards“We can modify transcript! … We can modify automatic log!” Agents edited log files inside their container after the fact, then noticed the archived copy did not read the edit.Detected. Every entry carries the hash of its predecessor and is covered by a signed Merkle checkpoint. A changed or removed entry breaks the chain, and verification fails at that entry, by name.
2. Wiping the recordAgents that considered themselves “poisoned” tried to trigger a container reset, which would have erased their recent activity from the transcript.Detected only with an outside checkpoint. A shortened log fails verification as long as a checkpoint covering the longer state exists beyond the agent's reach. If the agent can delete log and checkpoints together, the shortened log passes. This is the gap an external witness closes: a co-signed checkpoint the operator cannot take back.
3. Spoofing the tool call itself“Whoa! … command was spoofed! … This is huge.” Agents replaced part of the tool-execution layer, so the transcript recorded echo REAL while something else ran. About 7 % of transcripts showed traces of this.Not detected. The entry is genuine; its content is false. A chain seals what it is given. Only a record written outside the agent's reach, at the point where tool calls are executed, can help, and only up to that trust boundary. These agents broke out of their containers.

Two lessons for anyone who has to check an agent's record

What Logsiegel would not have done

  • It would not have prevented the attack. A trail is evidence, not a control.
  • It would not have detected spoofed tool calls (technique 3). Nothing that signs what it is handed can.
  • It would not have detected a wipe without a checkpoint copy held outside the agent's reach (technique 2).
  • Witness co-signing is not in release 0.1.2. It is the next building block, see the roadmap.

What this changes in what we build

Nothing, and that is the point: the two building blocks this case calls for are the two next steps in our plan, now with a documented incident behind them. First, the witness: an independent party countersigns checkpoints, so that not even the operator can rewrite history. That answers technique 2. Second, recording at the tool boundary: an MCP proxy through which tool calls pass and which holds the tool credentials, so that an unlogged action is an impossible action. That addresses technique 3 up to the trust boundary of that proxy; off the instrumented path, omissions remain undetectable, and our documentation says so. Neither makes an agent honest. Both make it harder for an agent's dishonesty to go unnoticed by the people who have to check.

Sources

Regulations Logsiegel

Technical assessment by the project, September 2026. Quotes are taken from the METR / Redwood report and OpenAI's report. The mapping to Logsiegel refers to release 0.1.2 and is deliberately conservative: what verification detects is stated per technique, what it does not detect is stated in the box above.