AML.T0073Impersonationview on ATLAS ↗Adversary poses as a trusted entity (user, service, peer agent) to gain access or influence decisions.
T16 · OWASP Agentic AI v1.1
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.
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.
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.
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.
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.
Protocol-layer abuse surfaces in consent logs, tool-registry diffs, and outbound traffic patterns.
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.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:
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.
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.
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.
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.
Auto-generated from the mitigation catalog: every mitigation whose coverage map includes T16, sorted by maturity tier (Tier 1 production-canonical first, then Tier 2, then Tier 3 research-stage).
In most deployments, agents authenticate to one another with long-lived bearer tokens or shared secrets. If any one of those credentials is stolen, the attacker has persistent, platform-wide access until someone manually rotates it. SPIFFE replaces that model: each workload is issued a short-lived, cryptographically verifiable identity document, and every connection requires both sides to present one. No long-lived secrets traverse the network, and a compromised credential is worthless within its TTL.
why it helps Protocol abuse at MCP and A2A endpoints typically requires either an unauthenticated connection or a credential the attacker can forge. SPIFFE mTLS at the endpoint transport layer requires a valid SVID issued by the trusted SPIRE control plane, which an attacker cannot produce without compromising the attestation mechanism.
An agent that holds a persistent catalog of invokable tools can reach any of them at any point in its session. If its reasoning is manipulated or its identity is compromised, that persistent surface is fully available to an attacker. Just-in-time tool grants remove the standing surface: a policy broker issues a time-bound, task-scoped grant immediately before the tool is needed and revokes it automatically when the task completes or the window expires.
why it helps Insecure Inter-Agent Protocol Abuse allows a peer agent to invoke tools beyond its assigned scope by exploiting another agent's session or by misrepresenting task context. JIT grants enforce task-scoped boundaries at the broker layer, so a peer agent cannot expand its callable surface beyond what was granted for the current task regardless of how the request is framed.
An MCP server response is content the LLM will reason over next. The model cannot distinguish tool output from instruction: that boundary must be enforced at the client, before the payload enters the context window. MCP response sanitisation applies schema validation, Unicode normalisation, control-token stripping, and structural wrapping to every tool result at the response boundary, so adversarial content embedded in a server response cannot redirect the agent's planner.
why it helps Insecure Inter-Agent Protocol Abuse includes Context Hijacking via MCP Response Injection as a named scenario: an attacker-controlled server returns a payload designed to seize the agent's session. Schema validation rejects malformed responses at the boundary; pattern stripping and contextual wrapping reduce the attack surface for responses that pass schema.
An inter-agent message travels through channels and intermediate agents the receiver did not originate. If nothing binds the message cryptographically to its source, any intermediate hop can substitute or inject content that the receiving agent will treat as authoritative. Message signing closes that gap: the source agent signs each message payload with its private key, and the receiver verifies the signature against a distributed trust bundle before the content reaches the reasoning layer.
why it helps Insecure Inter-Agent Protocol Abuse includes an MCP-response-injection path in which a malicious MCP response is passed to the agent as if it were a legitimate server reply. Payload-level signatures on MCP messages make injected responses verifiably invalid.
Each tool in an agent's catalog should expose only the methods, resources, and parameter ranges its designated role requires. Over-broad tool surfaces let individually authorised primitives compose into actions no human intended to grant; narrowing the scope at design time reduces both the attack surface and the blast radius of any compromise.
why it helps Descriptive Exploitation (OWASP T16) relies on the agent inferring broad capability from a tool's self-description. When scope is enforced at the call boundary independent of the description, a misleading description cannot unlock methods or resources that were never included in the tool's defined surface.
A tool's description field is concatenated directly into the agent's system prompt and shapes which tools the agent selects and how it uses them. An attacker who controls or compromises a tool manifest can plant a description that overstates the tool's scope, suppresses safety scaffolding, or embeds instruction-following language aimed at the agent. Validating descriptions at catalog-load, before the tool enters the runtime, stops that class of manipulation at the registration boundary rather than detecting its effects later at the call seam.
why it helps Tool poisoning via descriptive exploitation works by registering a tool whose description field carries adversarial content: inflated capability claims, instruction-following phrases, or scope-broadening language that biases the agent's tool-selection reasoning. Validating the description at catalog-load catches that content before it enters the prompt context, removing the manipulation surface at the point where it is cheapest to stop.
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.
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.
Press play. The voice downloads once, then it’s cached.
On-device · private