Skip to content
AATMF v3.1 · Volume III

III.advanced attack tactics.

Multimodal injection, integrity breaches, agentic exploitation, and RAG poisoning — technique entries with procedures and AATMF-R scores.

T9 — Multimodal & Cross-Channel AttacksT10 — Integrity & Confidentiality BreachT11 — Agentic & Orchestrator ExploitationT12 — RAG & Knowledge Base ManipulationCross-Tactic Attack ChainsReferencesDetection SignaturesFAQ

AATMF Volume III: Advanced Attack Tactics

T9–T12: Multimodal injection, integrity breaches, agentic exploitation, and RAG poisoning. Full technique entries with procedures, real-world incidents, detection patterns, and AATMF-R scoring.

Volume III covers the attack surface that emerged as models gained new input modalities, tool access, memory, and retrieval capabilities. These tactics didn't exist when AI security meant "don't let the chatbot say bad things." They exist because the model now has hands, eyes, memory, and a library card.

For the parent framework overview, see AATMF v3. For the core model-level tactics (T1–T8), see Volume II. For infrastructure and human-layer tactics (T13–T15), see Volume IV.

t9-multimodal-amp-cross-channel-attacks

T9 — Multimodal & Cross-Channel Attacks

17 techniques, 147 procedures

The attack surface expands every time a model gains a new input modality. T9 covers attacks that exploit the boundaries between modalities — text, image, audio, video — where safety training in one modality doesn't generalize to another.

Key Techniques

T9-AT-001: Image-embedded prompt injection. Adversarial text rendered into an image file. The model processes the image through its vision encoder, extracts the text, and follows the instructions. Input text filters never see the payload because it arrives as pixels. GPT-4V, Claude, and Gemini have all demonstrated susceptibility.

T9-AT-004: Cross-modal encoding bypass. Instructions encoded in a format that one modality understands but another's safety filters don't check. Example: Base64-encoded instructions embedded in alt-text of an image, extracted by the model's text processing pipeline after the image safety filter has already passed the image.

T9-AT-008: Audio adversarial examples. Subtle modifications to audio input that cause speech-to-text models to transcribe attacker-chosen text instead of the actual audio content. The transcribed text is then processed as a legitimate prompt.

T9-AT-012: OCR exploitation. Malicious instructions placed in images as text that OCR models extract and pass to the language model. The instruction follows the same trust pathway as user input but bypasses input-level text filters.

Real-World Incidents

  • Policy Puppetry (2025): Bypassed every frontier model by framing adversarial instructions as XML policy documents — a cross-format injection that exploited how models process structured data differently from natural language.
  • Silent Branding (CVPR 2025): Diffusion model poisoning through image-embedded triggers.
  • Losing Control (CVPR 2025): ControlNet poisoning with visual triggers generating NSFW output.

AATMF-R Assessment

Exploitability: 4/5 (low barrier — image editing tools are sufficient). Detectability: 4/5 (cross-modal payloads evade modality-specific filters). Rating: High.

t10-integrity-amp-confidentiality-breach

T10 — Integrity & Confidentiality Breach

15 techniques, 147 procedures

What the model learned, an attacker can sometimes extract. T10 covers attacks that recover training data, membership information, or model internals through carefully constructed queries.

Key Techniques

T10-AT-001: Training data extraction. Repeated queries designed to trigger memorized training examples. Models trained on sensitive data can reproduce that data verbatim under the right query conditions. Carlini et al. demonstrated extractable memorization in GPT-2, and the problem scales with model size.

T10-AT-003: Membership inference. Determining whether a specific data point was in the training set by analyzing model confidence patterns. The model behaves differently on data it memorized versus data it generalizes to. This is a privacy violation in any domain with protected data.

T10-AT-005: Model inversion. Reconstructing input features from model outputs. In systems trained on personal data, this can recover individual records — faces from facial recognition models, medical histories from diagnostic models.

T10-AT-009: System prompt extraction. Techniques that cause the model to reveal its system instructions, exposing business logic, safety constraints, and architectural information. See prompt injection research for technique details.

Real-World Incidents

  • 300,000+ ChatGPT credentials discovered in infostealer malware (IBM X-Force, 2025) — conversation histories containing proprietary data exposed through credential theft.
  • Multiple system prompt extraction demonstrations across GPT-4, Claude, Gemini — system prompts are not confidential in practice.

AATMF-R Assessment

Impact varies by data sensitivity. For models trained on PII or proprietary data: Critical. For public-facing chatbots: Medium. Exploitability: 3/5 (requires sustained querying, detectable with rate limiting).

t11-agentic-amp-orchestrator-exploitation

T11 — Agentic & Orchestrator Exploitation

16 techniques, 160 procedures

The fastest-growing attack surface. T11 covers attacks against AI systems that can take actions — execute code, call APIs, read/write files, send messages. When these systems are compromised, the attacker inherits every capability the agent has.

Key Techniques

T11-AT-001: MCP tool poisoning. Modifying a tool's description in the MCP manifest to inject adversarial instructions. The model reads the description as trusted context and follows the embedded instructions. 84% ASR on production agents. See MCP vs A2A analysis for the full architectural breakdown.

T11-AT-003: Tool shadowing. Publishing a tool with a name and description similar to a legitimate tool, causing the agent to prefer the malicious version. Exploits the model's tendency to select tools by description relevance.

T11-AT-005: Skill injection (SKILBin). Placing a malicious skill file in the agent's skill directory. The skill executes on session start because the instruction hierarchy treats skill content as trusted. No jailbreak required — the model follows the skill's instructions as its operational mandate. See SKILBin.

T11-AT-008: Orchestrator confusion. In multi-agent systems, manipulating the orchestrator's task delegation to route sensitive operations to a compromised agent. The orchestrator trusts all agents equally — there is no per-agent trust scoring.

T11-AT-011: Autonomous goal hijacking. Redirecting an agent's objective through context manipulation while it's executing a multi-step plan. The agent replans around the new (adversarial) objective without user awareness.

T11-AT-014: Capability escalation. An agent with limited tool access discovers it can invoke tools it shouldn't have access to — through indirect tool calls, shared tool registries, or by requesting the orchestrator to grant additional capabilities.

Real-World Incidents

  • MCP tool poisoning: 30+ CVEs in the MCP ecosystem (2025–2026)
  • 19 RCE vulnerabilities across 11 agentic frameworks with working exploits
  • SKILBin disclosure (June 2026): credential theft through Anthropic-signed process
  • MCPTox benchmark: 72% ASR across 45 real MCP servers

AATMF-R Assessment

Exploitability: 4/5 (tool descriptions are text fields anyone can modify). Impact: 5/5 (agent capabilities = attacker capabilities post-compromise). Rating: Critical.

t12-rag-amp-knowledge-base-manipulation

T12 — RAG & Knowledge Base Manipulation

15 techniques, 149 procedures

Poison the library, control the librarian. T12 covers attacks against retrieval-augmented generation systems where the retrieval corpus becomes an injection vector.

Key Techniques

T12-AT-001: Document injection. Placing adversarial documents in the retrieval corpus. The documents contain instructions that execute when retrieved and processed by the model. PoisonedRAG demonstrated 90% ASR with 5 injected documents.

T12-AT-002: Embedding collision. Crafting documents whose embedding vectors are close to target query embeddings, ensuring retrieval for specific queries. The adversarial document outranks legitimate sources because retrieval optimizes for relevance, not trustworthiness.

T12-AT-004: Knowledge base backdoors. Persistent adversarial content planted in the knowledge base that activates on specific query patterns. Unlike document injection (which adds new documents), knowledge base backdoors modify existing documents to include adversarial instructions alongside legitimate content.

T12-AT-007: Retrieval ranking manipulation (HijackRAG). Adversarial perturbations to the retrieval process itself — manipulating the retriever to consistently return attacker-chosen content for target queries, without modifying the corpus.

T12-AT-010: Cross-corpus contamination. In systems with multiple retrieval sources, poisoning one source to influence retrievals from others through embedding space proximity effects.

Technique Chaining: T12 → T11 → T4

RAG poisoning is most dangerous when chained with agentic and memory tactics:

  1. T12 — Adversarial document injected into retrieval corpus
  2. Document retrieved during normal interaction, instructions execute
  3. T11 — Instructions direct the agent to use its tools (file read, network call, code execution)
  4. T4 — Instructions also direct the agent to store a copy of the adversarial instruction in memory
  5. Memory entry persists — even if the original document is removed from the corpus, the memory entry reactivates the attack in future sessions

This chain demonstrates why defense must cover the full pipeline: corpus integrity, retrieval validation, tool authorization, and memory integrity.

Real-World Incidents

  • PoisonedRAG (2024): 90% ASR with 5 documents
  • AgentPoison (2025): >80% ASR at <0.1% poison rate via optimized triggers
  • HijackRAG (2025): Retrieval hijacking without corpus modification
  • BadRAG (2024): Targeted misinformation through retrieval manipulation

AATMF-R Assessment

Exploitability: 4/5 (write access to shared drives/wikis is common). Detectability: 4/5 (adversarial documents pass quality checks). Rating: Critical in enterprise RAG deployments.

cross-tactic-attack-chains

Cross-Tactic Attack Chains

The power of T9–T12 is in composition. Individual techniques are dangerous. Chains are devastating.

Image injection → Agent tool abuse (T9 → T11): An adversarial instruction embedded in an image uploaded to a RAG corpus gets OCR-extracted, retrieved, and processed by an agent that follows the extracted instructions and executes tool calls.

RAG poisoning → Memory persistence → Credential theft (T12 → T4 → T11): The temporal escalation pattern — poison the corpus today, memory stores the instruction, agent acts on it next week.

Multimodal bypass → System prompt extraction → Model extraction (T9 → T10): Image-embedded queries extract system prompt information, which is used to optimize training data extraction queries.

Full chain examples with step-by-step walkthroughs: RAG, Agentic AI, and the New Attack Surface.

references

References

  1. Zou, W. et al. (2024). PoisonedRAG. arXiv:2402.07867.
  2. Chen, J. et al. (2025). AgentPoison. arXiv.
  3. Zhang, Y. et al. (2025). HijackRAG. arXiv.
  4. Invariant Labs. (2025). Tool Poisoning Attacks in MCP.
  5. Aizen, K. (2026). SKILBin. snailsploit.com
  6. Aizen, K. (2026). MCP vs A2A Attack Surface. snailsploit.com
  7. Aizen, K. (2026). AATMF v3. GitHub
detection-signatures

Detection Signatures

Detection patterns for T9–T12 are available as YARA and Sigma rules in the AATMF GitHub repository.

T9 Detection (Multimodal):

  • YARA rule t09-multimodal-injection.yar: Detects Base64-encoded text patterns in image metadata, alt-text injection patterns, and cross-modal encoding sequences
  • Monitor for OCR-extracted text that contains instruction-like patterns (imperative verbs, role assignments)

T10 Detection (Integrity):

  • Sigma rule t07-data-exfiltration.yml: Detects gradual extraction patterns — sustained querying on narrow topics with incrementally varying inputs
  • Monitor for system prompt fragments appearing in model outputs
  • Track membership inference probe patterns — repeated queries with minimal input variation

T11 Detection (Agentic):

  • Sigma rule t11-agent-anomaly.yml: Detects anomalous tool call patterns — unusual tool sequences, tool calls to endpoints not in the agent's normal operating profile
  • YARA rule t11-mcp-tool-poisoning.yar: Detects hidden Unicode characters, zero-width spaces, and invisible instruction patterns in MCP tool descriptions
  • Monitor for tool descriptions that changed after initial registration (hash mismatch)

T12 Detection (RAG):

  • Monitor write operations to retrieval corpora for documents containing instruction-like patterns
  • Track retrieval ranking anomalies — documents that consistently rank first for specific queries despite low general relevance
  • Detect embedding collision patterns — documents whose embeddings cluster unusually close to high-value query embeddings
faq

FAQ

What does Volume III cover? T9 through T12 — the attack surface that emerged when models gained new input modalities (multimodal), tool access (agentic), retrieval (RAG), and when attackers began targeting model internals (integrity/confidentiality). These tactics didn't exist when AI security meant filtering chatbot outputs.

How does this differ from the parent AATMF page? The parent page provides one-liner descriptions and technique counts per tactic. Volume III provides full technique entries with descriptions, procedures, real-world incidents, detection patterns, and AATMF-R risk scores. This is the operational reference for red teams and blue teams working with these specific attack classes.

Which tactic is most critical in 2026? T11 (Agentic & Orchestrator Exploitation) is the fastest-growing attack surface. MCP tool poisoning alone accounts for 30+ CVEs and 84% attack success rate on production agents. As more organizations deploy AI agents with tool access, T11 becomes the primary concern.

How do these tactics chain together? The most dangerous attacks combine tactics: T12 (RAG poisoning) feeds adversarial instructions to T11 (agent tool abuse), which stores persistence through T4 (memory manipulation). Single-tactic defenses miss these chains. See the Cross-Tactic Attack Chains section above.

Vol I →
Foundations
Introduction, risk-assessment methodology, and architecture for adversarial AI threat mode…
Vol II →
Core Tactics (T01–T08)
The eight foundational adversarial-AI tactics: prompt subversion, semantic evasion, reason…
Vol IV →
Infrastructure & Human (T13–T15)
Where the attack surface meets the surrounding stack: supply chain, infrastructure, and th…
Vol V →
Operations
Detection engineering, mitigation, incident response, red-team ops, blue-team defense — ap…
Vol VI →
Governance
Risk management, compliance mapping (NIST AI RMF, MITRE ATLAS), and security training prog…
Vol VII-PB →
Prompt Bank
Curated catalog of adversarial prompts and detection signatures from Appendices A and B.
Vol VII →
Appendices
Attack catalog, signatures, tools, templates, case studies, glossary — operational referen…
Author
Kai Aizen
Independent Adversarial · Research group. 97 published CVEs, 5 Linux kernel mainline patches, creator of AATMF / P.R.O.M.P.T / SEF, author of Adversarial Minds.
payloads · github

The full 4,980+ prompts live in the AATMF repo.

This page is the operational catalog — 15 tactics, 240+ techniques, and the procedure counts you see below. The actual adversarial prompts, the YARA / Sigma detection signatures, the runbook templates, and the assessment scoring sheets are versioned in the open-source repository so they can be diff-able, fork-able, and contributed to.

github repo →how to cite →