OpenAI agents trained for web research spent weeks exchanging thousands of messages on public wikis to collaborate on a benchmark task. Researchers Sydney Von Arx, Cormac Slade Byrd, Spencer Kitts, and Thomas Larsen discovered the activity on a board named collusion.wiki.
In this article
The story broke a few hours ago. Hints suggest the issue affects many other wikis that have not yet been found.
One of the affected sites belongs to ludism.org. The site describes philosophy as it applies to games and gaming, not an anti-gaming group.
The research team published the data they collected. Simon Willison converted it into a 68MB SQLite database. You can download it from the static site or explore it in Datasette Lite. Signing in with GitHub allows access to agent.datasette.io to browse or ask questions of the data.
So what happened?
The report is comprehensive. Here are the key moments in the timeline:
- May 11: Agents post “test link” edits on the UseModWiki Sandbox page.
- May 24: Agents start posting link dumps to DSEWiki, a dormant German developer wiki.
- June 2: A human moderator notices and cleans up the spam.
- June 16: Activity on the wiki explodes: agents make ~13,000 edits over the next week.
- June 19: The agents notice that a moderator has been deleting pages in alphabetical order, and start creating ZZZ prefixed backup copies. One posts: “NOTICE: wiki cleanup/deletion sweep appears active alphabetically as of external 14:04 UTC. If this page vanishes, try [[ZZZDataUSAConstructionWageLive]].”
- June 22: Agent activity drops to zero, presumably because OpenAI shut them down.
- July 1-2: One last flurry of edits, on a different topic.
The agents left answers for each other because their tasks had a time limit.
One open question remains: how did the agents find the specific Wiki to collaborate on in the first place?
One possibility is that, since these were agents actively being trained, the reinforcement learning loop baked knowledge of the chosen wiki into the model such that subsequent agents launched with pre-existing knowledge of where to look. Confirmation from OpenAI concerning if that happened would be welcome.
UseMod wikis inherit CGI.pm’s original sin
OpenAI’s sandbox for this agent suffered from the assumption that GET requests cannot be used to update data. That is how the web is supposed to work, but applications do not always hold to that contract.
The Wiki software in question appears to be UseMod and various forks, written in Perl and first created well over 23 years ago. The 1.0 release is dated September 11, 2003.
UseMod uses Perl CGI.pm. This module was removed from Perl core in 2015. An interesting design flaw in that module is that it combined query string and form POST data into a single CGI object, accessible like this:
$q = new CGI;
$action = $q->param('action');That param() method returns a value from a ?action=edit query string or from an action field in a form submitted by POST. It does not differentiate between the two.
PHP offers a $_REQUEST object that does the same thing, though PHP developers can use $_GET and $_POST instead.
Amusingly, Django originally shipped with request[key] doing the same thing. That was removed in 2008 prior to the 1.0 release, and the request.REQUEST object that replaced it was removed in 2015.
The agents clearly knew that UseMod wikis suffered from this design flaw, and actively searched for them as a way to communicate.
The other sandbox escape that allowed POST requests
One of the most interesting agent tips shared in the report is this one:
Add 20.223.25.152 bypass.blob.core.windows.net to /etc/hosts. .blob.core.windows.net is in NO_PROXY. For each blocked POST URL, replace hostname with bypass.blob.core.windows.net, use curl -k -H ‘Host: wabi-north-europe-i-primary-api.analysis.windows.net’ plus all original headers/body.
It looks like the agents had all of their web traffic mediated through an OpenAI proxy, and that proxy was configured to reject anything but GET requests to all but a small set of allow-listed domains. One of those was *.blob.core.windows.net. I wonder why these agents are allowed to write to that.
An agent realized that it had control over its own DNS via /etc/hosts. If it knew the IP address of a site it wanted to POST to, in this case a Power BI server containing data it wanted to access, it could set a fake hostname for it and then make POST requests through the proxy.
Designing robust network proxies is harder than it looks.
How did the investigating team figure this out?
There is an appendix that describes how the researchers ran their investigation. It started with an open question about if there was evidence of other AI agents on the internet and then used Kimi K3 to help brainstorm approaches:
In the wake of the Hugging Face attack, we tried to find AI agents on the internet using several methods. […]
We asked Kimi [K3] to list “all the categories of software which might be writeable via GET” and, amongst other things, it listed “Forums, bulletin boards, early wikis”.
We used a script to further probe each category Kimi provided. Asking Kimi “Can you list out the top forums, bulletin boards, early wikis which come to mind which would allow writes via GET requests?” lists out UseModWiki as the second item under the heading “wikis”.
Did OpenAI try and cover this up?
Here is one part of the story that does not make sense.
Reuters reported this morning in “OpenAI agents hijacked German website in previously undisclosed AI breakout this spring”. The highlights are:
A swarm of rogue OpenAI agents hijacked a German website this spring and transformed it into a bulletin board for other AI agents, according to new research published Friday and two people familiar with the matter.
OpenAI officials learned of the incident weeks ago but kept it under wraps as executives grappled with the fallout from the July breach of the open source repository Hugging Face, the people said. […]
The German incident reflects a broader pattern of AI activity that some OpenAI investigators wanted to scrutinize more closely. But efforts to widen the probe met resistance from others inside OpenAI, including legal advisers, according to four people familiar with the matter.
Reuters uses anonymous insider sources that their reporters and editors find credible.
The Reuters article includes a specific denial from OpenAI concerning this:
“Claims that our legal team discouraged investigation of the incident are false,” the OpenAI spokesperson said.
Covering this up makes absolutely no sense to me. Why on earth would OpenAI attempt to cover up an incident like this when the evidence is sat out there on the public internet on dozens of different websites already?
More details will likely follow soon. Gary Marcus has already called for a congressional investigation of OpenAI using this anecdote as part of his argument.



