feat(C9): add A2A task handoff identity validation control (9.5.5)#629
Open
RicoKomenda wants to merge 1 commit intoOWASP:mainfrom
Open
feat(C9): add A2A task handoff identity validation control (9.5.5)#629RicoKomenda wants to merge 1 commit intoOWASP:mainfrom
RicoKomenda wants to merge 1 commit intoOWASP:mainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds 9.5.5 to C9.5 (Secure Messaging and Protocol Hardening) to address trust boundary enforcement during structured agent-to-agent task delegation.
New control:
Level: 2
Why this is needed
Structured agent-to-agent delegation protocols (Google A2A, OpenAI's emerging multi-agent patterns, AutoGen, LangGraph) allow one agent to hand off tasks with full context to another. This creates a lateral movement path: a compromised or malicious agent can impersonate a legitimate orchestrator and inject tasks into a trusted downstream agent's execution context.
Existing C9.5 controls cover channel encryption and mutual authentication (9.5.1), schema validation (9.5.2), and replay protection (9.5.3), but none require the receiving agent to validate the sender against an explicit approved registry. An agent that accepts tasks from any authenticated peer is vulnerable to task injection from a compromised peer that passed authentication but was never supposed to delegate to it. The approved registry creates a second check: even a valid identity must be on the pre-approved list of agents authorized to delegate.
This is AI-specific because task delegation in multi-agent systems has no direct analogue in traditional web service authorization: the "message" is an agent task with a goal and partial context, not a simple API call, and the downstream agent may take significant actions based on it.
Changes
1.0/en/0x10-C09-Orchestration-and-Agentic-Action.md: add 9.5.51.0/en/0x93-Appendix-D_AI_Security_Controls_Inventory.md: add entry to AD.2