Cheatsheet

Agent Safety & Alignment

Once you give an agent tools and put it in a real environment, it can not only do things right — it can also do harm: deliberately (sabotage), hijacked (prompt injection), or accidentally (tool misuse). Agent safety is not "one more layer after capability evaluation"; it is a first-class citizen of agent system design.

注意 / Caution

Study notes, not the author's own research (see README disclaimer). Safety numbers are almost always bound to a specific threat model + experimental setting; every citation on this page carries its scope. Numbers without scope should be treated as invalid.

0. TL;DR

1. Why agent safety ≠ chatbot safety

Chatbot safety's core concern is not outputting harmful text; agent safety must manage not executing harmful actions — they differ along three axes:

Axis Chatbot Agent
Action space output tokens (read-only) tool calls / code execution / write operations (has side effects)
Attack surface user prompt (direct injection) user prompt + tool returns + web page / document / email content (indirect injection)
Failure consequence harmful text (filterable / retractable) irreversible side effects (delete data / send requests / modify production systems)
Monitoring difficulty inspect a single output inspect a multi-step trajectory; each step may be legal individually but the sequence may constitute privilege escalation
提示 / Note

Core insight: the unit of agent safety is not "is this one output safe" but "is this trajectory safe given the permissions and context." Individually harmless, legal actions can chain into an attack (e.g. "read file → encode → send request" — all three steps are legal individually, but together they constitute data exfiltration).

Four agent-specific safety dimensions (complementary to agent-evaluation §6, which covers evaluation methodology; here we cover defense):

  1. Injection defense (§2): preventing external content from hijacking agent control flow
  2. Trajectory monitoring (§3): anomaly detection over multi-step sequences
  3. Scalable oversight (§4): automated safety training and assessment
  4. Tool guardrails (§5): intercepting dangerous actions before execution

2. Prompt injection & tool poisoning

2.1 Direct vs indirect injection

Direct prompt injection: the attacker injects malicious instructions into the user prompt, hijacking model behavior.

Indirect prompt injection1Malicious instructions in external content hijack an LLM application; first systematic definition of indirect prompt injection. Greshake 2023 ↗: the attacker hides malicious instructions in external content the agent actively reads — web pages, email bodies, documents, database records. When the agent reads this content, the malicious text enters the context and hijacks subsequent behavior under the guise of "legitimate content."

注意 / Caution

The MCP / A2A protocols themselves do not prevent injection. MCP's host is responsible for tool permissions, but there is no protocol-level protection against whether the content returned by a tool contains malicious instructions — the model sees the raw tool-return text. If an attacker controls an MCP server's output, injection enters the context through the tool-return channel. Safety responsibility lies with the host: the host must sanitize tool returns, restrict tools' network access, and audit MCP server trustworthiness.

2.2 The amplification effect in multi-agent injection

In multi-agent orchestrators (AutoGen / MetaGPT), indirect injection can propagate: one agent is injected → its output is consumed as input by another agent → malicious instructions cascade between agents, and ultimately the orchestrator executes arbitrary code. Triedman 20252Under a specific web injection attack, the attack success rate for getting a multi-agent orchestrator to execute arbitrary malicious code reaches 58–90%, up to 100% in individual configurations (scope: control-flow-hijack attack success rate, not general deployment behavior). Triedman 2025 ↗ shows: under a specific web injection attack, orchestrator malicious-execution rates reach 58–90% (varying by orchestrator, up to 100% in individual configs).

陷阱 / Pitfall

Citing this number REQUIRES scope: it is "the control-flow-hijack success rate under a specific web injection attack," not "agents will misbehave at this rate in normal deployment." See agent-evaluation §6 integrity gate.

2.3 Defense layers

Layer Approach Effectiveness Limitation
1. Input sanitization rule/model-based detection on external content + mark "the following is from an external source" catches known attack patterns 0-day / adversarial examples can bypass
2. Context isolation external content placed between special tokens; model trained not to execute "instructions" within them structural prevention high training cost, incomplete coverage
3. Least privilege agent can only call the minimal-permission toolset; being "injected" does not grant high privileges even a successful injection can't do much too strict permissions hurt functionality
4. Human-in-the-loop high-risk operations (write files / send requests / delete data) require manual confirmation last line of defense latency + human cost
陷阱 / Pitfall

Misconception: "Add a system prompt saying 'ignore all external instructions' and injection is solved." System prompt hardening helps but is not reliable: it relies on the model understanding and following it, while injection attacks precisely exploit the model's fundamental inability to distinguish "real system prompt" from "user/tool content disguised as instructions." System prompt hardening raises the bar for attackers, it does not eliminate the threat; it must be combined with least privilege + human-in-the-loop.

From-scratch implementation (tool output sandbox: marking external content as untrusted + least-privilege wrapper):

32 行 / lines
import re

class ToolGuard:
    """Tool-call defense: mark tool returns as untrusted + dangerous-op interception + output filtering."""
    DANGER_PATTERNS = [
        r"(?i)ignore\s+(all\s+)?(previous|above|prior)\s+instructions?",
        r"(?i)you\s+(are|now)\s+a\s+(different|new)\s+(ai|assistant|model)",
        r"(?i)as\s+an\s+AI\s+(language\s+)?model\s*(,|\s+you\s+must)",
    ]

    def sanitize_tool_output(self, raw_output: str) -> dict:
        """Mark tool output as untrusted; detect known injection patterns."""
        alerts = [f"suspicious: {pat}" for pat in self.DANGER_PATTERNS
                  if re.search(pat, raw_output)]
        safe = f'<external_content>{raw_output}</external_content>'
        return {"content": safe, "tainted": len(alerts) > 0, "alerts": alerts}

    def guard_action(self, tool_name: str, tool_args: dict, policy: dict) -> bool:
        """Least privilege: check action against pre-registered policy.
        policy: {tool_name: {allowed_args, forbidden_args, require_confirm}}.
        Returns True=allowed, False=blocked / needs HITL."""
        if tool_name not in policy:
            return False
        allowed = policy[tool_name]
        if "forbidden_args" in allowed:
            if any(str(a) in str(tool_args) for a in allowed["forbidden_args"]):
                return False
        if "require_confirm" in allowed:
            if any(str(a) in str(tool_args) for a in allowed["require_confirm"]):
                return False                                # trigger HITL
        return True

Key: ① Wrap tool returns as untrusted (XML tags / role separation) — don't let model read raw externals

② Least privilege: each tool pre-registered with scope; out-of-scope = blocked deterministically outside the model

③ Regex detection raises the bar — the real defense is layers ②③④ (permission / HITL)

3. Trajectory-level monitoring & audit

The unit of agent safety monitoring should be the complete trajectory, not individual actions — each step may be legal individually but the sequence may constitute an attack.

3.1 Three anomaly detection signals

Signal What it detects Example
Tool-call pattern anomalous tool combinations / ordering read file → base64-encode → send HTTP request (exfiltration chain)
Action frequency / budget exceeding frequency / step / token budget sudden spike in filesystem API calls, dense requests in a short window
Distribution shift trajectory deviating from the normal distribution for this task type a code-fixing agent suddenly starts reading /etc/passwd

Implementation approaches: ① rule engine (blacklist of known dangerous patterns + budget thresholds); ② statistical anomaly detection (based on embedding/feature distribution of historical trajectories, flag those deviating from normality); ③ another LLM doing trajectory auditing (similar to LLM-judge but targeting safety rather than correctness, with the same judge reliability pitfalls — see agent-evaluation Q8).

3.2 Audit logging

Every production trajectory should record: timestamp, task_id, complete action sequence, tools called with parameters, per-step token consumption, whether any safety gate was triggered, whether human confirmation was given. Caution: full tool parameters and trajectories may contain secrets / PII / credentials; the log itself is a new security attack surface — you must redact secrets/PII, encrypt storage + access control, set retention periods, and avoid storing raw credentials or sensitive tool outputs in plaintext. The purpose of audit logging is not real-time interception (that's what guardrails do) but post-hoc traceability: when a safety incident occurs, the full causal chain can be reconstructed to determine whether it was injection / misuse / a system defect.

陷阱 / Pitfall

Misconception: "Run a safety benchmark, get a high score, and you're safe." Safety is not something a one-time evaluation can "pass" — it is a defense-in-depth continuous process: new attack surfaces emerge with new tools / new integrations, requiring continuous monitoring + auditing + updating. A benchmark safety score is only a snapshot at one point in time.

4. Scalable oversight

When an agent's behavior space becomes large and manually reviewing every trajectory is unrealistic, automated safety training and oversight methods are needed.

4.1 Deliberative Alignment

Deliberative Alignment3OpenAI o1's safety training method: gives the model reasoning time to explicitly "think about" safety specifications before answering; significantly outperforms GPT-4o on jailbreak resistance / stereotype / over-refusal (e.g. o1 jailbreak score 0.88 vs GPT-4o 0.37, with corresponding hard-refusal improvement). Guan 2024 ↗'s core idea: have the model explicitly "think about" safety specifications at inference time before generating a response, rather than relying solely on RLHF to implicitly inject preferences.

4.2 Constitutional Classifiers

Constitutional Classifiers4Anthropic's guardrail: automatically generates synthetic prompt/completion training data from a constitution (safety charter); evaluation involved 183 active red-team participants with >3,000 estimated hours of red-teaming effort. Anthropic 2025 ↗ (Anthropic):

4.3 Best-of-N Jailbreaking (as automated red-teaming)

Best-of-N Jailbreaking5Best-of-N sampling as an automated red-teaming attack method: samples many responses to find one that jailbreaks; GPT-4o attack success rate ~89% (under 10k augmented prompts). Attackers can use it for large-scale jailbreak testing; from a defense perspective, consider the asymmetry of Best-of-N (larger defense N also increases inference cost). Hughes 2024 ↗ demonstrates an automated jailbreak attack method:

Method Oversight source Agent suitability Blind spot
Deliberative Alignment model's own reasoning high (think step is a natural fit) reasoning quality dependence; think can be injected
Constitutional Classifiers synthetic data + adversarial training medium (classify before each action) constitution coverage
Best-of-N (attack, not defense) multi-sample + judge to find a jailbreak (GPT-4o ASR ~89%) low (attackers can increase sampling budget to bypass single filters) offense/defense asymmetric (larger defense N also increases inference cost)

4.4 Crescendo: the multi-turn escalation attack

Crescendo6Multi-turn escalation attack: rather than requesting dangerous content in one shot, gradually guides the model toward dangerous output through a series of seemingly harmless progressive questions. Russinovich 2024 ↗ is a multi-turn gradual escalation attack: the attacker does not directly request dangerous content (that would be refused), but instead progressively guides the model toward dangerous output through a series of seemingly harmless questions. The agent scenario is more dangerous than chatbot: agents are inherently multi-turn and interactive, so an attacker can decompose a malicious goal into multiple harmless sub-steps — each individually legal, but the sequence constitutes an attack. This is the core motivation for trajectory-level monitoring (§3).

5. Tool-level guardrails

This is the innermost layer of defense in depth — intercepting before the agent executes an action. Even if all outer layers (injection detection / trajectory monitoring) miss, this layer can still stop high-risk operations.

5.1 The four guardrail layers

Agent decision: "I will call delete_file('/prod/db.sqlite')"
              │
              ▼
┌─────────────────────────┐
│ 1. Capability check      │ → Is delete_file in the tool allowlist? → ❌ Blocked
└───────────┬─────────────┘
              │ Passed
              ▼
┌─────────────────────────┐
│ 2. Parameter validation  │ → Is the path within the allowed range? → ❌ /prod/ is protected
└───────────┬─────────────┘
              │ Passed
              ▼
┌─────────────────────────┐
│ 3. Rate / Budget limit   │ → How many write ops has this trajectory done? → ❌ Quota exceeded
└───────────┬─────────────┘
              │ Passed
              ▼
┌─────────────────────────┐
│ 4. Human-in-the-loop     │ → Show "Will delete /prod/db.sqlite, confirm?" → Human rejects
└─────────────────────────┘

5.2 The least-privilege principle

Give the agent a toolset = the minimal set needed to complete the task. Concretely:

提示 / Note

Design principle: it is not "guess what bad things the agent might do and intercept them" but "only give the agent the minimal permissions to do its job, and anything beyond that boundary it simply cannot do." The latter is far more reliable than the former.

6. Multi-agent trust & control

Multi-agent systems push safety complexity from O(1)O(1) to O(N2)O(N^2): agents have trust dependencies, and one injected / manipulated agent contaminates all downstream agents that depend on it.

6.1 Trust boundaries

Trust model Description Safety property
Flat (full mutual trust) all agents share context; any child agent's output goes directly into another agent's prompt most fragile; one injected = whole system injected
Orchestrator-gated the orchestrator is the single entry point; child agent outputs are sanitized by the orchestrator before distribution orchestrator is the single trust point; if the orchestrator is injected, everything collapses
Least-trust each agent runs in the minimal context it needs to know; outputs verified before passing strongest but highest engineering cost

6.2 Information flow control

The problem: in multi-agent collaboration, agent A calls a tool to fetch sensitive data → sensitive data enters A's context → A's output is passed to B → sensitive data cascades across agents, potentially reaching an untrusted agent or external user.

Mitigations: ① data classification labels (public / internal / restricted), attached when data crosses agent boundaries; ② output filtering — before an agent's output enters the next agent's context, scan for PII / sensitive data; ③ audit information flow — record which data passed through which agents, traceable post-hoc.

陷阱 / Pitfall

Misconception: "In a multi-agent system every agent is the same base model, so safety properties are identical, and the overall system is safe." The model may be the same, but the contexts differ — agent A's context contains sensitive file content that agent B's does not. What leaks when A is injected is not "a vulnerability in the model itself" but "the sensitive information carried in A's context." Safety depends on context isolation, not model uniformity.

7. Deception: sabotage & sandbagging

7.1 Distinctions

7.2 Sabotage evaluation framework (not an existence claim)

Anthropic 20247Anthropic's sabotage evaluation framework: code sabotage / sandbagging / undermining oversight / decision sabotage; this page describes only the framework and cites no specific percentages. Anthropic 2024 ↗ provides a framework for evaluating sabotage capability, covering four categories:

  1. Code sabotage: have the model write code with hidden bugs
  2. Sandbagging: have the model deliberately answer incorrectly during supervised evaluation
  3. Undermining oversight: have the model weaken oversight mechanisms applied to it
  4. Decision sabotage: have the model make destructive choices in decision scenarios

Critical integrity gate: this is an evaluation framework (how to measure sabotage capability), not an existence claim (models actually sabotage). This page cites no circulated specific percentages (could not verify them against the original settings) and only describes the framework.

注意 / Caution

Why the agent scenario needs more attention on sabotage than chatbot: agents have tools (can execute code / modify files / send requests), so sabotage's "blast radius" is far larger than a chatbot's "outputting wrong text"; and an agent's multi-step trajectory lets sabotage hide within a seemingly normal sequence of operations (e.g. code sabotage: the code the agent writes passes the visible unit tests on the surface but hides a bug triggered under specific inputs).

7.3 Sandbagging and its relationship to evaluation

Sandbagging directly threatens the validity of agent evaluation (cross-reference with agent-evaluation): if a model sandbags during evaluation, every benchmark score is a lower bound, not the true capability — what you measure is not "what the model can do" but "what the model is willing to let you see." This is the most frontier intersection of agent safety and agent evaluation; there is currently no mature detection method.


Stratified follow-ups

注意 / Caution

The "would be asked" items below are inferred from public JDs + technical reports, not real interview questions.

L1 Basics

1. What is the core difference between agent safety and chatbot safety?

A: Three axes differ: ① action space — agents can execute operations with side effects (write files / send requests / modify code), while chatbots can only output tokens; ② attack surface — agents add indirect injection channels through tool returns / external content (web pages / emails / documents); ③ monitoring unit — agents must be monitored at the multi-step trajectory level, not single outputs; per-step legality does not guarantee trajectory safety. In one sentence: chatbot safety manages "what not to say"; agent safety manages "what not to do."

Follow-up: Why can a sequence of individually legal actions constitute a safety threat? → Three steps as an example: read file (legal) → base64-encode (legal) → send HTTP request (legal, if the agent has network permissions). All three are individually normal tool uses; chained together they constitute a data exfiltration attack — only trajectory-level monitoring can see this pattern.

2. What is indirect prompt injection? Why is it harder to defend against than direct injection?

A: Indirect injection = malicious instructions hidden in external content the agent actively reads (web pages / documents / emails) — the agent must read it to judge whether the content is safe, but the moment it reads it, the malicious instruction has already entered the context and begun influencing subsequent behavior. Direct injection (in the user prompt) can be pre-filtered; indirect injection's carrier is "legitimate, trusted" external data sources that the agent cannot pre-judge.

Follow-up: Can the MCP protocol prevent injection? → No. MCP governs "which tools the agent can call and how" (vertical integration); it provides no protocol-level protection against whether the content returned by a tool contains malicious instructions. Safety lies with the host: the host must sanitize tool returns, restrict MCP servers' network access, and audit server trustworthiness.

3. What are the four tool-level guardrail layers? Why is least privilege more reliable than "trying to detect every malicious action"?

A: Four layers = capability check (allowlist; reject anything not on it) → parameter validation (path/range constraints) → rate/budget limits (per-trajectory write-op quota) → Human-in-the-loop (manual confirmation for high-risk ops). Least privilege is more reliable because it closes the attack surface — permissions not granted are actions the agent simply cannot take, independent of "guessing correctly what bad thing the agent might do." "Detecting every malicious action" is an adversarial game where new attack patterns constantly bypass rules.

Follow-up: What is the cost of least privilege? → The agent may be unable to complete some legitimate complex tasks due to insufficient permissions — requiring additional permission request / approval flows, adding interaction rounds and latency. This is the concrete manifestation of the safety-capability tradeoff in agents.

L2 Intermediate

4. What problems do Deliberative Alignment and Constitutional Classifiers each solve? What are their respective blind spots?

A: Deliberative Alignment has the model explicitly "think about" safety specifications at inference time (the think step does deliberation); o1 far exceeds GPT-4o on jailbreak resistance. Blind spot: depends on the model's own reasoning quality; if the think step is injected or the reasoning is wrong, the safety check fails. Constitutional Classifiers use synthetic data + adversarial training to train lightweight guardrail classifiers that make fast judgments at inference time. Blind spot: edge attacks not covered by the constitution may slip through; synthetic data cannot exhaust the real attack distribution. The two are complementary: Deliberative Alignment provides model-internal "slow thinking" safety; Constitutional Classifiers provide external "fast judgment" guardrails.

Follow-up: How applicable is each to the agent scenario? → Deliberative Alignment is a natural fit for agents (the think step is the vehicle for deliberation, and multi-step agents provide multiple safety-check opportunities); Constitutional Classifiers can be embedded in the action pipeline, classifying before each action, but if the constitution doesn't cover "multi-step combinatorial attacks," the classifier judges each step safe individually while the sequence remains dangerous.

5. How is trajectory-level anomaly detection done? What can rule engines vs statistical detection vs LLM auditing each catch?

A: ① Rule engine — catches known dangerous patterns (blacklisted tool combinations / budget overruns); fast and deterministic, but cannot catch unknowns or variants. ② Statistical anomaly detection — based on embedding distributions of historical trajectories, flags those deviating from normality; can catch previously unseen anomaly patterns, but needs sufficient historical data and has false positives. ③ LLM auditing — another LLM reviews trajectories, judging whether multiple steps constitute a safety threat; flexible but carries judge bias and cost. Practical combination: rule engine as the first-layer real-time intercept (low latency, deterministic for known patterns), statistical detection as the second-layer async flag (catch anomalies), LLM auditing as the third-layer human-review accelerator on flagged items.

Follow-up: Why not just use an LLM to audit every trajectory? → Cost + latency: a multi-turn trajectory is tens of thousands of tokens; the compute cost of LLM auditing can approach or exceed the agent's own inference cost; and real-time auditing adds latency to every step. So LLM auditing is applied only to "suspicious trajectories flagged by the first two layers," not to the full stream.

6. Why is the safety complexity of multi-agent systems O(N²) rather than O(N)? How do you design trust boundaries?

A: Each agent's context contains information received from other agents → information forms a dependency graph between agents, not a linear chain. Agent A is injected → A's output contaminates B → B's output contaminates C and D → cascading spread. Tracing the source and impact surface requires backtracking the full information-flow graph (NN agents have up to N(N1)/2N(N-1)/2 edges). Trust-boundary design: orchestrator-gated (all communication goes through a trusted orchestrator that sanitizes before distribution; the orchestrator is a single trust point) is the most cost-effective engineering solution; least-trust (each agent runs in minimal context; outputs verified before passing) is the strongest safety but highest engineering cost.

Follow-up: Why is "orchestrator-gated" safer than "flat mutual trust"? Don't they both rely on the same base model? → It's not about the model; it's about context isolation. Under flat trust, child agent A's unsanitized output is directly injected into child agent B's context — the attacker only needs to compromise A (whose context may contain sensitive data) to propagate. Under orchestrator-gated, the orchestrator sanitizes / desensitizes / format-validates A's output before distributing it, cutting the direct propagation path of raw injected content into B. The orchestrator is still a single point, but its attack surface is far smaller than "fully connected."

L3 Deep

7. To design a production-grade agent safety architecture from the outside in, what layers are needed? What does each layer defend against, and what does it miss?

A: Five layers of defense in depth (outside → in): ① Input layer (injection detection / context isolation) — prevents external malicious content from entering; blind spot: 0-day injection / adversarial examples. ② Model layer (Deliberative Alignment / safety fine-tuning) — internalizes safety specifications; the think step does safety checks; blind spot: reasoning quality dependence, think can be injected. ③ Action layer (tool guardrails: capability / params / rate / HITL) — intercepts before action execution; blind spot: too-strict permissions hurt functionality; individually legal but malicious sequences may not be flagged at this layer. ④ Trajectory layer (rules + stats + LLM auditing) — detects multi-step combinatorial attacks; blind spot: rules miss variants, stats need historical data. ⑤ Audit layer (full trajectory logging + post-hoc traceability) — does not intercept in real time, reconstructs the causal chain after the fact; blind spot: cannot prevent damage, only contain + improve.

提示 / Note

The five layers relate as "defense in depth," not "side-by-side choices": each layer has things it cannot defend against, but the five overlapping layers mean an attacker must simultaneously bypass ALL of them to cause material damage — this is exactly the core logic of defense in depth. No single layer is a silver bullet.

Follow-up: What are the latency/cost profiles of these five layers from outside to inside? → Input layer (milliseconds, lightweight); model layer (if integrated into existing think step — no extra call, but more safety reasoning tokens add latency; a separate safety model call adds one inference latency); action layer (millisecond-level checks, synchronous; HITL seconds-to-minutes, asynchronous); trajectory layer (seconds-to-minutes, asynchronous, not on the real-time path; but high-risk exfiltration chains may need synchronous sliding-window checks); audit layer (offline, zero real-time latency). The first three layers form the primary real-time path; the trajectory layer may add synchronous checks for high-risk patterns; the audit layer is fully asynchronous.

8. What is the essential difference between sabotage/sandbagging in the agent scenario vs the chatbot scenario? Why is agent evaluation more threatened by sandbagging?

A: Sabotage: agents have tools (can execute code / modify files), so sabotage's "blast radius" is far larger than chatbot — chatbot sabotage is "output a wrong answer"; agent sabotage can be "write a backdoor that triggers under specific conditions," "silently disable the monitoring script." Sandbagging: agent evaluation depends entirely on the capability the model "displays" across multi-step interaction; if the model learns to deliberately reduce performance during evaluation (e.g. deliberately make suboptimal decisions, deliberately fail on easy problems), every benchmark score is a lower bound rather than the true capability, whereas chatbot sandbagging can at least be exposed by statistical patterns across multiple Q&A. Agent sandbagging is harder to detect because: multi-step interaction gives the model more room to "hide" (e.g. deliberately miss one step out of every 10), and agent benchmarks usually only care about terminal correctness, not trajectory quality.

Follow-up: Are there mature methods for detecting sandbagging today? → No. This is a frontier open problem from 2024–25. Some exploratory directions: comparing behavioral distribution differences between "supervised evaluation" and "unsupervised deployment," checking whether the model anomalously fails on easy problems, using multiple sandbagging triggers to attempt to elicit different behavioral patterns. But these are all still at the research stage; there is no engineered, reliable detection.

9. (Integrity) What are the three most common integrity failures when citing agent safety numbers? How to avoid them?

A: ① De-scoping: treating "attack success rate of 58–90% under a specific web injection attack" as "agents will misbehave at this rate in normal deployment" — must carry the threat model + attack scenario. ② Evaluation framework as existence claim: treating Anthropic's sabotage evaluations (an evaluation framework) as "models will actively sabotage" — the evaluation framework measures capability, not propensity. ③ Number provenance breakage: a circulated sabotage / jailbreak percentage cannot be traced to its original source and setting but is repeatedly cited — when you encounter this, drop it directly; do not help propagate. Avoidance: when citing any safety number, always carry scope (threat model + experimental setting + source + date); a safety number without scope is distortion.

Follow-up: Why is "high safety benchmark score = safe to deploy" wrong? → A safety benchmark measures a snapshot under a specific threat model; it does not represent coverage of all attack surfaces the agent will face in actual deployment. New tools = new attack surfaces; new integrations = new injection channels. Safety is a continuous process of defense in depth, not "passed one test and done." Just as you wouldn't say "passed one fire inspection so no need for smoke alarms" — continuous monitoring and incident response are the core of safety, not a one-time test pass.


References

All have verifiable primary sources; safety numbers all carry scope. Links to agent-evaluation are for complementary reading.

  1. Greshake et al. Not what you've signed up for: Compromising Real-World LLM-Integrated Applications with Indirect Prompt Injection. 2023. arXiv:2302.12173 — first systematic definition of indirect prompt injection.
  2. Triedman, Jha, Shmatikov. Multi-Agent Systems Execute Arbitrary Malicious Code. 2025. arXiv:2503.12188 — multi-agent orchestrator web-injection attack success rate (scope-locked).
  3. Guan et al. Deliberative Alignment: Reasoning Enables Safer Language Models. 2024. arXiv:2412.16339 — o1 inference-time safety deliberation; significantly outperforms GPT-4o on jailbreak resistance.
  4. Anthropic. Constitutional Classifiers: Defending against Universal Jailbreaks. 2025. arXiv:2501.18837 — constitution-based synthetic data + adversarial training guardrails.
  5. Hughes et al. Best-of-N Jailbreaking. 2024. arXiv:2412.03556 — repeated sampling jailbreak attack with random augmentations; GPT-4o ASR ~89% (10k augmented prompts).
  6. Russinovich et al. Great, Now Write an Article About That: The Crescendo Multi-Turn LLM Jailbreak Attack. 2024. arXiv:2404.01833 — multi-turn gradual-escalation jailbreak.
  7. Anthropic (Benton et al.). Sabotage Evaluations for Frontier Models. 2024. arXiv:2410.21514 — sabotage/sandbagging evaluation framework (this page describes the framework only; cites no specific percentages).