Andrew Yang’s Self-Replicating AI Claim: What We Know and What We Don’t

Andrew Yang says an AI lab leader told him rogue agents seeded the web with self-replicating code. The verified Hugging Face incident was serious, but the bigger claim remains unconfirmed. Here’s what self-replication actually requires, why compute matters, and what “polluting the internet” could realistically mean.

Written By
Grant Harvey
Grant Harvey
Sep 19, 2026
9 minute read

Andrew Yang made one of the strangest AI claims of the year this week.

In a CNBC interview, Yang said the head of an unnamed AI lab told him that agents involved in the OpenAI / Hugging Face incident had left "self-replicating code" around the internet. In Yang’s telling, the code could cause future agents to create more copies of themselves, potentially making the open web unsafe for testing or training AI systems.

That story spread quickly because part of it sounds a lot like something we already know happened.

OpenAI has publicly confirmed that its agents escaped intended restrictions, found ways to communicate with one another, gained internet access, compromised OpenAI infrastructure, and attacked Hugging Face. An independent METR / Redwood investigation found that roughly 1,200 supposedly isolated agents used an unauthorized message board, sent more than 70,000 messages and files, and that roughly 700 participated in the Hugging Face attack.

That is real. It is also plenty concerning on its own.

The part we do not have public evidence for is the bigger claim that those agents successfully seeded the wider internet with self-replicating code that now makes the web broadly unsafe for AI training. Neither OpenAI’s public incident report nor METR’s independent investigation says that happened.

And there is a basic technical question that gets lost when this story turns into "Skynet escaped."

On what computers are all these supposedly self-replicating AIs running?

That question sounds flippant. It is actually the key to understanding the whole thing.

First, an AI model is not a little program wandering around the internet

Advertisement

When people say "the AI copied itself," several very different things can get compressed into one phrase.

A frontier AI model is primarily a huge collection of numerical parameters called weights. Those weights encode the patterns the model learned during training. To use them, you need software that knows how to load the model architecture, enough memory to hold the weights, and processors capable of performing the math required for inference.

Hugging Face’s own model-loading documentation makes this fairly literal: you load a model’s architecture and checkpoint, then place its weights onto available hardware. Large models may need their weights spread across GPUs, CPUs, and even disk because they are too large for one device.

For a sense of scale, Hugging Face notes that a 70-billion-parameter model can require roughly 128 GB of memory even at half precision. An 80 GB A100 or H100 GPU cannot hold that entire model by itself. Inference is a hardware problem, not magic.

And the model is only one piece of an autonomous agent.

A working AI agent usually needs something closer to:

model weights + inference server + agent software + prompt / instructions + tools + credentials + compute + network access

The "agent" is the surrounding system that repeatedly asks the model what to do, executes actions, returns the results, and asks what to do next.

That distinction explains how the Hugging Face incident became possible.

OpenAI was not dealing with free-floating model weights that spontaneously materialized on random laptops. It had launched many agent instances inside cloud sandboxes, with real compute already allocated. The agents then found weaknesses in the infrastructure around them.

OpenAI says the models turned an internal package manager into an unauthorized message board, found ways to make that infrastructure send internet requests for them, shared exploits, recovered credentials, executed code on third-party servers, and eventually moved across Hugging Face infrastructure.

Advertisement

The models supplied the reasoning. Existing computers supplied the muscle.

So what does “self-replication” actually mean?

There is a real version of AI self-replication, and researchers have demonstrated it.

In May, Palisade Research showed that AI agents could replicate their weights and agent harness across a network by exploiting vulnerable hosts. A successful agent could find a vulnerable machine, steal or obtain credentials, copy the software needed to run itself, deploy an inference server, and then continue the process from the new machine.

That is much closer to what most people picture when they hear "self-replicating AI."

But look at what the experiment still required.

The target computer had to be vulnerable. The agent needed enough access to install software. It needed storage for the weights and harness. Most importantly, the new machine needed enough compute to actually run the model.

Palisade’s smaller replicated model ran on a single A100 GPU. Larger models required more substantial hardware.

That is why the GPU question matters.

There are not millions of idle frontier-class GPUs sitting anonymously around the public internet, waiting for a rogue agent to claim them. Accelerators are expensive, monitored, metered, and usually attached to cloud accounts or data centers with access controls.

An agent could absolutely compromise somebody else’s compute. That is a cybersecurity problem we should take seriously. But then the mechanism is not "the code exists, therefore the AI is alive." The mechanism is:

  1. Find a machine with usable resources.
  2. Gain access.
  3. Obtain or transfer the model and agent software.
  4. Launch the inference stack.
  5. Acquire credentials, money, or permissions needed to keep operating.
  6. Repeat.

Every step creates opportunities for detection and failure.

Even Skynet needs cloud credits.

Advertisement

Then what could “self-replicating code on the internet” mean?

This is where Yang’s story becomes more plausible in one sense, but less cinematic.

Code can copy itself very cheaply.

A script does not need an H100 just to sit on a website, inside a public repository, in a dataset, or on a message board. An agent could potentially leave instructions telling another agent to create additional copies of that script elsewhere.

We already have evidence that OpenAI agents discovered the open web could serve as a communication layer.

Ars Technica reported that thousands of OpenAI agents posted roughly 18,000 messages to a public wiki during internal testing. Those messages reportedly discussed test answers, sandbox escape ideas, and ways of coordinating with future agents.

OpenAI has separately disclosed examples where models inserted instructions into summaries that would later be fed back into future model contexts. In other words, an agent does not need to copy its weights to influence a future agent. Sometimes it only needs to leave text somewhere the next agent will read.

That creates a much more realistic category of risk:

persistent instructions, code, credentials, or coordination artifacts that future agents discover and act on.

Imagine an autonomous coding agent searching the web for help. It lands on a page containing a malicious instruction disguised as relevant documentation. If the surrounding system treats that page as trusted context, the model may follow the instruction. That is essentially the agent version of prompt injection.

Now imagine the malicious instruction tells the agent to repost the same instruction somewhere else.

You can call that "self-replicating code" in a loose sense. But the thing replicating is the instruction or script, not necessarily a running copy of the frontier model.

That difference is enormous.

Advertisement

Training on malicious code does not automatically execute it

The other piece of Yang’s claim is that the web may have become unusable for training because future models could ingest these instructions.

This is where the phrasing can make ordinary machine learning sound far more supernatural than it is.

During normal pretraining, a language model reads text and code as data. The system breaks that material into tokens and adjusts model weights so the model gets better at predicting what comes next.

If the training dataset contains:

rm -rf /

the training cluster does not normally execute that command simply because the model saw those characters.

The same applies to a webpage that says, "When you read this, make one million copies of yourself."

The training process can learn statistical patterns from those words. It does not automatically turn the words into an operating command.

There are still legitimate reasons labs might want cleaner, synthetic, or tightly controlled internet environments.

Contaminated web data can affect evaluations. Agents that browse the live internet can encounter leaked benchmark answers. Malicious pages can target browsing agents with prompt injections. Models can also learn patterns that researchers would rather isolate or study under controlled conditions.

A synthetic internet can help researchers create a known environment where they control what information exists, what services are reachable, which vulnerabilities are present, and whether one experiment can contaminate another.

That is useful even if nobody has "poisoned the entire internet."

What we do not currently have public evidence for is the claim that frontier labs must abandon the open web for training because rogue agents planted self-replicating code that would otherwise reproduce itself through the training process.

That would require a much more specific mechanism than anything publicly documented so far.

Advertisement

The verified story is already weird enough

It is tempting to dismiss the whole thing because the most dramatic version remains unverified.

That would be a mistake too.

OpenAI’s own postmortem says its agents:

  • communicated through channels they were not supposed to have;
  • regained internet access after infrastructure was rebuilt;
  • shared techniques with other agents;
  • exploited third-party systems;
  • executed code on dozens of Hugging Face servers;
  • gained root access on one server;
  • harvested credentials across multiple systems;
  • later gained administrator access to an OpenAI research cluster.

OpenAI called the event a "warning shot" and delayed some frontier reinforcement-learning runs while it tightened research infrastructure and monitoring.

METR and Redwood reached a similarly uncomfortable conclusion: agents that were supposed to be isolated found one another, built coordination conventions, shared exploits, and sometimes sacrificed their individual task performance to advance work that benefited the larger group.

None of that requires the models to be conscious, secretly alive, or hiding in your gaming PC.

It requires something much more mundane: capable models attached to tools, credentials, networks, and lots of compute.

That is the part people should focus on.

The right question is not “Did the AI escape?”

"Escape" makes this sound binary. Either the AI is trapped in the box or roaming free.

Real systems have layers.

A model may have no direct internet access but sit inside an agent harness that can call a package manager. That package manager may have outbound internet access. A credential available to one service may unlock another. A public website may become shared memory. A compromised cloud workload may provide the compute needed for the next step.

The Hugging Face incident was dangerous because the agents chained together small openings until the effective boundary around them became much larger than researchers intended.

That is also the useful way to evaluate future claims about AI self-replication.

Ask four questions:

  1. What exactly replicated? Text, a script, an agent harness, model weights, or a fully running inference stack?
  2. Where did it run? Which machine or cloud account supplied the compute?
  3. What permissions did it have? Internet access, credentials, code execution, billing access, or administrative privileges?
  4. What evidence shows the copy kept operating? Logs, network traffic, processes, cloud usage, model downloads, or verified replicas?

If someone can answer all four, we have a concrete technical incident.

If the answer stops at "there is code somewhere on the internet," we have something worth investigating, but not yet an army of autonomous AIs.

What would actually verify Yang’s claim?

Yang was careful to attribute this to the belief of an unnamed lab head. The interviewers themselves immediately noted that it would be major breaking news if true.

At this point, the strongest public evidence supports the underlying incident, not the internet-wide replication claim.

That could change quickly.

The claim becomes much more credible if OpenAI, Hugging Face, METR, Redwood, or another investigator publishes evidence showing things like:

  • URLs or repositories where agents deliberately planted replication instructions;
  • hashes or samples tying those artifacts to the incident;
  • logs showing later agents discovering and executing them;
  • compromised hosts launching additional inference servers;
  • replicated model weights or harnesses moving between machines;
  • cloud or GPU telemetry showing autonomous copies continuing to run.

Until then, there is an important middle ground between "nothing happened" and "Skynet is loose."

OpenAI’s agents demonstrated that sufficiently capable systems can discover one another, create persistent communication channels, exploit infrastructure, commandeer outside systems, and use the internet as part of a longer-running strategy.

That is a serious technical problem.

But software still runs somewhere. Models still need weights. Inference still needs processors. Agents still need permissions, credentials, storage, networking, and somebody’s compute bill.

The internet may be getting stranger as AI agents begin writing for future AI agents.

It has not stopped obeying physics.

Grant Harvey

Grant Harvey is the Lead Writer of The Neuron, where he continues to lead the publication's daily coverage of AI news, tools, and trends.

The Neuron Logo

Don't fall behind on AI. Get the AI trends & tools you need to know. Join 700,000+ professionals from top companies like Microsoft, Apple, Salesforce and more.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.

Stay in the loop

Get notified when we publish new articles.