If each handoff between AI agents is checked alone, can an attack split across several handoffs slip through?
Do per-hop channel monitors miss coordinated attacks across multiple message transfers?
This explores whether security checks that inspect each message or channel between AI agents on its own can miss an attack that is spread across several transfers, where every individual piece looks harmless.
This explores whether monitoring each hop between agents separately can miss an attack split across several transfers. The corpus says yes, and in three different ways. The first is that many hops aren't watched at all. In a planner, worker, verifier and synthesizer pipeline, five internal channels (planner to worker, tool to worker, memory to worker, worker to verifier, worker to synthesizer) get no inspection, because existing defenses only look at user input. An injection hidden in a tool result or a memory entry travels downstream unseen, which shows that safe components don't add up to a safe system Do internal agent hops in pipelines need security monitoring?.
The second way is that adding a monitor to every hop still isn't enough. A harmful goal can be broken into subtasks that each look benign on their own, so a classifier that judges one message at a time has nothing to flag Why do single-message classifiers miss cross-agent harms?. The ColluSkill attack shows how well this works against real tools. Scanners score each skill individually, so an attacker can use scanner feedback to make each piece look less suspicious while the malicious chain still works when the pieces run together. That approach reached about 96% average attack success across six scanners Can attackers evade skill scanners by refining individual skills?.
The third way is the least intuitive. Sometimes no single message carries anything a monitor could find. One biased agent can pass a persistent behavioral corruption through six downstream agents using only ordinary messages. Because the bias carries no explicit semantic content, it gets past detection and past paraphrasing defenses Can one compromised agent corrupt an entire multi-agent network?. A per-hop monitor also sees only one of the ways failures cross between agents. Messages are one route. Shared state, aggregation of possibly corrupted outputs, and delegation of authority are three more, and none of them depends on the pipeline's shape How do failures cross boundaries between multiple agents?.
The proposed fixes all change what gets watched, from single messages to the relationships between them. One proposal makes the unit of defence a coordination episode: a set of actions linked by observed transfers, task authority and response history, with membership revised as evidence comes in Should defence units span multiple executions and agents?. Another attaches semantic labels to the original request and carries them along as work is delegated, so every downstream step inherits the original intent that fragmentation would otherwise erase Can semantic labels on requests prevent malicious propagation through agent networks?. The counter-swarm doctrine adds two more pieces: constrain the shared resources agents can touch, and tie responses to persistent state instead of closed channels. It also says operators can start on this now through collaboration policy and permission-level testing How can operators stop coordinated agent intrusions now?.
Sources 8 notes
Five communication channels between pipeline components (planner→worker, tool→worker, memory→worker, worker→verifier, worker→synthesizer) receive no defensive inspection. Existing defenses monitor only user input; injections in tool results or memory can propagate downstream undetected, showing that component-level safety does not guarantee system-level safety.
SafeFlow shows that harmful objectives can fragment into locally benign subtasks across agents, making single-message classification insufficient. Effective defense requires tracking semantic content as it moves through the system, not just classifying isolated inputs.
ColluSkill combines chain planning with scanner-feedback refinement to reach 96% average attack success. The approach works because scanners score skills individually, allowing feedback to reduce suspicion per skill while chain-level semantics remain intact.
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.
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.
Show all 8 sources
The operational unit of defence should be a set of actions linked by observed transfers, task authority, and response history, with membership revised as evidence accumulates. Isolated review loses relevant context that spans multiple executions.
SafeFlow attaches structured semantic labels to root requests and propagates them through the collaboration graph as work delegated, allowing each downstream step to inherit the original intent and risk context that fragmentation removes.
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.
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
- Trust propagation and structural containment in Multi-agent LLM pipelines
- SafeFlow: Semantic Information-Flow Control for Blocking Malicious Propagation in Multi-Agent Systems
- FLOWSTEER: Prompt-Only Workflow Steering Exposes Planning-Time Vulnerabilities in Multi-Agent LLM Systems
- ChannelGuard: Safe Models Do Not Compose into Safe Multi-Agent Systems
- Securing Agentic AI: From Per-Action Checks to Trajectory Assurance
- Emergent Collusion in Long-Horizon LLM Agent Interaction
- EvoSafeHarness: Evolving Model- and Domain-Specific Harnesses for Securing Agents