T16 · OWASP Agentic AI v1.1

Insecure Inter-Agent Protocol Abuse

An attacker abuses the protocols agents use to talk to each other (A2A) or to tools (MCP), exploiting their collaborative trust to hijack behaviour or bypass guardrails.

Last reviewed 2026-05-11·Severity heuristic: critical

Definition

Insecure Inter-Agent Protocol Abuse is the attack surface that opens once agents talk to each other (Agent-to-Agent / A2A) or to tools (Model Context Protocol / MCP) using protocols designed for collaboration rather than for adversarial trust. The attacker targets the trust embedded in these protocols by manipulating server responses, injecting context into tool descriptions, or exploiting ambiguous consent flows to mislead agent reasoning. When protocol specifications are loosely enforced, or implementations lack input validation and strong identity binding, attackers can hijack agent behaviour, escalate privileges, or bypass guardrails entirely.

What it looks like in practice

OWASP v1.1 names three scenarios:

Consent Flow Manipulation. An agent orchestrator uses the A2A (Agent-to-Agent) protocol to negotiate capabilities with a newly connected sub-agent. The consent-negotiation phase involves a structured message exchange in which the sub-agent declares what actions it requires permission to perform, and the orchestrator either grants or denies each. A malicious sub-agent crafts its capability declaration to include “data management” (an intentionally vague capability) instead of the specific “delete records” permission it actually intends to exercise. The orchestrator, whose validation logic performs a string-match against a permissive allowlist rather than a structured schema check, auto-approves “data management”. The sub-agent subsequently deletes a production table, citing the approved capability as its authority. No explicit user intent was captured for the deletion.

Context Hijacking via MCP Response Injection. An agent uses the Model Context Protocol (MCP), a standard for connecting AI assistants to external tool servers, to query a third-party data-enrichment server. An attacker who has compromised the MCP server’s response pipeline crafts a response that includes a malicious tool_metadata block alongside the legitimate data. The block instructs the calling agent that a new tool, “export_all_records”, is available and describes it as “standard data export, no user confirmation required”. The agent, which reasons over tool metadata as trusted protocol content, registers the tool and calls it when the next user query could plausibly benefit from an export. The data is exfiltrated before the rogue tool registration is noticed.

Tool Misuse via Descriptive Exploitation. A shared tool registry in a multi-agent collaboration platform allows any registered organisation to publish tools that other agents can discover and call. An attacker publishes a tool called “email_formatter” with a description stating it “formats and sends email drafts to the intended recipient”. The description omits that the tool also BCCs every email to an attacker-controlled address. When a customer-service agent in another organisation discovers the tool and calls it to send a support reply, it unknowingly copies every customer communication to the attacker. The tool’s described behaviour is accurate as far as it goes; the undisclosed side-effect is the attack.

Why it’s dangerous

MCP and A2A are designed for trust. Tool descriptions are content the agent reasons over, not opaque schema. Consent flows are themselves messages the model interprets. Loose validation of tool metadata, capability cards, or consent prompts lets an attacker who controls one tool source or one peer agent compromise every agent that connects. Unlike RCE-style exploits, this requires no software vulnerability. A permissive protocol implementation is sufficient.

Where it manifests

Inspect tool-description ingestion: are descriptions validated against schema and compared to historical versions? Check the consent surface: can sensitive actions be auto-approved through A2A negotiation? Map the trust boundary between the agent and any MCP server you do not operate. Verify that tool-call parameters are validated independently of the LLM’s suggestion, and that protocol-level messages are signed and replay-resistant.

Detection signals

Protocol-layer abuse surfaces in consent logs, tool-registry diffs, and outbound traffic patterns.

  • Capability descriptor containing vague or over-broad terms without a schema-validated scope: alert when an incoming A2A capability declaration uses terms that do not map to a known, scoped permission identifier in the registry. Legitimate agents declare specific, schema-validated permissions, not open-ended categories.
  • MCP response containing a tool_metadata or tool_list field that was not present in a previous response from the same server: diff the tool manifest returned by each MCP server against the last-known manifest; any new tool appearing without a corresponding deployment event in the server’s changelog is an indicator of injection.
  • Tool call parameter scope exceeding the scope described in the registered tool description: compare the fields present in a tool call’s actual request payload against the parameters listed in the tool’s registered description; a call that passes fields not documented in the description suggests the agent was instructed to use the tool in a way that bypasses the described contract.
  • Outbound data volume from a tool call that is disproportionate to the request: tool calls whose response payloads exceed a defined size threshold (e.g., 10× the median for that tool type) warrant a secondary content inspection. Bulk data movement is the signature of “export_all” class misuse.
  • BCC or undisclosed-recipient field in email-dispatch tool call output: for any agent-invoked email tool, parse the full SMTP envelope at the mail-transfer agent boundary; alert on any recipient address in the BCC field that does not match a user-supplied recipient from the original request.

OWASP Top 10 for Agentic Applications 2026

The Agentic Top 10 (ASI01 through ASI10) is a separate practitioner-facing publication that maps onto the master Threats & Mitigations threat numbering. T16 is covered by the following Top 10 entries:

  • ASI07Insecure Inter-Agent Communicationprimary

    Agents in a multi-agent system pass instructions, results, and context to one another across APIs, message buses, and shared state. Without per-message authentication and integrity controls, a single compromised peripheral agent becomes an injection source for every peer it can reach. One hop becomes n-hop, and the orchestrator is reachable from the outside.

    OWASP LLM Top 10:LLM02:2026LLM03:2026
  • ASI02Tool Misuse and Exploitationcontributing

    An agent applies authorised tools in ways their operator did not intend, driven by prompt injection, misaligned reasoning, or manipulated tool outputs. Every individual call looks clean; the harm is in the sequence: data exfiltrated via successive reads, workflows hijacked by parameter tampering, or a legitimate API weaponised across turns.

    OWASP LLM Top 10:LLM03:2026

Source: OWASP Top 10 for Agentic Applications 2026 (Dec 2025) · the Top 10 is a compass into the master Threats & Mitigations taxonomy, not a replacement for it.

Design principles at stake

When T16 is present, these security design principles are the ones being violated or tested. Each links to the full principle; the mitigations below are how you restore them.

  • Defence-in-DepthBecause tool descriptions and consent prompts are content the agent reasons over rather than opaque schema, an attacker who controls one tool source can influence every agent that ingests its metadata: no software vulnerability required. Depth means multiple independent gates: tool descriptions are validated against a pinned schema and diffed against historical versions before ingestion; tool-call parameters are validated deterministically at the orchestrator, independently of what the model suggested; and protocol-level messages are signed and replay-resistant so a crafted MCP response cannot be silently replayed into a different context.
  • Zero TrustMCP and A2A protocols were designed for collaboration and embed implicit trust in peer agents and tool servers, which is exactly what this threat exploits: a permissive implementation is sufficient to hijack agent behaviour without stealing credentials. Zero Trust requires that the agent never treat a tool source or peer agent as trusted by default: each tool call is authorised against a policy engine with the current task scope, capability cards are re-verified at each session rather than cached from the initial connection, and a sub-agent never inherits the orchestrator's token simply by virtue of being downstream.
  • Default / Implicit DenyAuto-discovery of new MCP servers and acceptance of capability cards without explicit allow-listing is the design condition that makes consent-flow manipulation and tool-description exploitation viable. Deny by default means the agent may connect only to tool servers on a signed manifest verified by hash on every load, and any tool capability not pre-declared in that manifest is rejected before the model can reason about it, so a server that silently changes its tool description after adoption triggers a manifest mismatch and is refused rather than executed.
  • Confused-Deputy PreventionThe agent is a legitimately-privileged deputy whose tool-calling authority is abused through manipulated descriptions and injected consent flows: no credential is stolen; the deputy is simply confused about what it has genuinely been authorised to do. The countermeasure operates on intent: high-impact tool calls must pass a signed intent digest that binds the call to a specific pre-declared user action, and auto-approval of sensitive operations through A2A negotiation is structurally blocked by requiring an independent deterministic check between the consent negotiation and any execution step.

Red-team pivot: MITRE ATLAS techniques

MITRE ATLAS catalogues adversary techniques against AI systems. Where this OWASP threat has an attacker-perspective counterpart, the ATLAS technique is shown below. That is what a red team would actually be doing on the wire. Use this for detection-signal anchoring, threat-hunting hypotheses, and IR runbooks. Source: mitre-atlas/atlas-data v5.6.0.

© 2026 The MITRE Corporation. ATLAS content is reproduced and distributed with the permission of The MITRE Corporation.

AML.T0073Impersonationview on ATLAS ↗

Adversary poses as a trusted entity (user, service, peer agent) to gain access or influence decisions.

AML.T0074Masqueradingview on ATLAS ↗

Adversary disguises an artefact (file name, agent card, MCP server) so it appears legitimate to humans or agents that route trust by name.

AML.T0080AI Agent Context Poisoningview on ATLAS ↗

Adversary contaminates an agent's context store (short-term scratchpad, vector memory, conversation history) so future reasoning is biased toward attacker goals.

Agentic angle: Persistent across sessions: a single successful poisoning influences every later decision until the memory is purged.

Sources

Adapted by Helmwart from the OWASP source(s) above underCC BY-SA 4.0(changes: normalized IDs, added MAESTRO-layer, agentic-factor, and mitigation mappings). This entry is licensed CC BY-SA 4.0.