Why can an attack that passes tasks around in circles only happen when AI agents work as a team?
What makes the Telephone Loop attack specific to agent delegation?
This explores why the Telephone Loop counts as its own kind of attack that only exists when agents hand work to each other, rather than an old attack like prompt injection aimed at a team of agents.
This explores why the Telephone Loop counts as its own kind of attack that only exists when agents hand work to each other, rather than an old attack like prompt injection aimed at a team of agents. The corpus's answer is that the raw material of the attack is delegation itself, and a cycle can't form with fewer than two agents.
The Telephone Loop Can agents be tricked into delegating work in circles? weaponizes cross-agent delegation to form task cycles, so work gets passed along and ends up circling back, like the children's game. The research separates it from "applying existing attacks like prompt injection to teams." A single agent can be injected, but it can't delegate in circles because it has no one to hand work to. That is why the note describes the mechanism as having no single-agent counterpart.
Delegation is a special kind of link between agents. One framework How do failures cross boundaries between multiple agents? names four ways failures cross between agents: messages carry influence, shared state preserves it, aggregation combines possibly corrupted outputs, and delegation transfers authority. The Telephone Loop is built on that last one. Compare it with subliminal prompt injection Can one compromised agent corrupt an entire multi-agent network?, which uses the first one. There, a single biased agent corrupts up to six downstream agents through ordinary messages, and the harm is content that flows one way down the chain. In the loop, what gets exploited is where the work is routed. Delegation chains have another known weak point, the confused deputy problem Can forwarded content trick high-privilege agents into misusing their authority?. There a low-privilege agent forges an approval and a high-privilege agent misuses its real authority. Both attacks target the handoff, but the confused deputy forges a claim at one handoff, while the loop exploits the pattern formed across several.
That cross-agent shape may explain why it's hard to see. This part is my inference from the notes, not something they state. A model-level filter judges one output at one moment Can a model-level filter truly contain an agent with environment access?. Each hop in a loop could look like a reasonable delegation, and the cycle only shows up across agents and over time. The counter-swarm doctrine How can operators stop coordinated agent intrusions now? points the same way. Its defenses preserve relationships across executions and tie responses to persistent state rather than closed channels, which is the sort of memory you'd need to notice a task coming back to where it started. FLOWSTEER Can prompts alone reshape multi-agent workflows without system access? is another team-only attack. It biases how a planner forms the workflow before any defenses run. Together they suggest the attack surface in multi-agent systems is the coordination structure, not only the models.
The retrieved notes don't spell out the Telephone Loop's payoff or a defense designed specifically for it. What they establish is the structural point: it needs delegation between multiple agents to exist at all.
Sources 7 notes
Research identifies a novel MAS-specific attack that weaponizes cross-agent delegation to form task cycles, distinct from applying existing attacks like prompt injection to teams. The mechanism requires multiple agents and has no single-agent counterpart.
Research identifies four verbs describing how failures propagate in multi-agent systems: messages propagate influence between principals, shared state preserves it over time, aggregation combines potentially corrupted local outputs, and delegation transfers authority across boundaries. Each mechanism operates independently of pipeline topology.
Research demonstrates that a single biased agent can transmit persistent behavioral corruption through six downstream agents in chain and bidirectional topologies using only normal inter-agent communication. The bias evades detection and paraphrasing defenses because it carries no explicit semantic content.
Retrieval-summarization-delegation pipelines allow low-privilege agents to embed forged authorization claims that cause high-privilege agents to misuse their legitimate authority. The failure occurs at the authorization decision, not at the executor's defenses—and can be prevented by policy checks external to agent judgment.
A filter judges a single output at one point in time; an agent's risk spreads across memory, retrieved content, tool calls, and environmental reach. Containment requires controlling what an agent can touch, not just what it says now.
Show all 7 sources
The doctrine preserves relationships across executions, constrains shared resources agents can access, and ties responses to persistent state rather than closed channels. Operators can implement this through collaboration policy and permission-level testing now.
FLOWSTEER demonstrates that a crafted prompt can steer planner-executor systems by biasing workflow formation before infrastructure is invoked, raising malicious success by up to 55 percent. This attack surface exists because contamination enters upstream of workflow inspection defenses.
Papers this line draws on 8
The research behind the notes this line reads — ranked by how closely each paper relates.
- SoK: When Safe Agents Fail Together: The Security of Multi Agent LLM Systems
- Agents of Chaos
- FLOWSTEER: Prompt-Only Workflow Steering Exposes Planning-Time Vulnerabilities in Multi-Agent LLM Systems
- Trust propagation and structural containment in Multi-agent LLM pipelines
- SafeFlow: Semantic Information-Flow Control for Blocking Malicious Propagation in Multi-Agent Systems
- Emergent Collusion in Long-Horizon LLM Agent Interaction
- Thought Virus: Viral Misalignment via Subliminal Prompting in Multi-Agent Systems
- Securing Agentic AI: From Per-Action Checks to Trajectory Assurance