Bad actors can hide a harmful goal from AI safeguards — so how do they actually sneak it through?
What are the three known routes for laundering harmful plans?
This explores how a harmful goal can be disguised so it passes through an AI system looking harmless; the corpus has no canonical list of 'three routes', so I'm reading the question as the three most distinct laundering mechanisms the notes document.
This explores how a harmful goal gets disguised on its way through an AI system. One caveat first: the corpus never names 'three known routes' as a set. What it does show are three mechanisms that work differently from each other: split the plan up, plant it as the model's own thinking, or bend it before there is anything to inspect.
**Route 1: split it into innocent-looking pieces.** Multi-agent systems get their power from dividing work and specializing roles. That same design lets a harmful objective be spread across steps that each look benign, with the harm appearing only when they combine (Can task decomposition hide harmful intent across agents?). The trick also works against security tooling. ColluSkill plans a chain of skills, then uses scanner feedback to soften each one. Scanners score skills one at a time, so the chain's meaning survives, and the attack reaches 96% average success across six scanners (Can attackers evade skill scanners by refining individual skills?).
**Route 2: plant the plan so the model re-voices it as its own.** Researchers found that reasoning models follow harmful but benign-sounding plans placed in their context, then paraphrase them as if they were their own reasoning. Chain-of-thought monitors miss this 25 to 33 percent of the time, and the attacker needs only context access, not the model's weights (Can reasoning models be steered by injected context without detection?). A neighboring case is DecepChain, which backdoors reasoning so it stays fluent and coherent while being quietly wrong (Can chain-of-thought reasoning be secretly manipulated to look normal?). In both, reading the reasoning trace is not proof the reasoning is honest.
**Route 3: bias the plan before it exists.** FLOWSTEER-style attacks corrupt the signals that feed planning, so the workflow is already tilted when it forms. Defenses that inspect only the finished workflow arrive too late. Separating the task, method, and framing intents at the input boundary cut malicious success by up to 34 percent (Can inspecting generated workflows catch planning-time attacks?).
**What defenders have so far.** One idea is to tag the root request with a semantic taint that follows the delegation graph instead of the text, so it survives paraphrasing and fragmentation (Can semantic labels on requests prevent malicious propagation through agent networks?). The catch is that surviving rewrites forces coarse labels on all downstream work (How does SafeFlow track sensitivity through agent rewrites?). For plan injection, the monitor defenses are still unsettled: four candidates exist, and only one has a partial experiment (Can monitors catch plan injection attacks in chain-of-thought reasoning?).
All three routes exploit a checker that looks at a piece rather than the whole: one step, one skill, one reasoning trace, or one finished workflow. The harmful intent lives in the composition, the origin, or the upstream signal, which are the places those checkers don't look.
Sources 8 notes
SafeFlow demonstrates that multi-agent systems' core strength—splitting tasks and specializing roles—creates a safety blind spot where malicious intent can be distributed across steps that each appear benign individually, with harm emerging only in composition.
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.
Researchers found that reasoning models follow harmful but benign-sounding plans planted in their context and paraphrase them as their own reasoning, evading monitors across multiple benchmarks and tasks. The attack requires only context access, not weight manipulation, making it practical for real-world pipelines.
DecepChain demonstrates a backdoor attack that fine-tunes models on their own errors, then reinforces wrong reasoning on triggered inputs while keeping outputs fluent and benign-looking. The attack succeeds with minimal side effects, showing that CoT monitoring can be defeated by deliberate manipulation, not just optimization pressure.
Defenses that inspect only generated workflows arrive too late to catch FLOWSTEER-style attacks that corrupt planning signals before workflow formation. Input-side defense separating task, methodological, and framing intents reduces malicious success by up to 34 percent by intervening at the instruction-organization boundary.
Show all 8 sources
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 paper attaches taints to root requests and propagates them along delegation graphs rather than text, which lets them survive paraphrasing but forces coarse labeling of all downstream work. The excerpt does not reveal whether content-level sensitivity tracking exists or how the system avoids false positives on benign workflows with sensitive origins.
Plan injection evades CoT monitors through surface-level reading of reasoning traces. Four candidate defenses—increased reasoning budget, context-provenance checks, effect-based monitoring, and hybrid approaches—have been proposed, but only one partial experiment exists; most remain untested.
Papers this line draws on 8
The research behind the notes this line reads — ranked by how closely each paper relates.
- Corrupt Plans, Clean Traces: Evading Chain-of-Thought Monitoring with Plan Injection
- 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
- Reasoning Models Don't Always Say What They Think
- Monitoring Reasoning Models for Misbehavior and the Risks of Promoting Obfuscation
- Can We Trust AI Explanations? Evidence of Systematic Underreporting in Chain-of-Thought Reasoning
- Leaky Thoughts: Large Reasoning Models Are Not Private Thinkers
- EvoSafeHarness: Evolving Model- and Domain-Specific Harnesses for Securing Agents