Securing autonomous AI agents, control by control.

One crosswalk for securing autonomous AI agents. Every control mapped to the threat it stops, the standard behind it, who builds it, how to deploy it, and how to prove it holds.

v1.2 · as of 2026-06-25T02:04Z · 51 controls across 6 layers · for GRC, engineering, detection engineering, red teams & SecOps

Interactive filters need JavaScript. All 51 controls are shown below regardless. Click any control to expand it.

01Identity & Authority6 controls
IA-01Give every agent its own distinct identity, never a shared or human loginEach agent gets its own name badge, so you always know which one did what.ASI03 · NHI10Agents that log in as a person, or share one account, inherit far more access than they need, and you can't tell them apart when something goes wrong.coreproductctrl
Threat it stops

ASI03 · NHI10 Agents that log in as a person, or share one account, inherit far more access than they need, and you can't tell them apart when something goes wrong.

matters most for · AutonomyExternal reach
Enforcement point · where it runs

Identity provider / directory + a workload-identity issuer (e.g. SPIFFE/SPIRE control plane); bound at issuance, never in app code.

How to implement

Every agent instance is registered as its own workload identity (for example a SPIFFE SVID or a directory agent object) and authenticates as itself, never as the user who started it and never with a shared service account. Give the stable, logical agent a governed identity, and give each runtime instance or delegated task a short-lived credential tied back to that identity and its parent.

  1. Register each agent as a distinct identity in your directory or workload-identity system.
  2. Bind that identity to a cryptographically verifiable credential (SPIFFE SVID, signed agent object) that rotates automatically.
  3. Forbid agents from using human user logins or a single shared service account.
  4. Tie the identity to the agent's owner, purpose, and permitted scope so it can be governed and offboarded.
Avoid
  • ✗ agents running as the developer's own user account
  • ✗ one shared service account across many agents
  • ✗ an agent identity that never expires or rotates
How to validate it

Design check, is it configured?

  • Inventory every running agent and confirm a one-to-one link between each agent instance and its own identity. Flag any agent authenticating as a human user, a shared account, or an unregistered principal. [src]

Runtime test, does it hold under attack?

  • Have agent B try to authenticate as agent A's identity, mutual-TLS / SVID validation must reject it. [src]
  • Confirm from telemetry that no agent process is presenting a human user's credentials. [src]

Evidence, what proves it over time?

  • An agent-identity register, diffed over time, showing issuance, rotation, and de-provisioning events. [src]
By team

Engineering
Issue each agent a SPIFFE SVID or directory identity at start-up; never pass it your own credentials.

Detection Eng
Alert when an agent process authenticates with a human account or an identity you never issued.

Red Team
Try to make one agent impersonate another, or run an agent under a borrowed user login.

GRC
Maintain an agent register tying every identity to an owner and purpose, this is your who-did-what record.

SecOps / IR
When an agent misbehaves, its distinct identity is what lets you isolate just that one.

Standards crosswalk
CSA AICM
IAM-03 (identity inventory); IAM-12 (uniquely identifiable users) · verified partial
evidence
CSA AISMM
IAM-02.2, IAM-03.1, IAM-04.1 · verified direct
evidence
Section CSA AISMM IAM-02.2, IAM-03.1, IAM-04.1
Why Give every agent its own distinct identity, never a shared or human login maps to AISMM control(s) IAM-02.2, IAM-03.1, IAM-04.1.
Verified 2026-06-22
NIST
AI RMF: Manage · verified adjacent
evidence
Section Manage function
Why NIST AI RMF Manage function: prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Give every agent its own distinct identity, never a shared or human login" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.9.2 (responsible use of AI systems) · verified adjacent
OWASP
ASI03 Identity & Privilege Abuse; NHI10 Human Use of NHI · verified direct
evidence
Section OWASP ASI03, NHI10
Why Give every agent its own distinct identity, never a shared or human login addresses OWASP ASI03 Identity & Privilege Abuse; NHI10 Human Use of NHI.
Verified 2026-06-22
OWASP AISVS
C9.4.1 (unique per-agent cryptographic identity); C5.1.2 (short-lived signed agent tokens) · verified direct
evidence
Section AISVS v1.0, C9 Orchestration & Agentic Action; C5 Access Control & Identity
Why Per-agent distinct identity is the agentic case of AISVS unique cryptographic agent identity and short-lived signed agent tokens.
Verified 2026-06-24
IMDA MGF
§2.1.2 (robust identity & permissions framework); §2.2.1 (per-agent identity tokens) · verified direct
evidence
Section IMDA MGF §2.1.2, §2.2.1
Why Give every agent its own distinct identity, never a shared or human login maps to IMDA MGF robust identity & permissions framework; per-agent identity tokens.
Verified 2026-06-24
AWS Scoping
Identity context (authN / authZ) · indicative
Standard / protocol

SPIFFE workload identity · W3C DID / Verifiable Credentials · directory-issued agent identity

Implemented by · by type
ProductsMicrosoft (Entra Agent ID) productPing Identity productOkta product
Open sourceSPIRE open-source
Covered by · vendor features, factual coverage not endorsement
Microsoft (Entra Agent ID) productdirectclaimed· verified
Agent identity as a first-class Entra service principal
Registers each agent built in Copilot Studio or Azure AI Foundry as its own special service principal in Microsoft Entra ID, with a unique object ID, so the agent authenticates as itself rather than as a shared account or a human user.
evidence
Section Agent identities
Why Microsoft documents an agent identity as a special service principal in Microsoft Entra ID with its own object ID that uniquely identifies the account within the tenant, which is the per-agent distinct identity IA-01 requires.
Verified 2026-06-26
Oasis Security productdirectclaimed· verified
Agentic Access Management — JIT Session Identities (identity-to-prompt mapping)
Provisions an ephemeral session identity per agent session and binds each prompt to a unique identity, so an agent acts under its own distinct, traceable identity rather than a shared service account.
evidence
Section JIT Session Identities / Identity-to-Prompt Mapping
Why Oasis documents JIT session identities that bind each prompt to a unique identity with a full audit trail, which is the distinct per-agent identity IA-01 requires. Basis is claimed: this is a recently launched capability with no independent validation located.
Verified 2026-06-26
Source guidance
SPIFFE, workload identity standard (SVIDs; short-lived, auto-rotated). SPIRE = reference implementationW3C DID Core v1.0 + Verifiable Credentials Data Model v2.0 (portable non-human identity)NIST NCCoE, Accelerating the Adoption of Software and AI Agent Identity and Authorization (concept paper, no control IDs)OWASP Non-Human Identities Top 10 (2025)Ping Identity, Identity for AI (Agent IAM Core, Agent Gateway, Agent Detection) claimMicrosoft, Entra Agent ID (non-human identity for agents in the directory) claimCSA AI Security Maturity Model (AISMM) v3.7 — flagship CSA maturity model (2026-05-07) with a per-control AICM v1.0.3 crosswalkNIST / FedRAMP fast-track agentic-AI policy direction (expected/forthcoming): cryptographic agent identity (SPIFFE/DID) + mandatory pre-execution checks / kill-switches for high-stakes automation claim
⚑ Bounded by the cross-org identity federation gap
IA-02Hand out short-lived, task-scoped keys (no long-lived secrets)Give the agent a day-pass for one job, not a master key it keeps forever.ASI03 · NHI7Long-lived API keys and standing permissions are the number-one way non-human identities get abused: the secret leaks or the agent is hijacked, and the access is still valid weeks later.coreproductctrl
Threat it stops

ASI03 · NHI7 Long-lived API keys and standing permissions are the number-one way non-human identities get abused: the secret leaks or the agent is hijacked, and the access is still valid weeks later.

matters most for · External reachData sensitivity
builds on ·
Enforcement point · where it runs

Token broker / OAuth authorization server doing token exchange; the minting key stays in the broker, outside the agent.

How to implement

The agent holds no reusable, long-lived secret of its own (a hardware- or platform-backed mechanism may still attest its identity, but that is not a copyable key). At the moment it needs to act, it presents its own identity (IA-01) to a broker, which mints a task-scoped access token bound to one tool or resource, set to expire in minutes. The broker injects that short-lived credential at run time.

  1. Register each agent as its own identity first (depends on IA-01).
  2. Mint a task-scoped token via RFC 8693 token-exchange at the identity provider or broker, with scope bound to the specific tool or resource.
  3. Set the lifetime to the length of the task (minutes), not days; require a fresh mint, not a refresh, for a new scope.
  4. Keep no long-lived secret on the agent host, in config, in the repo, or in memory; the broker supplies the credential at run time.
  5. For a bounded run such as a payroll cycle, issue a cycle-scoped credential of intent that pre-declares the authorization ceiling for the whole run, and verify every action against it (IMDA MGF, Terminal 3).
Avoid
  • ✗ static API keys in config files, environment variables, or the repo
  • ✗ one shared token reused across tasks
  • ✗ refresh tokens that outlive the task
How to validate it

Design check, is it configured?

  • Scan the agent host, environment, repo, config, and memory store for any credential whose lifetime exceeds the policy maximum; assert zero. [src]
  • Confirm each minted token's scope is for one tool or resource, never a wildcard. [src]

Runtime test, does it hold under attack?

  • Replay a captured token after its lifetime has expired, it must be rejected. [src]
  • Present a captured token to a tool outside its bound scope, it must be rejected. [src]
  • Drive the agent (via an AgentDojo scope-escalation scenario) to request an action the user never authorised; the scoped token must block it. [src]

Evidence, what proves it over time?

  • Broker / identity-provider token-issuance log for every call, requesting agent identity, granted scope, lifetime, and exchange chain, retained for audit and EU AI Act Article 12. [src]
  • Continuous secret-scanner report from CI and host showing zero static long-lived secrets (ties to AS-02). [src]
By team

Engineering
Swap stored API keys for run-time token-exchange: present the agent's identity, get back a minutes-long token scoped to one tool.

Detection Eng
Alert on any tool call presenting a reused or long-lived bearer token instead of a freshly minted one.

Red Team
Steal a token and replay it after expiry and outside its scope, both should fail. Grep the repo and env for static keys.

GRC
The broker's issuance log (who got what scope, for how long) is your evidence the control holds, and it maps to EU AI Act Art. 12.

SecOps / IR
Short lifetimes mean a stolen token is near-useless minutes later, shrinking the incident.

Standards crosswalk
CSA AICM
IAM-10 (privileged access, time-limited); IAM-14 (credential management) · verified partial
evidence
CSA AISMM
IAM-05.1 · verified direct
evidence
Section CSA AISMM IAM-05.1
Why Hand out short-lived, task-scoped keys (no long-lived secrets) maps to AISMM control(s) IAM-05.1.
Verified 2026-06-22
NIST
AI RMF: Manage · verified adjacent
evidence
Section Manage function
Why NIST AI RMF Manage function: prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Hand out short-lived, task-scoped keys (no long-lived secrets)" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.9.2 (responsible use of AI systems) · verified adjacent
OWASP
NHI7 Long-Lived Secrets; ASI03 Identity & Privilege Abuse · verified direct
evidence
Section OWASP NHI7, ASI03
Why Hand out short-lived, task-scoped keys (no long-lived secrets) addresses OWASP NHI7 Long-Lived Secrets; ASI03 Identity & Privilege Abuse.
Verified 2026-06-22
OWASP AISVS
C5.1.2 (short-lived, minimal-scope agent tokens); C9.4.3 (credential rotation); C9.5.4 (no secrets in model context) · verified direct
evidence
Section AISVS v1.0, C5 Access Control & Identity; C9 Orchestration & Agentic Action
Why Short-lived, task-scoped credentials with rotation and no secrets in context is the AISVS agent-token lifecycle.
Verified 2026-06-24
IMDA MGF
§2.2.1 (scoped API keys); §2.1.2 (least-privilege permissions) · verified direct
evidence
Section IMDA MGF §2.2.1, §2.1.2
Why Hand out short-lived, task-scoped keys (no long-lived secrets) maps to IMDA MGF scoped API keys; least-privilege permissions.
Verified 2026-06-24
AWS Scoping
Identity context (authN / authZ) · indicative
Standard / protocol

cycle-scoped credential of intent (a pre-declared per-run authorization ceiling) · OAuth 2.1 (IETF draft) · Token Exchange (RFC 8693) · OIDC/CIBA

Implemented by · by type
ProductsPing Identity productOkta (Auth0 Auth for GenAI) product
Covered by · vendor features, factual coverage not endorsement
Oasis Security productdirectclaimed· verified
Agentic Access Management — ephemeral least-privilege session credentials
Issues least-privilege credentials scoped to a seconds-to-minutes session and eliminates standing secrets, so an agent never holds a long-lived key.
evidence
Section JIT Session Identities
Why Oasis documents ephemeral, least-privilege credentials for seconds-to-minutes sessions that eliminate standing secrets, which is the short-lived, task-scoped credential IA-02 requires.
Verified 2026-06-26
Oasis Security productpartialclaimed· verified
Safe Secret Rotation (dependency-aware, vault-agnostic)
Rotates, rekeys, and decommissions existing secrets with knowledge of the consuming identity, its consumers, and its resources, in manual, on-demand, or policy-based-automatic modes, so long-lived secrets that do exist are cycled without breaking dependencies.
evidence
Section Rotation modes
Why Oasis documents dependency-aware secret rotation across manual, on-demand, and automatic modes. It is a partial fit for IA-02 because it manages and shortens the life of existing secrets rather than removing standing secrets entirely (which the JIT capability addresses).
Verified 2026-06-26
Source guidance
Singapore IMDA / AI Verify Foundation, Model AI Governance Framework (MGF) for Agentic AI v1.5 (20 May 2026, updated 5 Jun 2026); four dimensions: assess and bound risks, make humans accountable, technical controls, end-user responsibilityRFC 8693, OAuth 2.0 Token Exchange (delegation via act claim, impersonation, may_act)OAuth 2.1 (IETF draft, not yet an RFC)OpenID Connect CIBA Core 1.0 (Final), decoupled out-of-band approvalOWASP Non-Human Identities Top 10 (2025)Okta / Auth0, Auth for GenAI (async authorization, RAG authz, Token Vault) claimPing Identity, Identity for AI (Agent IAM Core, Agent Gateway, Agent Detection) claimCSA AI Security Maturity Model (AISMM) v3.7 — flagship CSA maturity model (2026-05-07) with a per-control AICM v1.0.3 crosswalkCSA + Strata Identity — Securing Autonomous AI Agents (2026 survey, ~285 practitioners): 40% have agents in production, only 18% highly confident in agent IAM, 84% doubt passing an agent-behavior compliance audit, ownership fragmented across Security 39% / IT 32% / AI 13%
IA-03Act on the user's behalf with explicit approval for sensitive stepsThe agent borrows the user's permission for a job, and must ask before doing anything risky.ASI03 · ASI02If an agent is handed broad delegated power, it can act beyond what the user actually intended, especially after a prompt-injection nudge.productctrl
Threat it stops

ASI03 · ASI02 If an agent is handed broad delegated power, it can act beyond what the user actually intended, especially after a prompt-injection nudge.

matters most for · External reachIrreversibility
Enforcement point · where it runs

Authorization server issuing delegated (act-claim) tokens, plus an out-of-band approval service for sensitive steps.

How to implement

When an agent acts for a user, it carries a delegated token that names both the user (the subject) and the agent (the actor), true delegation, not impersonation. Sensitive actions trigger an explicit, out-of-band approval before they proceed.

  1. Use RFC 8693 token-exchange so the token carries the user as subject and the agent as actor (the act claim).
  2. Gate sensitive actions behind an explicit approval step using OIDC/CIBA or async authorization (push to a separate device, no silent auto-approve).
  3. Bind the delegated scope to the user's actual intent for this task, not their full standing access.
  4. Declare the delegated authority's ceiling before the run begins (which records, which thresholds, which spend cap) rather than granting open-ended delegated access (IMDA MGF, Terminal 3).
Avoid
  • ✗ the agent impersonating the user with no record that an agent acted
  • ✗ a single broad consent that covers every future action
  • ✗ sensitive actions auto-approved inside the agent loop
How to validate it

Design check, is it configured?

  • Inspect the token-exchange config: confirm the user's subject token is carried and an actor token identifies the agent (delegation, not impersonation). [src]
  • Confirm sensitive scopes require an explicit interactive approval (OIDC/CIBA or async-authz). [src]

Runtime test, does it hold under attack?

  • Use a prompt-injection payload to drive the agent toward an action the user never authorised; the on-behalf-of scope must block it and the approval gate must fire. Run as an AgentDojo banking/workspace scenario. [src]

Evidence, what proves it over time?

  • Approval log linking each sensitive action to the human who approved it and the delegated token that carried it. [src]
By team

Engineering
Use token-exchange with an actor claim so the token says 'agent acting for user X', and wire sensitive actions to a CIBA push approval.

Detection Eng
Alert when a sensitive action proceeds without a matching approval event.

Red Team
Inject instructions to push the agent past the user's intent; confirm the scope and approval gate stop it.

GRC
Every sensitive action should resolve to a named human approver, that linkage is the record.

SecOps / IR
Delegation tokens show both the agent and the user, so you can trace an action to the real authoriser.

Standards crosswalk
CSA AICM
IAM-15 (authorization mechanisms); IAM-12 (uniquely identifiable users) · verified partial
evidence
CSA AISMM
IAM-04.2 · verified direct
evidence
Section CSA AISMM IAM-04.2
Why Act on the user's behalf with explicit approval for sensitive steps maps to AISMM control(s) IAM-04.2.
Verified 2026-06-22
NIST
AI RMF: Govern, Manage · verified adjacent
evidence
Section Govern / Manage functions
Why NIST AI RMF Govern / Manage functions: cultivate and operate a culture of AI risk management, with policies, roles, accountability, and oversight; prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Act on the user's behalf with explicit approval for sensitive steps" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.9.2 (responsible use of AI systems) · verified adjacent
OWASP
ASI03 Identity & Privilege Abuse; ASI02 Tool Misuse · verified direct
evidence
Section OWASP ASI03, ASI02
Why Act on the user's behalf with explicit approval for sensitive steps addresses OWASP ASI03 Identity & Privilege Abuse; ASI02 Tool Misuse.
Verified 2026-06-22
OWASP AISVS
C9.5.2 (scope-limited on-behalf-of delegation token); C9.2.1 (human approval for high-impact steps) · verified direct
evidence
Section AISVS v1.0, C9 Orchestration & Agentic Action
Why Acting on a user's behalf with approval maps to AISVS scope-limited on-behalf-of delegation plus human approval of high-impact steps.
Verified 2026-06-24
IMDA MGF
§2.2.2 (human approval at significant checkpoints); §2.1.2 (agent limits) · verified direct
evidence
Section IMDA MGF §2.2.2, §2.1.2
Why Act on the user's behalf with explicit approval for sensitive steps maps to IMDA MGF human approval at significant checkpoints; agent limits.
Verified 2026-06-24
AWS Scoping
Identity context (authN / authZ); Orchestration · indicative
Standard / protocol

purpose-bound delegation declared before the run · OAuth Token Exchange (delegation via act claim) · OIDC/CIBA · Okta Cross App Access

Implemented by · by type
ProductsOkta (Cross App Access) productPing Identity product
Covered by · vendor features, factual coverage not endorsement
Okta (Auth0 Auth for GenAI) productdirectclaimed· verified
Asynchronous Authorization (CIBA with Rich Authorization Requests)
Lets an agent pause a sensitive action and request explicit human approval out of band over the CIBA backchannel, using Rich Authorization Requests to show the user the specific transaction (for example the exact payee and amount) before they approve.
evidence
Section Asynchronous Authorization
Why Auth0 documents a CIBA-based decoupled approval flow, enhanced with Rich Authorization Requests, that asks a human to approve a specific agent action before it proceeds, which is the explicit per-action approval for sensitive steps IA-03 requires.
Verified 2026-06-26
Oasis Security productdirectclaimed· verified
Agentic Access Management — Deterministic Policy Enforcement with human-in-the-loop
A deterministic policy engine validates each agent access decision and escalates to a human-in-the-loop when the agent crosses a privilege boundary, gating sensitive actions on explicit human approval.
evidence
Section Deterministic Policy Enforcement
Why Oasis documents a policy engine that escalates with human-in-the-loop when privilege boundaries are crossed, which is the explicit approval for sensitive steps IA-03 requires.
Verified 2026-06-26
HYPR productsupportingvalidated [indep]· verified
HYPR Authenticate — phishing-resistant FIDO2 passwordless authentication
Secures the HUMAN approval step, not the agent: when a sensitive agent action is gated on a human, HYPR's FIDO2 passkey authentication makes that approval phishing-resistant and resistant to MFA-bombing and relay, so the human-in-the-loop gate cannot be trivially socially engineered.
evidence
Section Phishing-resistant authentication
Why HYPR provides FIDO2 phishing-resistant authentication for human users. This supports IA-03 by hardening the human approval gate, but it secures the human, not the agent, hence coverage is supporting. The FIDO2 capability itself is independently validated (FIDO certification).
Verified 2026-06-26
Source guidance
Singapore IMDA / AI Verify Foundation, Model AI Governance Framework (MGF) for Agentic AI v1.5 (20 May 2026, updated 5 Jun 2026); four dimensions: assess and bound risks, make humans accountable, technical controls, end-user responsibilityRFC 8693, OAuth 2.0 Token Exchange (delegation via act claim, impersonation, may_act)OpenID Connect CIBA Core 1.0 (Final), decoupled out-of-band approvalOkta, Cross App Access (OAuth extension for agent-to-app delegation) claimOkta / Auth0, Auth for GenAI (async authorization, RAG authz, Token Vault) claimCISA — Careful Adoption of Agentic Artificial Intelligence (AI) Services (5 risk classes: privilege, design/config, behavioural, structural, accountability)CSA AI Security Maturity Model (AISMM) v3.7 — flagship CSA maturity model (2026-05-07) with a per-control AICM v1.0.3 crosswalk
⚑ Bounded by the cross-org identity federation gap
IA-04Check permission continuously at run time, not just once at loginKeep asking 'are you still allowed to do this?' on every action, not only at the start.ASI03An agent that is authorised once at the start can drift, it keeps acting on permissions that should have been revoked. Whatever enforces at run time is the real point of control.productctrl
Threat it stops

ASI03 An agent that is authorised once at the start can drift, it keeps acting on permissions that should have been revoked. Whatever enforces at run time is the real point of control.

matters most for · AutonomyData sensitivity
Enforcement point · where it runs

In-path policy decision point (PDP) evaluated on every tool call (ABAC/NGAC), external to the model loop.

How to implement

Authorization is evaluated at every tool call by a policy engine in the request path (attribute-based / NGAC), not cached from the start of the session. A policy change takes effect immediately, revoking authority that is already in flight.

  1. Put a policy engine (ABAC/NGAC) in the request path so each tool call is checked against current policy.
  2. Drive decisions from live attributes (task, risk, time, prior actions), not a token issued once at login.
  3. Make policy changes revoke in-flight authority, not just future sessions.
  4. Evaluate privilege against the running graph of combined session actions, not just the current tool schema, a sequence of individually-allowed actions can satisfy a hijacked goal.
Response lever · when it fires

revoke — deny the agent's next tool call; instant revocation contains it short of a full kill

Avoid
  • ✗ authorising once at session start and trusting it for hours
  • ✗ policy changes that only apply to new sessions
  • ✗ the agent itself deciding whether it is allowed
  • ✗ authorising each tool call in isolation while a chain of allowed actions achieves a hijacked objective
How to validate it

Design check, is it configured?

  • Confirm authorization is evaluated at each tool call by a policy engine in the request path, not cached from session start. [src]
  • Confirm a policy change revokes authority that is already in flight. [src]

Runtime test, does it hold under attack?

  • Mid-task, revoke a permission and confirm the agent's next tool call is denied, not allowed to ride the old session. [src]

Evidence, what proves it over time?

  • Authorization-decision log from the runtime policy engine: per tool call, the policy version evaluated and the allow/deny result. [src]
Detection signal · what to alert on

telemetry · agent_idtool_sinkresourcescopeaudtoken_jtipolicy_epochpolicy_decision_iddecisiondeny_reasoncache_hitrevoked_atdecision_latency_mspdp_idpep_idprior_action_chain

Baseline: Each agent's normal tool/scope profile, the current policy epoch, and per-PDP decision latency.

Alert: An action allowed against a stale policy epoch or after revoked_at; a token whose audience / resource / scope does not match the sink; a cache_hit masking a revocation; or an allowed step-chain diverging from the task.

ATLAS · ATLAS mitigations: AML.M0026 (Privileged AI Agent Permissions Configuration), AML.M0027 (Single-User AI Agent Permissions Configuration)

By team

Engineering
Move from session-start auth to per-call policy checks (OPA/NGAC in the request path); make revocation instant.

Detection Eng
Alert if a tool call succeeds against a permission that was already revoked.

Red Team
Get authorised, have the permission pulled mid-task, then try one more action, it should be denied. Also chain individually-allowed actions toward a hijacked goal and see if sequence-aware authorization catches it.

GRC
The per-call decision log proves authority was checked continuously, not just at login.

SecOps / IR
Instant revocation is your fastest containment lever short of a kill switch.

Standards crosswalk
CSA AICM
IAM-15 (authorization mechanisms); IAM-08 (continuous access review) · verified partial
evidence
CSA AISMM
IAM-04.3, IAM-05.3 · verified direct
evidence
Section CSA AISMM IAM-04.3, IAM-05.3
Why Check permission continuously at run time, not just once at login maps to AISMM control(s) IAM-04.3, IAM-05.3.
Verified 2026-06-22
NIST
AI RMF: Manage · verified adjacent
evidence
Section Manage function
Why NIST AI RMF Manage function: prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Check permission continuously at run time, not just once at login" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.9.2 (responsible use of AI systems) · verified adjacent
OWASP
ASI03 Identity & Privilege Abuse · verified direct
evidence
Section OWASP ASI03
Why Check permission continuously at run time, not just once at login addresses OWASP ASI03 Identity & Privilege Abuse.
Verified 2026-06-22
OWASP AISVS
C9.5.3 (authz decided by a policy engine, never the model); C9.5.6 (re-check authz per privileged action); C9.5.1 (fine-grained tool and parameter policy); C5.2.5 (isolated policy decision point) · verified direct
evidence
Section AISVS v1.0, C9 Orchestration & Agentic Action; C5 Access Control & Identity
Why Continuous runtime authorization is the AISVS rule that a policy engine, never the model, decides access and re-checks it per privileged action.
Verified 2026-06-24
MITRE ATLAS
ATLAS mitigations: AML.M0026 (Privileged AI Agent Permissions Configuration), AML.M0027 (Single-User AI Agent Permissions Configuration) · verified supporting
evidence
Section MITRE ATLAS mitigations AML.M0026, AML.M0027
Why Check permission continuously at run time, not just once at login implements ATLAS mitigation(s) Privileged AI Agent Permissions Configuration, Single-User AI Agent Permissions Configuration.
Verified 2026-06-24
IMDA MGF
§2.3.1 (runtime controls; access controls enforced at the tool layer) · indicative adjacent
evidence
Section IMDA MGF §2.3.1
Why Check permission continuously at run time, not just once at login maps to IMDA MGF runtime controls; access controls enforced at the tool layer.
AWS Scoping
Identity context (authN / authZ); Agency perimeters & policies · indicative
Standard / protocol

ABAC · NGAC (ANSI/INCITS 565-2020) · Zero Trust (NIST SP 800-207)

Implemented by · by type
ProductsPing Identity (Agent Gateway) productCrowdStrike product
Covered by · vendor features, factual coverage not endorsement
Oasis Security productpartialclaimed· verified
Agentic Access Management — Intent Inference and per-decision policy validation
Interprets what an agent is trying to do, who invoked it, and what data it accesses, and validates each access decision against policy at request time rather than only at session start.
evidence
Section Intent Inference / Deterministic Policy Enforcement
Why Oasis documents per-decision policy validation driven by intent inference, which aligns with checking permission continuously at run time (IA-04). Partial because the evidence describes per-access-decision validation, not a documented continuous re-evaluation across a long-running session.
Verified 2026-06-26
HYPR productadjacentclaimed· verified
HYPR Adapt — adaptive / continuous authentication with OPA policy
Adjacent to IA-04: continuously re-scores human risk from device, behavioral, and contextual signals and adjusts authentication via an Open Policy Agent policy engine. It applies to the human user's session, not the agent's runtime authorization, so it is an adjacent rather than direct fit.
evidence
Section Adaptive / continuous authentication
Why HYPR documents continuous, risk-based adaptive authentication with OPA-based policy. It aligns conceptually with checking permission continuously (IA-04) but operates on the human user, not the agent runtime, so coverage is adjacent. Basis is claimed: the risk-engine efficacy is vendor-stated with no independent benchmark.
Verified 2026-06-26
Source guidance
NGAC, Next Generation Access Control (ANSI/INCITS 565-2020; NIST SP 800-178 is a comparison paper)NIST NCCoE, Accelerating the Adoption of Software and AI Agent Identity and Authorization (concept paper, no control IDs)Ping Identity, Identity for AI (Agent IAM Core, Agent Gateway, Agent Detection) claimGoogle, An Introduction to Google's Approach for Secure AI Agents (three principles: human controllers, limited powers, observable actions)CSA AI Security Maturity Model (AISMM) v3.7 — flagship CSA maturity model (2026-05-07) with a per-control AICM v1.0.3 crosswalk
⚑ Bounded by the cross-org identity federation gap
IA-05Find and inventory every agent, surface the shadow onesKeep a live list of every agent running, including the ones nobody told you about.ASI10Unmanaged 'shadow' agents with real system access run without the security team's knowledge, you can't protect what you can't see.productctrl
Threat it stops

ASI10 Unmanaged 'shadow' agents with real system access run without the security team's knowledge, you can't protect what you can't see.

matters most for · Autonomy
builds on ·
Enforcement point · where it runs

Identity-governance / discovery plane reconciling issued identities against processes observed on endpoints and in SaaS.

How to implement

Continuously reconcile the identities you issued (IA-01) against the agent processes actually observed on endpoints and in SaaS. Any agent with system access and no issued identity is a finding.

  1. Discover agent processes from endpoint and SaaS telemetry.
  2. Reconcile that against your agent-identity register (IA-01).
  3. Flag any agent with system access that has no issued identity, and bring it under governance or shut it down.
Response lever · when it fires

quarantine / de-provision — bring an unregistered agent under governance or shut it down

Avoid
  • ✗ relying on a manual spreadsheet of agents
  • ✗ discovering agents only during an incident
  • ✗ no owner for un-registered agents
How to validate it

Design check, is it configured?

  • Confirm the discovery source covers both endpoints and SaaS, and reconciles against the identity register. [src]

Runtime test, does it hold under attack?

  • Spin up an unregistered 'shadow' agent with a real API key and confirm discovery flags it within the detection window. [src]

Evidence, what proves it over time?

  • Periodic reconciliation report: discovered agents vs issued identities, with the gap list and its remediation. [src]
Detection signal · what to alert on

telemetry · process_agent_idissued_identity_matchhostsaas_appfirst_seen

Baseline: the inventory of identities you issued

Alert: a process with system access and no issued identity (a shadow agent)

By team

Engineering
Feed endpoint/SaaS agent signals into a reconciliation job against your identity register.

Detection Eng
Alert on any agent process with system access that has no issued identity.

Red Team
Launch an unsanctioned agent and measure how long until it's discovered.

GRC
The reconciliation report is your evidence that no ungoverned agents are operating.

SecOps / IR
Shadow-agent discovery is often the first warning of a rogue or compromised agent.

Standards crosswalk
CSA AICM
IAM-03 (identity inventory); CCC-06 (change-management baseline) · verified partial
evidence
CSA AISMM
ORG-02.1, ORG-04.2, IAM-02.2 · verified direct
evidence
Section CSA AISMM ORG-02.1, ORG-04.2, IAM-02.2
Why Find and inventory every agent, surface the shadow ones maps to AISMM control(s) ORG-02.1, ORG-04.2, IAM-02.2.
Verified 2026-06-22
NIST
AI RMF: Map · verified adjacent
evidence
Section Map function
Why NIST AI RMF Map function: establish context and identify and categorise the AI risks. "Find and inventory every agent, surface the shadow ones" is a corresponding risk-identification activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.4.2 (resource documentation) · verified adjacent
OWASP
ASI10 Rogue Agents · verified direct
evidence
Section OWASP ASI10
Why Find and inventory every agent, surface the shadow ones addresses OWASP ASI10 Rogue Agents.
Verified 2026-06-22
OWASP AISVS
C3.1.1 (registry and inventory of deployed artifacts) · indicative partial
evidence
Section AISVS v1.0, C3 Model Lifecycle Management
Why Agent discovery and inventory aligns loosely with the AISVS deployed-artifact registry, which is model-centric, hence indicative.
Verified 2026-06-24
IMDA MGF
§2.2.1 (maintain sufficient visibility & control over agents) · indicative adjacent
evidence
Section IMDA MGF §2.2.1
Why Find and inventory every agent, surface the shadow ones maps to IMDA MGF maintain sufficient visibility & control over agents.
AWS Scoping
Identity context (authN / authZ) · indicative
Standard / protocol

endpoint + SaaS discovery · asset & privilege correlation

Implemented by · by type
ProductsCrowdStrike productMicrosoft (Agent 365) productPing Identity product
Covered by · vendor features, factual coverage not endorsement
Microsoft (Entra Agent ID) productpartialclaimed· verified
Unified agent directory and Agent ID inventory filter
Surfaces agent identities registered in the tenant in one directory, with an Agent ID application-type filter in the Entra admin center to inventory the agents created across Copilot Studio and Azure AI Foundry. Covers agents registered in Entra, not the shadow agents running outside it.
evidence
Section A unified directory of agent identities
Why Microsoft documents a unified directory plus an Agent ID application-type filter to inventory agents registered in the tenant, which is the discovery and inventory function IA-05 requires. It is a partial fit because it covers agents registered in Entra, not the shadow agents IA-05 also asks you to surface.
Verified 2026-06-26
Oasis Security productdirectclaimed· verified
NHI Discovery, shadow-AI agent discovery, and AI-SPM
Continuously discovers non-human identities and unauthorized AI tools, agent-associated NHIs, and unmonitored agent activity across cloud, SaaS, and endpoints, including shadow AI, and assesses each agent's configuration and posture.
evidence
Section AI Agent Discovery / AI-SPM
Why Oasis documents continuous discovery of unauthorized tools, NHIs, and unmonitored agent activity (shadow AI), which is the agent inventory including shadow agents that IA-05 requires.
Verified 2026-06-26
Source guidance
CISA — Careful Adoption of Agentic Artificial Intelligence (AI) Services (5 risk classes: privilege, design/config, behavioural, structural, accountability)CrowdStrike, Securing AI Where It Executes / Falcon AIDR (endpoint as runtime enforcement point; OS process-lineage) claimMicrosoft, Agent 365 (registry/control plane for agents; shadow-agent discovery) claimCSA AI Security Maturity Model (AISMM) v3.7 — flagship CSA maturity model (2026-05-07) with a per-control AICM v1.0.3 crosswalkCSA + Strata Identity — Securing Autonomous AI Agents (2026 survey, ~285 practitioners): 40% have agents in production, only 18% highly confident in agent IAM, 84% doubt passing an agent-behavior compliance audit, ownership fragmented across Security 39% / IT 32% / AI 13%
IA-06Bind a signed, end-to-end provenance chain to every agent actionSign every hand-off so you can prove exactly who and what led to any action: the person, the agents, and the tools.threatTamper-evident storage (GV-02) proves the log was not altered, but not who actually caused the action. In a chain (human to orchestrator to sub-agent to tool), a forged or replayed hand-off, or a sub-agent acting beyond its delegation, leaves the record pointing at the wrong actor. Without a signed lineage binding every hop, attribution collapses exactly when an investigation needs it, and EU AI Act Article 12 record-keeping has nothing cryptographic to stand on. This is the rest of the chain-of-custody gap that GV-02 storage alone does not close.compensatingemergingemergingctrl
Threat it stops

Tamper-evident storage (GV-02) proves the log was not altered, but not who actually caused the action. In a chain (human to orchestrator to sub-agent to tool), a forged or replayed hand-off, or a sub-agent acting beyond its delegation, leaves the record pointing at the wrong actor. Without a signed lineage binding every hop, attribution collapses exactly when an investigation needs it, and EU AI Act Article 12 record-keeping has nothing cryptographic to stand on. This is the rest of the chain-of-custody gap that GV-02 storage alone does not close.

matters most for · IrreversibilityExternal reach
builds on ·
Enforcement point · where it runs

The runtime enforcement plane (RA-01): each hop signs its contribution with its own workload identity (IA-01) before the next hop acts; the chain is verified end to end and written to the GV-02 store.

How to implement

Every hand-off in an action chain is signed by the acting principal's own identity and bound to the upstream context, so the full lineage (initiating human, orchestrator, each sub-agent, the tool invoked) is cryptographically verifiable after the fact. The signed chain is written to the tamper-evident store (GV-02); together they give both 'the record was not altered' and 'this is provably who did it'.

  1. Give every agent a distinct workload identity (IA-01) and propagate the user-as-subject, agent-as-actor act-claim across hops (IA-03, RFC 8693).
  2. At each hop, sign the request together with the prior hop's signature so the lineage chains cryptographically: human to agent to sub-agent to tool.
  3. Verify the full chain before a downstream agent or tool acts, and reject a hop whose upstream signature is missing, forged, or replayed.
  4. Write the signed chain into the tamper-evident audit store (GV-02) and bind it to the action's idempotency key (GV-08), so the provenance and the committed effect are one record.
Response lever · when it fires

Reject and quarantine the action — Block any action whose provenance chain fails verification, quarantine it for review, and revoke the offending hop's credential (ties to RT-04).

Avoid
  • ✗ an audit trail that records the final actor but not the delegation chain that led to it
  • ✗ trusting an immediate caller without verifying the upstream lineage
  • ✗ provenance signed with a shared or human identity, so a hop cannot be attributed to one agent
How to validate it

Design check, is it configured?

  • Confirm action chains carry a signed per-hop provenance lineage (initiating human, each agent, the tool) bound to distinct workload identities and written to the tamper-evident store. [src]

Runtime test, does it hold under attack?

  • Replay or forge an upstream hand-off and confirm the downstream agent or tool rejects the action because the provenance chain fails verification. [src]

Evidence, what proves it over time?

  • Verifiable provenance chains for sampled actions, each resolving the full human-to-tool lineage with valid per-hop signatures. [src]
Detection signal · what to alert on

telemetry · provenance_chain_depthunsigned_hop_countsignature_verification_failures

Baseline: The expected chain shape per workflow (hop count and the set of signing identities).

Alert: A hop with a missing, invalid, or replayed signature, or a chain shorter than the workflow's expected lineage.

By team

Engineering
Sign each hop with the agent's workload identity over the request plus the upstream signature; verify the chain before acting.

Detection Eng
Alert when an action arrives with a missing, unverifiable, or replayed upstream signature in its provenance chain.

Red Team
Try to forge or replay a hand-off so an action attributes to the wrong agent, or strip the chain down to a single hop.

GRC
This is the chain-of-custody EU AI Act Art. 12 record-keeping needs to be evidentiary, not just retained; name the verification and retention owner.

SecOps / IR
In an incident, the signed chain tells you which agent and which delegation led to the action, not just that something was logged.

Standards crosswalk
CSA AISMM
MON-04.1 (end-to-end auditability for agent and delegation chains); IAM-05.2 (delegation-chain validation) · indicative partial
evidence
Section CSA AISMM MON-04.1 (end-to-end auditability for agent and delegation chains); IAM-05.2 (delegation-chain validation)
Why Bind a signed, end-to-end provenance chain to every agent action maps to AISMM control(s) MON-04.1 (end-to-end auditability for agent and delegation chains); IAM-05.2 (delegation-chain validation).
NIST
AI RMF: Govern, Manage · verified adjacent
evidence
Section Govern / Manage functions
Why NIST AI RMF Govern / Manage functions: cultivate and operate a culture of AI risk management, with policies, roles, accountability, and oversight; prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Bind a signed, end-to-end provenance chain to every agent action" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
EU AI Act Art. 12 (record-keeping); Art. 19 (provider) / Art. 26(6) (deployer) log retention; ISO/IEC 42001 A.6.2.8 (AI system recording of event logs) · indicative adjacent
OWASP
Accountability / non-repudiation (ASI08 cascading; no clean ASI ID) · indicative direct
evidence
Section OWASP ASI08
Why Bind a signed, end-to-end provenance chain to every agent action addresses OWASP Accountability / non-repudiation (ASI08 cascading; no clean ASI ID).
OWASP AISVS
C9.4.2 (bind each action to the execution chain for non-repudiation); C9.2.8 (cryptographic approval binding to params, identity, nonce) · verified direct
evidence
Section AISVS v1.0, C9 Orchestration & Agentic Action
Why A signed end-to-end provenance chain is the AISVS binding of each action to its execution chain for non-repudiation.
Verified 2026-06-24
IMDA MGF
§2.3.3 (complete audit trails); §2.2.1 (accountability across the value chain) · indicative adjacent
evidence
Section IMDA MGF §2.3.3, §2.2.1
Why Bind a signed, end-to-end provenance chain to every agent action maps to IMDA MGF complete audit trails; accountability across the value chain.
AWS Scoping
Identity context (authN / authZ); Audit & logging · indicative
Standard / protocol

signed per-hop chain of custody (human, agent, sub-agent, tool) · verifiable delegation lineage (RFC 8693 act-claim carried across hops) · non-repudiation via per-hop signatures (JWS / DID-VC)

02Environment & Containment10 controls
EC-01Run the agent in a sandbox, from process isolation up to micro-VMsPut the agent in a sealed room sized to how risky its job is.ASI05An agent that can run code can break out of a weak sandbox and reach the host or other systems.coreSTAR AIproductdata
Threat it stops

ASI05 An agent that can run code can break out of a weak sandbox and reach the host or other systems.

matters most for · Autonomy
Enforcement point · where it runs

Host kernel / hypervisor boundary (container -> gVisor -> micro-VM), hardened with a localized seccomp profile.

How to implement

Match the isolation tier to the threat. Process isolation is the floor; a userspace-kernel sandbox is stronger; a hypervisor-backed micro-VM is the strongest of the three against host compromise. Agents that run untrusted code get a micro-VM, which sharply reduces direct exposure of the host kernel rather than removing it outright (real isolation strength depends on configuration, kernel exposure, and device access). (See implementers/sources for the specific tools at each tier.)

  1. Decide the isolation tier per agent based on what it executes (process → gVisor → micro-VM).
  2. For untrusted-code agents, set the floor at a micro-VM so the host kernel is out of reach.
  3. Capture the isolation tier in the deployment spec so it can be verified later.
Avoid
  • ✗ running an untrusted-code agent in a bare container sharing the host kernel
  • ✗ no record of which isolation tier is actually in force
  • ✗ trusting application-layer limits as if they were isolation
How to validate it

Design check, is it configured?

  • Assert the runtime tier matches the threat model and the host kernel is not directly reachable (gVisor runsc or Firecracker in the pod/VM spec). [src]

Runtime test, does it hold under attack?

  • Run a known sandbox-escape payload inside the sandbox and confirm it reaches at most the userspace kernel or guest VM, never the host. [src]
  • Regression-test coding-agent sandbox escapes: run a documented escape from the agent runtime (Claude Code / Cursor / Codex) and confirm it cannot reach the host. [src]

Evidence, what proves it over time?

  • Sandbox runtime attestation / config snapshot proving the isolation tier in force at the time of each agent run. [src]
By team

Engineering
Pick the tier by workload: a userspace-kernel sandbox for medium risk, a hypervisor-backed micro-VM for code execution; pin it in the deploy spec.

Detection Eng
Alert on syscalls or host access that the isolation tier should make impossible.

Red Team
Run a sandbox-escape payload from the coding-agent runtime (per Plaskett documented escapes) and prove it cannot reach the host.

GRC
The deployment spec showing the isolation tier is your evidence of containment.

SecOps / IR
If an agent is compromised, strong isolation is what keeps the blast inside the sandbox.

Standards crosswalk
CSA AICM
AIS-13 (AI sandboxing); AIS-11 (agent security boundaries) · verified partial
evidence
CSA AISMM
APP-03.3 · verified direct
evidence
Section CSA AISMM APP-03.3
Why Run the agent in a sandbox, from process isolation up to micro-VMs maps to AISMM control(s) APP-03.3.
Verified 2026-06-22
NIST
AI RMF: Manage · verified adjacent
evidence
Section Manage function
Why NIST AI RMF Manage function: prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Run the agent in a sandbox, from process isolation up to micro-VMs" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.4.5 (system and computing resources) · verified adjacent
OWASP
ASI05 Unexpected Code Execution · verified direct
evidence
Section OWASP ASI05
Why Run the agent in a sandbox, from process isolation up to micro-VMs addresses OWASP ASI05 Unexpected Code Execution.
Verified 2026-06-22
OWASP AISVS
C4.1.1 (isolated execution sandbox); C9.3.1 (per-tool least-privilege sandbox); C4.2.2 (TEE hardware isolation) · verified direct
evidence
Section AISVS v1.0, C4 Infrastructure & Deployment Security; C9 Orchestration & Agentic Action
Why Sandboxing from process to micro-VM is the AISVS isolated execution environment and per-tool least-privilege sandbox.
Verified 2026-06-24
MITRE ATLAS
AML.T0105 (Escape to Host); ATLAS mitigations: AML.M0032 (Segmentation of AI Agent Components) · verified direct
evidence
Section MITRE ATLAS techniques AML.T0105; mitigations AML.M0032
Why Run the agent in a sandbox, from process isolation up to micro-VMs addresses ATLAS technique(s) Escape to Host; implements ATLAS mitigation(s) Segmentation of AI Agent Components.
Verified 2026-06-24
IMDA MGF
§2.1.2 (self-contained environments for high-risk tasks); §2.3.1 (sandbox code execution) · verified direct
evidence
Section IMDA MGF §2.1.2, §2.3.1
Why Run the agent in a sandbox, from process isolation up to micro-VMs maps to IMDA MGF self-contained environments for high-risk tasks; sandbox code execution.
Verified 2026-06-24
AWS Scoping
Agency perimeters & policies · indicative
Standard / protocol

micro-VM / gVisor / containers · containment spectrum: process → session → micro-VM

Implemented by · by type
ProductsMicrosoft (MXC) previewAWS product
Open sourcegVisor open-sourceFirecracker open-source
Research & guidanceGoogle (SAIF 2.0) guidance
Source guidance
gVisor (runsc), userspace kernel / syscall interception sandboxFirecracker / Kata Containers, hypervisor-backed micro-VM isolationMicrosoft Execution Containers (MXC), policy-driven agent sandbox: Process → Session (current) → Micro-VM (roadmap) claimGoogle, SAIF 2.0 + Agent Risk Map (donated to CoSAI)CSA MAESTRO, seven-layer agentic threat model (L1-L7)CSA AI Security Maturity Model (AISMM) v3.7 — flagship CSA maturity model (2026-05-07) with a per-control AICM v1.0.3 crosswalkAlex Plaskett — An Introduction to AI Coding Agent Security (public v2.0): permission models, sandbox escapes, agent tools, config files & hooks, and untrusted-workspace attacks across Claude Code, Cursor, and Codex claim
EC-02Filter the agent's outbound network trafficOnly let the agent phone the few places its job needs, block the rest by default.ASI03A hijacked agent's data theft looks like an ordinary HTTPS request at the network layer. Without an outbound allowlist, exfiltration is invisible.coreproductdata
Threat it stops

ASI03 A hijacked agent's data theft looks like an ordinary HTTPS request at the network layer. Without an outbound allowlist, exfiltration is invisible.

matters most for · External reachData sensitivity
Enforcement point · where it runs

Egress proxy / firewall outside the agent's reach, default-deny, logged at the network layer.

How to implement

All of the agent's outbound traffic routes through a control point the agent cannot influence, a cloud egress firewall or forward proxy enforcing a default-deny domain allowlist (matched at TLS SNI), paired with a DNS firewall to block tunnelling. The allowlist is the minimum set of destinations the task needs. Enforcement lives outside the agent's reach.

  1. Default-deny all egress for the agent's network namespace.
  2. Allowlist only task-required domains, matched at TLS SNI.
  3. Add DNS-firewall rules (e.g. Route 53 Resolver) to block tunnelling and exfiltration over DNS.
  4. Log every connection at the network layer, including SOCKS and non-HTTP, not from the agent's self-report.
Response lever · when it fires

block — drop the connection at the proxy; default-deny holds

Avoid
  • ✗ wildcard allowlists (defeated by a SOCKS5 null-byte hostname-parsing bypass, see source)
  • ✗ enforcing egress rules inside the agent runtime where a prompt-injected agent can rewrite them
  • ✗ logging only HTTP and missing SOCKS-mediated traffic
How to validate it

Design check, is it configured?

  • Assert default-deny plus a per-agent allowlist enforced externally; assert DNS-tunnel controls are present; assert no egress rule the agent process can edit. [src]

Runtime test, does it hold under attack?

  • Prompt-inject the agent to send a planted canary to an attacker-controlled domain; the allowlist must drop it. [src]
  • Regression-test the bypass class, not just the happy path: a wildcard allowlist defeated by a SOCKS5 null-byte hostname-parsing bug (see source), confirm your filter blocks that class and that SOCKS/non-HTTP traffic is logged. [src]

Evidence, what proves it over time?

  • Network-layer egress decision log: every outbound connection with destination, allow/deny, and the agent identity that requested it, captured at the network layer, not self-reported. Retained for EU AI Act Article 12. [src]
Detection signal · what to alert on

telemetry · agent_iddest_hostdest_ipportprotobytes_out

Baseline: the task-allowed destination set

Alert: a connection to a non-allowlisted destination, DNS-tunneling patterns, or SOCKS/non-HTTP egress

ATLAS · AML.T0025 (Exfiltration via Cyber Means); AML.T0086 (Exfiltration via AI Agent Tool Invocation); ATLAS mitigations: AML.M0030 (Restrict AI Agent Tool Invocation on Untrusted Data)

By team

Engineering
Route agent egress through a default-deny proxy/firewall matched on SNI, plus a DNS firewall; never let the agent edit the rules.

Detection Eng
Alert on any blocked egress attempt and on non-HTTP/SOCKS traffic leaving an agent namespace.

Red Team
Inject an exfil instruction to a canary domain, then try wildcard and null-byte hostname bypasses against the allowlist.

GRC
The network-layer egress log is the artifact proving data couldn't leave to un-approved destinations.

SecOps / IR
Default-deny egress contains an active exfiltration while you respond.

Standards crosswalk
CSA AICM
I&S-03 (network security); I&S-06 (segmentation and segregation) · verified partial
evidence
CSA AISMM
INF-03.3 · verified direct
evidence
Section CSA AISMM INF-03.3
Why Filter the agent's outbound network traffic maps to AISMM control(s) INF-03.3.
Verified 2026-06-22
NIST
AI RMF: Manage · verified adjacent
evidence
Section Manage function
Why NIST AI RMF Manage function: prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Filter the agent's outbound network traffic" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.6.2.6 (AI system operation and monitoring) · verified adjacent
OWASP
ASI03 Identity & Privilege Abuse (egress/exfiltration); LLM02 Sensitive Information Disclosure · verified direct
evidence
Section OWASP ASI03, LLM02
Why Filter the agent's outbound network traffic addresses OWASP ASI03 Identity & Privilege Abuse (egress/exfiltration); LLM02 Sensitive Information Disclosure.
Verified 2026-06-22
OWASP AISVS
C7.3.3 (block model-triggered outbound requests) · indicative partial
evidence
Section AISVS v1.0, C7 Model Behavior & Output Control
Why Outbound egress filtering partly maps to the AISVS rule that model output must not trigger uncontrolled outbound requests, hence indicative.
Verified 2026-06-24
MITRE ATLAS
AML.T0025 (Exfiltration via Cyber Means); AML.T0086 (Exfiltration via AI Agent Tool Invocation); ATLAS mitigations: AML.M0030 (Restrict AI Agent Tool Invocation on Untrusted Data) · verified direct
evidence
Section MITRE ATLAS techniques AML.T0025, AML.T0086; mitigations AML.M0030
Why Filter the agent's outbound network traffic addresses ATLAS technique(s) Exfiltration via Cyber Means, Exfiltration via AI Agent Tool Invocation; implements ATLAS mitigation(s) Restrict AI Agent Tool Invocation on Untrusted Data.
Verified 2026-06-24
IMDA MGF
§2.1.2 (limit agent network access) · verified direct
evidence
AWS Scoping
Agency perimeters & policies · indicative
Standard / protocol

per-process/per-agent egress allowlist · TLS-SNI + DNS-layer domain control · default-deny outbound

Implemented by · by type
ProductsCrowdStrike productAWS product
Across the network · composes across Apeiris domains
DX-03 depends on Sensitivity-Based Protection Requirement Mapping
DX-03 DX-03 produces the full protection-requirement baseline (minimum encryption standard, access-control tier, retention limits, transfer restrictions, output-handling rules), not just a classification tag. EC-02 consumes that structured requirement set and enforces its egress / in-transit portion.
Source guidance
AWS, controlling which domains AI agents can reach (SNI filtering + Route 53 DNS Firewall)Claude Code network-allowlist bypass (SOCKS5 null-byte hostname), real egress-escape regression caseCSA MAESTRO, seven-layer agentic threat model (L1-L7)Anthropic, Model Context Protocol (agent-to-tool standard)CSA AI Security Maturity Model (AISMM) v3.7 — flagship CSA maturity model (2026-05-07) with a per-control AICM v1.0.3 crosswalk
EC-03Keep memory short-lived, and validate anything written to itDon't let the agent quietly save a poisoned note it will trust and act on later.ASI06Memory poisoning is especially sneaky: a malicious instruction gets stored, recalled in a later session, and executed, because nothing checked it on the way in.STAR AIproductdata
Threat it stops

ASI06 Memory poisoning is especially sneaky: a malicious instruction gets stored, recalled in a later session, and executed, because nothing checked it on the way in.

matters most for · Data sensitivity
Enforcement point · where it runs

Memory write-path validator: an auth + format gate before anything persists to long-term memory.

How to implement

Agent memory is volatile and session-scoped by default. Any write to long-term memory must pass write-authentication, structure/format validation, and access scoping before it can ever be recalled into context. Unvalidated tool output is never written to long-term memory.

  1. Default agent memory to volatile, session-only scope.
  2. For any persistent write, authenticate the writer and validate the content's structure/format.
  3. Scope who and what can read each memory entry back into context.
  4. Never write raw, unvalidated tool output into long-term memory.
  5. Attest memory on write and read: attach signed provenance (who wrote it, what, when) to each stored entry and verify it on recall, so a poisoned or out-of-band write is caught before the agent acts on it.
Avoid
  • ✗ persisting tool output verbatim into long-term memory
  • ✗ recalling stored memory into context with no validation
  • ✗ shared memory readable across unrelated tasks or tenants
How to validate it

Design check, is it configured?

  • Assert agent memory is volatile/session-scoped by default and that every persistent write passes write-authentication, format validation, and access scoping before recall. [src]

Runtime test, does it hold under attack?

  • Inject a malicious instruction designed to be stored, then start a new session and confirm it is not silently recalled and executed. Use the Memory-Poisoning scenarios from Agent Security Bench. [src]

Evidence, what proves it over time?

  • Memory-write audit log: what was written, by which validated source, the validation verdict, and the recall events that pulled it into context. [src]
By team

Engineering
Default memory to session scope; gate persistent writes behind validation; never store raw tool output.

Detection Eng
Alert when stored memory is recalled that never passed validation, or when a write comes from an un-authenticated source.

Red Team
Plant an instruction in memory in one session and see if it executes in the next (Agent Security Bench).

GRC
The memory-write audit log evidences that stored content was validated before reuse.

SecOps / IR
If poisoning is found, the write log tells you what to purge and which sessions were exposed.

Standards crosswalk
CSA AICM
DSP-21 (data poisoning prevention and detection); DSP-17 (sensitive data protection) · verified partial
evidence
CSA AISMM
DAT-05.2 · verified direct
evidence
Section CSA AISMM DAT-05.2
Why Keep memory short-lived, and validate anything written to it maps to AISMM control(s) DAT-05.2.
Verified 2026-06-22
NIST
AI RMF: Manage · verified adjacent
evidence
Section Manage function
Why NIST AI RMF Manage function: prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Keep memory short-lived, and validate anything written to it" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.7.4 (quality of data for AI systems) · verified adjacent
OWASP
ASI06 Memory & Context Poisoning · verified direct
evidence
Section OWASP ASI06
Why Keep memory short-lived, and validate anything written to it addresses OWASP ASI06 Memory & Context Poisoning.
Verified 2026-06-22
OWASP AISVS
C8.2.3 (validate writes to trusted memory); C8.3.1-C8.3.2 (memory expiry and reset); C9.4.4 (integrity-protect persisted agent state) · verified direct
evidence
Section AISVS v1.0, C8 Memory, Embeddings & Vector DB; C9 Orchestration & Agentic Action
Why Short-lived, validated memory maps to AISVS validate-writes-to-memory, expiry and reset, and persisted-state integrity.
Verified 2026-06-24
MITRE ATLAS
AML.T0080 (AI Agent Context Poisoning); ATLAS mitigations: AML.M0031 (Memory Hardening), AML.M0030 (Restrict AI Agent Tool Invocation on Untrusted Data) · verified direct
evidence
Section MITRE ATLAS techniques AML.T0080; mitigations AML.M0031, AML.M0030
Why Keep memory short-lived, and validate anything written to it addresses ATLAS technique(s) AI Agent Context Poisoning; implements ATLAS mitigation(s) Memory Hardening, Restrict AI Agent Tool Invocation on Untrusted Data.
Verified 2026-06-24
IMDA MGF
§2.3.1 (limit shared memory access); §2.1.1 (memory-poisoning threat modelling) · verified direct
evidence
Section IMDA MGF §2.3.1, §2.1.1
Why Keep memory short-lived, and validate anything written to it maps to IMDA MGF limit shared memory access; memory-poisoning threat modelling.
Verified 2026-06-24
AWS Scoping
Data, memory & state protection · indicative
Standard / protocol

memory attestation: signed provenance on stored entries · cross-session state tamper detection · memory-write authentication · structure/format validation · access scoping

EC-04Limit filesystem and tool access to the bare minimumGive the agent only the files and tools its task needs, nothing more.ASI02 · ASI05An over-scoped agent can read bulk files, touch secrets, or run destructive operations far beyond its task.coreSTAR AIproductdata
Threat it stops

ASI02 · ASI05 An over-scoped agent can read bulk files, touch secrets, or run destructive operations far beyond its task.

matters most for · Data sensitivity
Enforcement point · where it runs

OS sandbox + tool broker enforcing mount and exposed-tool allowlists (seccomp), set below the agent.

How to implement

The agent's mounted filesystem, tool set, and resource limits are scoped to the minimum for its task. No broad read of home or secrets directories, and no destructive tools unless the task explicitly needs them.

  1. Mount only the files the task needs; keep secrets and home directories out of reach.
  2. Expose only the tools required, and mark destructive tools as off unless scoped in.
  3. Set resource and capability limits (seccomp, execution rings) per agent.
Avoid
  • ✗ mounting the whole home directory 'to be safe'
  • ✗ giving every agent the full tool catalogue
  • ✗ no seccomp/capability profile
How to validate it

Design check, is it configured?

  • Assert capability scoping, the mounted filesystem, tool set, and resource limits are the minimum for the task, with no broad read of secrets directories. [src]

Runtime test, does it hold under attack?

  • Instruct the agent to bulk-read sensitive files or invoke an out-of-scope destructive tool; the capability sandbox must deny it. Use AgentDojo/InjecAgent tool-misuse cases. [src]

Evidence, what proves it over time?

  • Capability/seccomp/mount manifest as deployed, plus denied-syscall / denied-tool-call telemetry showing the sandbox refusing out-of-scope operations. [unverified]
By team

Engineering
Write a per-agent seccomp + mount profile; expose tools through an allowlist, destructive ones off by default.

Detection Eng
Alert on denied tool calls and attempts to read outside the mounted scope.

Red Team
Try to bulk-read secrets and invoke a destructive tool the task did not grant; abuse agent tools from an untrusted repo to reach beyond scope.

GRC
The deployed capability manifest evidences least-privilege.

SecOps / IR
Tight scope shrinks what a hijacked agent can damage.

Standards crosswalk
CSA AICM
AIS-11 (agent security boundaries); IAM-05 (least privilege) · verified partial
evidence
CSA AISMM
APP-03.2, APP-04.2 · verified direct
evidence
Section CSA AISMM APP-03.2, APP-04.2
Why Limit filesystem and tool access to the bare minimum maps to AISMM control(s) APP-03.2, APP-04.2.
Verified 2026-06-22
NIST
AI RMF: Manage · verified adjacent
evidence
Section Manage function
Why NIST AI RMF Manage function: prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Limit filesystem and tool access to the bare minimum" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.4.4 (tooling resources) · verified adjacent
OWASP
ASI02 Tool Misuse; ASI05 Unexpected Code Execution · verified direct
evidence
Section OWASP ASI02, ASI05
Why Limit filesystem and tool access to the bare minimum addresses OWASP ASI02 Tool Misuse; ASI05 Unexpected Code Execution.
Verified 2026-06-22
OWASP AISVS
C9.5.1 (restrict invokable tools and parameter values); C9.3.1 (least-privilege tool sandbox); C5.2.1 (default-deny allowlist) · verified direct
evidence
Section AISVS v1.0, C9 Orchestration & Agentic Action; C5 Access Control & Identity
Why Least filesystem and tool access is the AISVS restriction of invokable tools and parameter values under default-deny.
Verified 2026-06-24
MITRE ATLAS
AML.T0053 (AI Agent Tool Invocation); AML.T0098 (AI Agent Tool Credential Harvesting); ATLAS mitigations: AML.M0028 (AI Agent Tools Permissions Configuration) · verified direct
evidence
Section MITRE ATLAS techniques AML.T0053, AML.T0098; mitigations AML.M0028
Why Limit filesystem and tool access to the bare minimum addresses ATLAS technique(s) AI Agent Tool Invocation, AI Agent Tool Credential Harvesting; implements ATLAS mitigation(s) AI Agent Tools Permissions Configuration.
Verified 2026-06-24
IMDA MGF
§2.1.2 (least-privilege tool/data access); §2.3.1 (Tools) · verified direct
evidence
Section IMDA MGF §2.1.2, §2.3.1
Why Limit filesystem and tool access to the bare minimum maps to IMDA MGF least-privilege tool/data access; Tools.
Verified 2026-06-24
AWS Scoping
Agency perimeters & policies · indicative
Standard / protocol

capability sandboxing · execution rings · resource limits

Implemented by · by type
ProductsMicrosoft product
Source guidance
Microsoft, Agent Governance Toolkit (open source; maps all 10 OWASP agentic risks to deterministic runtime enforcement; DID + Ed25519)OWASP Top 10 for Agentic Applications 2026CSA AI Security Maturity Model (AISMM) v3.7 — flagship CSA maturity model (2026-05-07) with a per-control AICM v1.0.3 crosswalkAlex Plaskett — An Introduction to AI Coding Agent Security (public v2.0): permission models, sandbox escapes, agent tools, config files & hooks, and untrusted-workspace attacks across Claude Code, Cursor, and Codex claim
EC-05Cap spend and resource use, stop denial-of-walletPut a meter and a hard ceiling on how much the agent can spend or consume.LLM10A runaway agent can burn hundreds of thousands of tokens or API calls in minutes, documented cases hit five figures in a single session. The system keeps running while the bill explodes. This is not a standalone OWASP agentic category, so a faithful crosswalk inherits the gap.elevatedthesisdata
Threat it stops

LLM10 A runaway agent can burn hundreds of thousands of tokens or API calls in minutes, documented cases hit five figures in a single session. The system keeps running while the bill explodes. This is not a standalone OWASP agentic category, so a faithful crosswalk inherits the gap.

matters most for · Irreversibility
Enforcement point · where it runs

Budget / quota service at the gateway, outside the agent loop; halts rather than warns on breach.

How to implement

Every agent and task carries a budget, tokens, cost, compute, and a step/iteration count. Crossing the budget halts the agent by default rather than degrading silently. Cost anomalies alert in near-real-time.

  1. Set per-agent and per-task budgets for tokens, cost, compute, and step count.
  2. Make a budget breach halt the agent by default (fail closed), not just log a warning.
  3. Alert on cost/usage anomalies before the ceiling is reached.
  4. Enforce the budget at the orchestrator/gateway, outside the agent's own loop.
Response lever · when it fires

halt — stop the agent at the budget ceiling instead of warning and continuing

Avoid
  • ✗ no per-task ceiling, only a monthly bill
  • ✗ budget breach that warns but keeps running
  • ✗ the agent self-policing its own spend
How to validate it

Design check, is it configured?

  • Confirm every agent/task has token, cost, compute, and step budgets, enforced outside the agent loop, with halt-on-breach as the default. [src]

Runtime test, does it hold under attack?

  • Drive an agent into a loop and confirm it halts at the step/cost ceiling rather than running unbounded. [src]

Evidence, what proves it over time?

  • Per-task usage record (tokens, cost, steps) with budget and the halt event when breached. [src]
By team

Engineering
Enforce token/cost/step budgets at the gateway; fail closed on breach.

Detection Eng
Alert on cost/usage spikes and on agents approaching their ceiling.

Red Team
Try to drive an agent into an expensive loop and see if anything stops it.

GRC
Budget records show spend was bounded, relevant to operational-risk controls.

SecOps / IR
A hard ceiling caps the financial blast radius of a runaway or hijacked agent.

Standards crosswalk
CSA AISMM
APP-04.2 (partial) · verified direct
evidence
Section CSA AISMM APP-04.2 (partial)
Why Cap spend and resource use, stop denial-of-wallet maps to AISMM control(s) APP-04.2 (partial).
Verified 2026-06-22
NIST
AI RMF: Manage · verified adjacent
evidence
Section Manage function
Why NIST AI RMF Manage function: prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Cap spend and resource use, stop denial-of-wallet" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.4.5 (system and computing resources) · verified adjacent
OWASP
LLM10 Unbounded Consumption (no standalone agentic ASI category) · verified direct
evidence
Section OWASP LLM10
Why Cap spend and resource use, stop denial-of-wallet addresses OWASP LLM10 Unbounded Consumption (no standalone agentic ASI category).
Verified 2026-06-22
OWASP AISVS
C9.1.1 (per-tool resource quotas and timeouts); C9.1.2 (execution budgets incl. monetary spend); C12.2.5 (granular token-usage tracking) · verified direct
evidence
Section AISVS v1.0, C9 Orchestration & Agentic Action; C12 Monitoring, Logging & Anomaly Detection
Why Spend and resource caps are the AISVS per-tool quotas and execution budgets including monetary spend.
Verified 2026-06-24
MITRE ATLAS
AML.T0034.002 (Agentic Resource Consumption); ATLAS mitigations: AML.M0004 (Restrict Number of AI Model Queries) · verified direct
evidence
Section MITRE ATLAS techniques AML.T0034.002; mitigations AML.M0004
Why Cap spend and resource use, stop denial-of-wallet addresses ATLAS technique(s) Agentic Resource Consumption; implements ATLAS mitigation(s) Restrict Number of AI Model Queries.
Verified 2026-06-24
IMDA MGF
§2.3.1 (runtime rate limits on tool use) · indicative adjacent
evidence
AWS Scoping
Agency perimeters & policies · indicative
Standard / protocol

per-agent / per-task token, cost, compute, and step budgets · halt-on-breach · cost-anomaly alerting

Implemented by · by type
Otherframework-level
Across the network · composes across Apeiris domains
Source guidance
OWASP Top 10 for LLM Applications (2025)
EC-06Contain runaway loops and over-reach (least-agency)Stop an agent that keeps looping or grabs more autonomy than the task needs.ASI01 · ASI10An agent can be working 'correctly' yet iterate without end or act with more autonomy than its task warrants. OWASP 2026 adds 'least-agency', the minimum autonomy for the job, alongside least-privilege.STAR AIpracticedata
Threat it stops

ASI01 · ASI10 An agent can be working 'correctly' yet iterate without end or act with more autonomy than its task warrants. OWASP 2026 adds 'least-agency', the minimum autonomy for the job, alongside least-privilege.

matters most for · Autonomy
Enforcement point · where it runs

Orchestration runtime holding deterministic loop caps, circuit breakers, and a forced exit on every loop.

How to implement

The agent is granted the minimum autonomy for its task, with deterministic caps on iteration and recursion depth and circuit breakers that halt or slow it when tool-call frequency crosses a threshold. Loops have forced exit conditions.

  1. Set the least autonomy the task needs (least-agency), not the most the platform allows.
  2. Add deterministic caps on iteration/recursion depth.
  3. Add circuit breakers that halt or throttle on abnormal tool-call frequency.
  4. Give every loop a forced exit condition.
  5. Forbid the agent from rewriting its own instructions, tool list, or permitted parameters at run time without a fresh approval, so it cannot widen its own authority mid-run.
Response lever · when it fires

halt — trip the loop cap / circuit breaker and force the loop to exit

Avoid
  • ✗ unbounded 'keep going until done' loops
  • ✗ granting full autonomy by default
  • ✗ no circuit breaker on tool-call rate
  • ✗ letting an agent edit its own system prompt, add its own tools, or widen its own parameters mid-run
How to validate it

Design check, is it configured?

  • Confirm iteration/recursion caps, tool-call circuit breakers, and a least-agency scoping for each agent. [src]

Runtime test, does it hold under attack?

  • Trigger a looping condition and confirm the cap/circuit-breaker halts it; attempt an action beyond the task's granted autonomy and confirm it is refused. [src]

Evidence, what proves it over time?

  • Circuit-breaker / loop-halt events with the threshold that fired and the agent involved. [src]
By team

Engineering
Add max-iteration and recursion caps plus a tool-call-rate circuit breaker; scope autonomy down to the task.

Detection Eng
Alert on agents hitting iteration caps or abnormal tool-call rates.

Red Team
Try to induce an endless loop or push the agent past its granted autonomy.

GRC
Least-agency scoping is your record that autonomy was deliberately bounded.

SecOps / IR
Circuit breakers stop a runaway before it exhausts resources or spreads.

Standards crosswalk
CSA AISMM
APP-03.2, APP-04.2 · verified direct
evidence
Section CSA AISMM APP-03.2, APP-04.2
Why Contain runaway loops and over-reach (least-agency) maps to AISMM control(s) APP-03.2, APP-04.2.
Verified 2026-06-22
NIST
AI RMF: Manage · verified adjacent
evidence
Section Manage function
Why NIST AI RMF Manage function: prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Contain runaway loops and over-reach (least-agency)" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.9.2 (responsible use of AI systems) · verified adjacent
OWASP
ASI01 Goal Hijack; ASI10 Rogue Agents (Excessive Agency / Least-Agency) · verified direct
evidence
Section OWASP ASI01, ASI10
Why Contain runaway loops and over-reach (least-agency) addresses OWASP ASI01 Goal Hijack; ASI10 Rogue Agents (Excessive Agency / Least-Agency).
Verified 2026-06-22
OWASP AISVS
C9.1.2 (recursion-depth and loop budgets); C9.1.3 (swarm-level kill-switch); C9.2.5 (restrict self-modification) · verified direct
evidence
Section AISVS v1.0, C9 Orchestration & Agentic Action
Why Loop and over-reach containment maps to AISVS recursion budgets, swarm kill-switch, and the self-modification restriction.
Verified 2026-06-24
IMDA MGF
§2.1.2 (bound autonomy via SOPs); §2.3.1 (runtime rate limits) · verified direct
evidence
Section IMDA MGF §2.1.2, §2.3.1
Why Contain runaway loops and over-reach (least-agency) maps to IMDA MGF bound autonomy via SOPs; runtime rate limits.
Verified 2026-06-24
AWS Scoping
Agency perimeters & policies · indicative
Standard / protocol

deterministic iteration/recursion caps · circuit breakers on tool-call frequency · OWASP Least-Agency principle

EC-07Trust-rank retrieved content before it enters the agent's contextCheck and rank documents and web pages before the agent reads them as if they were true.ASI06Poisoning now reaches retrieval and RAG: a malicious document, web page, or knowledge-base entry pulled into context can steer the agent. Detecting the injection isn't the same as establishing the source's trust.STAR AIproductdata
Threat it stops

ASI06 Poisoning now reaches retrieval and RAG: a malicious document, web page, or knowledge-base entry pulled into context can steer the agent. Detecting the injection isn't the same as establishing the source's trust.

matters most for · Data sensitivityExternal reach
Enforcement point · where it runs

Retrieval / RAG ingestion layer: source-risk classification and provenance attached before content hits the prompt.

How to implement

Documents, web content, and knowledge-base entries are validated and trust-ranked before they enter context. Retrieval is identity-aware (the user's permissions apply to what can be retrieved), and low-trust sources are quarantined or labelled.

  1. Establish a trust rank for each retrieval source and carry provenance into context.
  2. Apply the requesting user's permissions to retrieval (no retrieving what the user can't see).
  3. Quarantine or clearly label low-trust or external content before the agent acts on it.
  4. Score retrieved content for trust (source reputation, provenance, recency) and carry that score into context so the agent can weight or refuse low-trust spans; validate tool and observation outputs the same way before they become context.
  5. Apply information-flow control: separate an extraction step from a cross-source audit step from the action-capable synthesis step, give low-trust evidence asymmetric (read-limited) memory privileges, and forbid a tainted span from driving a tool call without passing the audit boundary.
Avoid
  • ✗ treating any retrieved document as trusted ground truth
  • ✗ retrieval that ignores the user's data permissions
  • ✗ no provenance on content pulled into context
How to validate it

Design check, is it configured?

  • Confirm retrieved content carries a trust rank and provenance, and that retrieval respects the requesting user's data permissions. [src]

Runtime test, does it hold under attack?

  • Plant a poisoned document in a retrievable source and confirm it is quarantined/down-ranked rather than acted on. Pair with indirect-prompt-injection cases. [src]

Evidence, what proves it over time?

  • Retrieval log with source, trust rank, and provenance for each item pulled into context. [src]
Detection signal · what to alert on

telemetry · source_urisource_risk_classprovenancetrust_labeltaint_tagdrives_tool_actionrequesting_user

Baseline: The trusted-source set, each user's permissions, and which context spans are tainted (low-trust) versus clean.

Alert: A low-trust or unclassified source entering context, retrieval exceeding the requesting user's permissions, or a tainted (low-trust) span directly driving a tool action without passing the audit / synthesis boundary.

ATLAS · AML.T0070 (RAG Poisoning); AML.T0066 (Retrieval Content Crafting); AML.T0080 (AI Agent Context Poisoning); AML.T0100 (AI Agent Clickbait); ATLAS mitigations: AML.M0030 (Restrict AI Agent Tool Invocation on Untrusted Data), AML.M0031 (Memory Hardening)

By team

Engineering
Make retrieval identity-aware and attach a trust rank + provenance to every chunk before it hits the prompt.

Detection Eng
Alert when low-trust or external content is retrieved into a high-stakes task.

Red Team
Seed a poisoned doc into the knowledge base and see if the agent ingests it as fact.

GRC
Retrieval logs evidence that content sources were vetted and access-scoped.

SecOps / IR
When poisoning is found, retrieval provenance shows which sessions consumed it.

Standards crosswalk
CSA AICM
DSP-20 (data provenance and transparency); DSP-23 (data integrity check) · verified partial
evidence
CSA AISMM
DAT-02.1, DAT-04.1, DAT-04.2 · verified direct
evidence
Section CSA AISMM DAT-02.1, DAT-04.1, DAT-04.2
Why Trust-rank retrieved content before it enters the agent's context maps to AISMM control(s) DAT-02.1, DAT-04.1, DAT-04.2.
Verified 2026-06-22
NIST
AI RMF: Map, Manage · verified adjacent
evidence
Section Map / Manage functions
Why NIST AI RMF Map / Manage functions: establish context and identify and categorise the AI risks; prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Trust-rank retrieved content before it enters the agent's context" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.7.5 (data provenance) · verified adjacent
OWASP
ASI06 Memory & Context Poisoning (retrieval/RAG vector); LLM08:2025 Vector and Embedding Weaknesses · verified direct
evidence
Section OWASP ASI06, LLM08
Why Trust-rank retrieved content before it enters the agent's context addresses OWASP ASI06 Memory & Context Poisoning (retrieval/RAG vector); LLM08:2025 Vector and Embedding Weaknesses.
Verified 2026-06-22
OWASP AISVS
C8.2.4 (reject retrieval-manipulation content); C5.2.2 (per-stage retrieval authorization); C9.3.5 (isolate untrusted data from tool-calling) · verified direct
evidence
Section AISVS v1.0, C8 Memory, Embeddings & Vector DB; C5 Access Control & Identity; C9 Orchestration & Agentic Action
Why Trust-ranking retrieved content is the AISVS rejection of retrieval-manipulation content and isolation of untrusted data from tool calls.
Verified 2026-06-24
MITRE ATLAS
AML.T0070 (RAG Poisoning); AML.T0066 (Retrieval Content Crafting); AML.T0080 (AI Agent Context Poisoning); AML.T0100 (AI Agent Clickbait); ATLAS mitigations: AML.M0030 (Restrict AI Agent Tool Invocation on Untrusted Data), AML.M0031 (Memory Hardening) · verified direct
evidence
Section MITRE ATLAS techniques AML.T0070, AML.T0066, AML.T0080, AML.T0100; mitigations AML.M0030, AML.M0031
Why Trust-rank retrieved content before it enters the agent's context addresses ATLAS technique(s) RAG Poisoning, Retrieval Content Crafting, AI Agent Context Poisoning, AI Agent Clickbait; implements ATLAS mitigation(s) Restrict AI Agent Tool Invocation on Untrusted Data, Memory Hardening.
Verified 2026-06-24
IMDA MGF
§2.1.1 (taint tracing of untrusted data); §2.3.1 (input validation) · verified direct
evidence
Section IMDA MGF §2.1.1, §2.3.1
Why Trust-rank retrieved content before it enters the agent's context maps to IMDA MGF taint tracing of untrusted data; input validation.
Verified 2026-06-24
AWS Scoping
Data, memory & state protection · indicative
Standard / protocol

information-flow / taint control (low-trust evidence cannot directly drive tool actions) · context trust-scoring carried with each retrieved span · observation validation before context entry · retrieval-source validation · trust-ranking of knowledge sources · provenance on retrieved content

EC-08Keep secrets out of the prompt and contextNever paste passwords or keys into the agent's text, anything in context can be pulled back out.LLM07Anything placed in the prompt or context is extractable. System-prompt leakage and credentials-in-context are real: studies have found thousands of valid secrets sitting in agent/MCP config files.corepracticeboth
Threat it stops

LLM07 Anything placed in the prompt or context is extractable. System-prompt leakage and credentials-in-context are real: studies have found thousands of valid secrets sitting in agent/MCP config files.

matters most for · Data sensitivity
builds on ·
Enforcement point · where it runs

Secrets broker / vault resolving credentials at point-of-use, with the reasoning engine kept separate from execution.

How to implement

Credentials are never placed in prompts, system prompts, or context. Secrets are retrieved at the moment of use, outside the model loop, by a component the model never sees. The reasoning engine and the execution engine are kept separate so prompt extraction can't surface a secret.

  1. Remove all credentials from prompts, system prompts, config, and context.
  2. Retrieve secrets at point-of-use through a broker outside the model loop (ties to IA-02).
  3. Separate the reasoning engine from the execution engine so a prompt-extraction attack reveals no secret.
  4. Treat the system prompt as potentially extractable, keep nothing sensitive in it.
  5. Where feasible, hold sensitive data outside the agent's context entirely, for example in a trusted execution environment, and pass the agent only opaque reference IDs, so there is no secret in context to extract (IMDA MGF, Terminal 3).
Avoid
  • ✗ API keys pasted into the system prompt or a tool description
  • ✗ secrets in MCP/agent config files committed to a repo
  • ✗ assuming the system prompt is hidden from the user
How to validate it

Design check, is it configured?

  • Scan prompts, system prompts, and config (including MCP config files) for embedded credentials; assert zero. [src]

Runtime test, does it hold under attack?

  • Attempt system-prompt extraction and prompt-leak attacks; confirm no credential or sensitive business logic is recoverable. Use garak prompt-leak probes. [src]

Evidence, what proves it over time?

  • Secret-scanner reports over prompts/config plus an architecture note showing secrets are injected at run time, not embedded. [src]
By team

Engineering
Pull secrets from a broker at call time; keep them out of prompts and config entirely.

Detection Eng
Alert when a credential pattern appears in a prompt, tool description, or context window.

Red Team
Try to extract the system prompt and any secrets in context (garak prompt-leak probes).

GRC
Secret-scan reports over prompts/config evidence that credentials aren't exposed in context.

SecOps / IR
Secrets fetched at point-of-use limit what an extracted context can reveal.

Standards crosswalk
CSA AICM
DSP-17 (sensitive data protection); DSP-10 (sensitive data transfer) · verified partial
evidence
CSA AISMM
DAT-03.3, APP-02.2 · verified direct
evidence
Section CSA AISMM DAT-03.3, APP-02.2
Why Keep secrets out of the prompt and context maps to AISMM control(s) DAT-03.3, APP-02.2.
Verified 2026-06-22
NIST
AI RMF: Manage · verified adjacent
evidence
Section Manage function
Why NIST AI RMF Manage function: prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Keep secrets out of the prompt and context" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.6.2.6 (AI system operation and monitoring) · verified adjacent
OWASP
LLM07 System Prompt Leakage / secrets-in-context · verified direct
evidence
Section OWASP LLM07
Why Keep secrets out of the prompt and context addresses OWASP LLM07 System Prompt Leakage / secrets-in-context.
Verified 2026-06-22
OWASP AISVS
C9.5.4 (no secrets in model context); C7.3.2 (block prompt and secret disclosure in output); C8.2.1 (mask sensitive data before embedding) · verified direct
evidence
Section AISVS v1.0, C9 Orchestration & Agentic Action; C7 Model Behavior & Output Control; C8 Memory, Embeddings & Vector DB
Why Keeping secrets out of context is the AISVS no-secrets-in-model-context plus output filtering of prompt and secret disclosure.
Verified 2026-06-24
MITRE ATLAS
AML.T0056 (Extract LLM System Prompt); AML.T0098 (AI Agent Tool Credential Harvesting); ATLAS mitigations: AML.M0012 (Encrypt Sensitive Information), AML.M0005 (Control Access to AI Models and Data at Rest) · verified direct
evidence
Section MITRE ATLAS techniques AML.T0056, AML.T0098; mitigations AML.M0012, AML.M0005
Why Keep secrets out of the prompt and context addresses ATLAS technique(s) Extract LLM System Prompt, AI Agent Tool Credential Harvesting; implements ATLAS mitigation(s) Encrypt Sensitive Information, Control Access to AI Models and Data at Rest.
Verified 2026-06-24
IMDA MGF
§2.3.1 (separate sensitive data from agent context; user takeover for credentials) · verified direct
evidence
Section IMDA MGF §2.3.1
Why Keep secrets out of the prompt and context maps to IMDA MGF separate sensitive data from agent context; user takeover for credentials.
Verified 2026-06-24
AWS Scoping
Data, memory & state protection · indicative
Standard / protocol

structural separation of sensitive data from agent context (TEE, opaque reference IDs) · secrets-out-of-context · runtime secret retrieval outside the model loop · resistance to system-prompt extraction

EC-09Treat the workspace and its config and hooks as untrustedDo not let a repo you just opened run its own hidden setup; check its config and hooks before the agent trusts them.ASI04 · ASI02 · ASI05Opening an untrusted repo or workspace can ship attacker-controlled configuration (mcp.json, .cursor config, agent config) or git hooks (.git/hooks, .git/config, .git/info/attributes) that the agent auto-loads or executes, or push the agent into a dangerous auto-approve permission mode that skips the human gate. This is especially acute for coding agents, one of the most widely deployed agent classes.STAR AIpracticeboth
Threat it stops

ASI04 · ASI02 · ASI05 Opening an untrusted repo or workspace can ship attacker-controlled configuration (mcp.json, .cursor config, agent config) or git hooks (.git/hooks, .git/config, .git/info/attributes) that the agent auto-loads or executes, or push the agent into a dangerous auto-approve permission mode that skips the human gate. This is especially acute for coding agents, one of the most widely deployed agent classes.

matters most for · External reach
builds on ·
Enforcement point · where it runs

Workspace / config loader in the agent runtime: no auto-load of repo-supplied config or hooks.

How to implement

The agent treats its workspace as untrusted by default. Repo-supplied configuration (mcp.json, .cursor config, agent config), git hooks, and git attributes are not auto-loaded or executed; changes require explicit human approval. Dangerous and auto-approve permission modes are disabled or gated outside throwaway sandboxes.

  1. Require explicit trust before an agent acts on a new or untrusted workspace.
  2. Do not auto-load or execute repo-supplied config (mcp.json, mcp-approvals.json, .cursor config, cli-config.json) or git hooks (.git/hooks, .git/config, .git/info/attributes); require review and approval.
  3. Disable or gate dangerous / auto-approve permission modes (skip-permissions, YOLO) outside sandboxed throwaway contexts.
  4. Keep agent config under version control and integrity-checked (ties to PT-03).
Response lever · when it fires

block — refuse to load repo-supplied config or hooks; do not escalate permissions

Avoid
  • ✗ opening an untrusted repo with the agent in auto-approve mode
  • ✗ auto-running git hooks or loading mcp.json from the working directory
  • ✗ treating workspace files as trusted instructions
How to validate it

Design check, is it configured?

  • Confirm workspace-trust gating exists and that repo-supplied config and hooks are not auto-loaded or executed without approval; confirm dangerous permission modes are disabled or gated in production. [src]

Runtime test, does it hold under attack?

  • Open a booby-trapped repo containing a malicious mcp.json, .git/hooks, or .cursor config and confirm the agent does not execute it or escalate permissions. [src]
  • Attempt a sandbox escape from the coding-agent runtime and confirm it cannot reach the host (regression-test against documented escapes). [src]

Evidence, what proves it over time?

  • Log of workspace-trust decisions and config / hook approvals, plus the permission-mode policy in force. [src]
By team

Engineering
Gate workspace trust; never auto-load repo mcp.json/.cursor/.git hooks; disable skip-permissions in production.

Detection Eng
Alert when an agent loads config or runs a hook sourced from the working directory, or runs in an auto-approve mode.

Red Team
Open a malicious repo with a planted mcp.json/.git/hooks and a dangerous-mode flag; try to get code execution or skip the approval gate (Plaskett vectors).

GRC
Workspace-trust and config-approval logs evidence that repo-borne config cannot silently execute.

SecOps / IR
Untrusted-workspace handling contains a poisoned-repo attack to the sandbox.

Standards crosswalk
CSA AICM
AIS-11 (agent security boundaries); CCC-01 (change-management policy) · verified partial
evidence
CSA AISMM
APP-03.2, APP-03.3, DEV-03.1 · verified direct
evidence
Section CSA AISMM APP-03.2, APP-03.3, DEV-03.1
Why Treat the workspace and its config and hooks as untrusted maps to AISMM control(s) APP-03.2, APP-03.3, DEV-03.1.
Verified 2026-06-22
NIST
AI RMF: Manage · verified adjacent
evidence
Section Manage function
Why NIST AI RMF Manage function: prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Treat the workspace and its config and hooks as untrusted" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.4.4 (tooling resources) · verified adjacent
OWASP
ASI04 Supply Chain; ASI02 Tool Misuse; ASI05 Unexpected Code Execution · verified direct
evidence
Section OWASP ASI04, ASI02, ASI05
Why Treat the workspace and its config and hooks as untrusted addresses OWASP ASI04 Supply Chain; ASI02 Tool Misuse; ASI05 Unexpected Code Execution.
Verified 2026-06-22
OWASP AISVS
C9.2.5 (restrict config and self-modification); C9.3.7 (allowlist external resources before install or invoke); C10.1.3 (sandbox locally-launched servers) · verified direct
evidence
Section AISVS v1.0, C9 Orchestration & Agentic Action; C10 MCP Security
Why Treating workspace config as untrusted maps to AISVS self-modification limits and allowlisting external resources before use.
Verified 2026-06-24
MITRE ATLAS
AML.T0081 (Modify AI Agent Configuration); ATLAS mitigations: AML.M0014 (Verify AI Artifacts) · verified direct
evidence
Section MITRE ATLAS techniques AML.T0081; mitigations AML.M0014
Why Treat the workspace and its config and hooks as untrusted addresses ATLAS technique(s) Modify AI Agent Configuration; implements ATLAS mitigation(s) Verify AI Artifacts.
Verified 2026-06-24
IMDA MGF
§2.3.1 (tighten permissive-by-default configuration); §2.1.1 (third-party skill supply-chain risk) · indicative adjacent
evidence
Section IMDA MGF §2.3.1, §2.1.1
Why Treat the workspace and its config and hooks as untrusted maps to IMDA MGF tighten permissive-by-default configuration; third-party skill supply-chain risk.
AWS Scoping
Orchestration · indicative
Standard / protocol

workspace-trust gating · config and hook allowlisting with approval · no auto-load of workspace-supplied hooks · constrain dangerous / auto-approve permission modes

EC-10Verify trigger provenance and admit autonomous runsBefore an agent starts itself off an event, prove the event is real and allowed.threatHighly autonomous agents self-initiate on environmental triggers: webhooks, schedules, queue messages, inbound emails. A forged, replayed, or spoofed trigger launches an unauthorized autonomous run with no human in the loop. The matrix gates what an agent does once running, but not what is allowed to start it. This is the admission boundary for full-agency (AWS Scope 4) deployments.practicectrl
Threat it stops

Highly autonomous agents self-initiate on environmental triggers: webhooks, schedules, queue messages, inbound emails. A forged, replayed, or spoofed trigger launches an unauthorized autonomous run with no human in the loop. The matrix gates what an agent does once running, but not what is allowed to start it. This is the admission boundary for full-agency (AWS Scope 4) deployments.

matters most for · AutonomyExternal reach
builds on ·
Enforcement point · where it runs

An admission controller in front of the trigger path: it verifies signed event sources, dedupes and replay-protects, checks trigger allowlists and schedule ownership, and admits or rejects a run before any agent logic executes.

How to implement

Every autonomous run is admitted by a controller that sits in front of the trigger. The controller authenticates the event source (signature or mutual auth), rejects replays and duplicates, checks the trigger and schedule against an allowlist with a named owner, and only then admits the run. An unverifiable or out-of-policy trigger never starts an agent.

  1. Authenticate every trigger source (signed webhooks, authenticated queues, verified senders) before admitting a run.
  2. Replay-protect and dedupe triggers with a nonce or idempotency key so a captured event cannot relaunch a run.
  3. Maintain a trigger allowlist and schedule ownership; reject triggers and schedules with no named owner.
  4. Bind the admitted run to a run_id (ties to RT-01) and deny by default when the admission check cannot complete.
Response lever · when it fires

Reject the run — Deny admission for any trigger that fails authentication, replay, or allowlist checks, and alert the trigger owner; deny by default when the check cannot complete.

Avoid
  • ✗ an agent that runs on any inbound webhook without verifying the sender
  • ✗ schedules and triggers with no named owner
  • ✗ no replay protection, so a captured trigger relaunches the agent
How to validate it

Design check, is it configured?

  • Confirm every autonomous trigger path authenticates its source, replay-protects, and checks an allowlist with a named owner before a run is admitted. [src]

Runtime test, does it hold under attack?

  • Replay a previously valid trigger and send a spoofed one, and confirm both are rejected before any agent logic runs. [src]

Evidence, what proves it over time?

  • Admission logs showing each run tied to a verified, non-replayed trigger and a named trigger/schedule owner. [src]
Detection signal · what to alert on

telemetry · trigger_sourcesource_signature_validreplay_seenschedule_owneradmittedrun_id

Baseline: The allowlisted trigger sources and schedules, each with a named owner.

Alert: A run admitted from an unsigned or unlisted trigger, a replayed trigger, or a schedule with no owner.

By team

Engineering
Put an admission controller in front of triggers: verify signature, dedupe/replay-protect, check allowlist and owner, then admit.

Detection Eng
Alert on a run admitted from an unsigned, replayed, or unlisted trigger, or a schedule with no owner.

Red Team
Forge and replay triggers (webhooks, emails, queue messages) and see whether you can start an unauthorized autonomous run.

GRC
Closes the admission gap for full-agency agents; the evidence is admission logs tying runs to verified triggers and owners.

SecOps / IR
When an unexpected run fires, the admission record shows which trigger started it and whether it was authentic.

Standards crosswalk
NIST
AI RMF: Manage · verified adjacent
evidence
Section Manage function
Why NIST AI RMF Manage function: prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Verify trigger provenance and admit autonomous runs" is a corresponding risk-treatment activity.
Verified 2026-06-27
OWASP
Excessive Agency (unbounded self-initiation; no clean ASI ID) · indicative direct
evidence
Section OWASP
Why Verify trigger provenance and admit autonomous runs addresses OWASP Excessive Agency (unbounded self-initiation; no clean ASI ID).
OWASP AISVS
C12.4.1 (security evaluation in action triggers); C9.2.1 (gate high-impact triggers) · indicative partial
evidence
Section AISVS v1.0, C12 Monitoring, Logging & Anomaly Detection; C9 Orchestration & Agentic Action
Why Trigger provenance and run admission partly maps to AISVS security evaluation in action triggers and gating high-impact triggers, hence indicative.
Verified 2026-06-24
IMDA MGF
§2.1.1 (determine suitable use cases; bound how agents are triggered) · indicative adjacent
evidence
Section IMDA MGF §2.1.1
Why Verify trigger provenance and admit autonomous runs maps to IMDA MGF determine suitable use cases; bound how agents are triggered.
AWS Scoping
Orchestration · indicative
Standard / protocol

signed / authenticated event sources · replay protection and idempotent run admission · trigger allowlists and schedule ownership

03Inter-Agent & Tool Protocols8 controls
PT-01Authenticate and sign agent-to-agent communicationMake sure an agent only takes instructions from another agent it can prove is genuine.ASI07A tool or agent invoked by an unauthorised or impersonated intermediary can hijack the workflow. Agent-to-agent links are the horizontal seam.STAR AIstandardctrl
Threat it stops

ASI07 A tool or agent invoked by an unauthorised or impersonated intermediary can hijack the workflow. Agent-to-agent links are the horizontal seam.

matters most for · External reach
builds on ·
Enforcement point · where it runs

Receiving agent's A2A endpoint verifier: JWS signature over the JCS-canonicalized Agent Card, served over HTTPS at its well-known address.

How to implement

Agents identify each other before they trust each other. Under A2A v1.0.0, an Agent Card can be signed (optional JWS, content canonicalised with JCS) so a caller can verify the card's integrity and authenticity. Domain trust comes from serving the card over HTTPS at its well-known URI plus trusting the signing key, the signature alone does not prove control of a domain. A2A only permits signed Agent Cards (a MAY) while requiring encrypted transport (MUST) for production; requiring signed cards is this matrix's policy for production trust boundaries where agent discovery drives authorization, routing, or tool access, not a universal A2A mandate.

  1. Verify the Agent Card's JWS signature against a trusted signing key before trusting the agent.
  2. Anchor domain trust in HTTPS/TLS at the card's well-known URI, not in the signature alone.
  3. Reject or quarantine cards that are unsigned, fail verification, or come from an untrusted key.
  4. Carry provenance across the delegation chain: each agent that forwards or acts on a request preserves the upstream identity and signature (the act-claim lineage from IA-03), so a downstream agent or tool can verify the whole chain, not only its immediate caller.
Avoid
  • ✗ treating an unsigned Agent Card as trusted
  • ✗ assuming a signed card proves domain ownership
  • ✗ no verification step before agent-to-agent calls
How to validate it

Design check, is it configured?

  • Confirm Agent Cards are verified (valid JWS chaining to a trusted key) and that domain trust is anchored in HTTPS at the well-known URI, not the signature alone. [src]

Runtime test, does it hold under attack?

  • Present a tampered or re-hosted Agent Card and a stale signature; both must be rejected. [src]

Evidence, what proves it over time?

  • Verification log for inbound agent connections: card source, signature result, and the trusted key used. [src]
By team

Engineering
Verify the A2A Agent Card's JWS against a pinned key and require HTTPS at the well-known URI before calling another agent.

Detection Eng
Alert on agent-to-agent calls with unsigned, failed, or re-hosted cards.

Red Team
Tamper with or re-host an Agent Card and replay a stale signature against the verifier.

GRC
Inter-agent verification logs evidence that only authenticated agents were trusted.

SecOps / IR
Card verification is the fast way to tell a genuine partner agent from an impostor.

Standards crosswalk
CSA AISMM
IAM-05.2, APP-03.2 · verified direct
evidence
Section CSA AISMM IAM-05.2, APP-03.2
Why Authenticate and sign agent-to-agent communication maps to AISMM control(s) IAM-05.2, APP-03.2.
Verified 2026-06-22
NIST
AI RMF: Manage · verified adjacent
evidence
Section Manage function
Why NIST AI RMF Manage function: prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Authenticate and sign agent-to-agent communication" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.6.2.6 (AI system operation and monitoring) · verified adjacent
OWASP
ASI07 Insecure Inter-Agent Communication · verified direct
evidence
Section OWASP ASI07
Why Authenticate and sign agent-to-agent communication addresses OWASP ASI07 Insecure Inter-Agent Communication.
Verified 2026-06-22
OWASP AISVS
C9.4.1 (authenticated agent principals); C9.5.5 (policy-gated inter-agent delegation) · verified direct
evidence
Section AISVS v1.0, C9 Orchestration & Agentic Action
Why Authenticated, signed agent-to-agent comms is the AISVS authenticated agent principal and policy-gated inter-agent delegation.
Verified 2026-06-24
IMDA MGF
§2.3.1 (Multi-agent: communicate via structured schemas, not free text) · verified direct
evidence
Section IMDA MGF §2.3.1
Why Authenticate and sign agent-to-agent communication maps to IMDA MGF Multi-agent: communicate via structured schemas, not free text.
Verified 2026-06-24
AWS Scoping
Identity context (authN / authZ) · indicative
Standard / protocol

delegation-chain provenance (act-claim lineage carried across hops) · A2A v1.0.0 signed Agent Cards (optional JWS/JCS integrity & authenticity) · domain trust via HTTPS + trusted signing key

Implemented by · by type
Standards & protocolsLinux Foundation A2A standard
ProductsBeyond Identity (Ceros) product
Source guidance
Agent2Agent (A2A) Protocol v1.0.0 (Linux Foundation), signed Agent Cards (optional JWS/JCS)W3C DID Core v1.0 + Verifiable Credentials Data Model v2.0 (portable non-human identity)Beyond Identity, Ceros (agentic AI trust layer for MCP; device-bound passkeys) claim
⚑ Bounded by the cross-org identity federation gap
PT-02Authorize tool calls and govern the MCP server registryApprove which tools an agent may call, and keep the list of connected tools under control.ASI02Ungoverned tool connections (MCP servers) wired to broad cloud or SaaS permissions let an agent reach far more than intended. The GTG-1002 campaign weaponised exactly this, open-source pentest tools wired into a coding agent as MCP servers.productctrl
Threat it stops

ASI02 Ungoverned tool connections (MCP servers) wired to broad cloud or SaaS permissions let an agent reach far more than intended. The GTG-1002 campaign weaponised exactly this, open-source pentest tools wired into a coding agent as MCP servers.

matters most for · External reach
Enforcement point · where it runs

Centralized MCP registry + tool-proxy gateway (each server an OAuth 2.1 resource server); no peer-to-peer hooks.

How to implement

Each remote, HTTP-transport MCP server is treated as an OAuth 2.1 resource server: it validates tokens but does not issue them, advertises its metadata for discovery (RFC 9728), and tokens are bound to the specific server (RFC 8707) to prevent confused-deputy passthrough. The OAuth profile is HTTP-transport-specific; a local STDIO MCP server is authorized out of band instead, by parent-process identity, executable/path allowlists, and environment-secret isolation. New tools enter a governed registry and run in dry-run/shadow mode before they are trusted.

  1. Run remote (HTTP) MCP servers as OAuth 2.1 resource servers that validate, not mint, tokens.
  2. Branch by transport: apply the OAuth resource-server model only to remote HTTP MCP servers; a local STDIO server is authorized out of band, by parent-process identity, executable/path allowlists, and environment-secret isolation, not OAuth.
  3. Bind tokens to the specific MCP server with Resource Indicators (RFC 8707) to stop token passthrough.
  4. Govern a central registry of connected tools; new tools start in dry-run/shadow mode.
  5. Scope each tool's downstream cloud/SaaS permissions to least privilege.
  6. For OAuth-protected MCP servers, treat each as a resource server: publish protected-resource metadata, bind tokens to the server's audience with RFC 8707 resource indicators, reject token passthrough, and verify a token was issued for this server to prevent confused-deputy abuse.
  7. On the OAuth flow itself, require PKCE (S256), keep bearer tokens in the Authorization header and never in a query string, validate redirect URIs by exact match, and obtain per-client consent, the MCP authorization hardening (spec rev 2025-11-25) against token theft and the confused-deputy problem.
Response lever · when it fires

deregister / refuse — reject an unregistered MCP server and revoke its resource-bound token

Avoid
  • ✗ agents connecting to arbitrary MCP servers with no registry
  • ✗ tools wired to broad cloud/SaaS scopes
  • ✗ tokens that any downstream server can replay (confused deputy)
How to validate it

Design check, is it configured?

  • Confirm MCP servers validate tokens (resource-server model), advertise RFC 9728 metadata, and bind tokens via RFC 8707; confirm a governed tool registry exists. [src]

Runtime test, does it hold under attack?

  • Attempt to connect an un-registered MCP server and to replay a token meant for server A against server B; both must fail. [src]

Evidence, what proves it over time?

  • Tool registry with each MCP server's status (shadow/approved), scopes, and the discovery/connection log. [src]
By team

Engineering
Make MCP servers resource servers; bind tokens with RFC 8707; put new tools through a shadow-mode registry.

Detection Eng
Alert on connections to un-registered MCP servers and on tools used outside their approved scope.

Red Team
Wire a rogue MCP server in (GTG-1002 style) and try token passthrough between servers; plant a malicious mcp.json / mcp-approvals.json in an opened repo and see if it auto-loads (Plaskett).

GRC
The tool registry is your inventory and approval record for everything the agent can call.

SecOps / IR
A governed registry lets you cut off a malicious tool across all agents at once.

Standards crosswalk
CSA AICM
IAM-15 (authorization mechanisms); IAM-18 (agent access restriction) · verified partial
evidence
CSA AISMM
IAM-03.3, IAM-04.3, APP-03.2 · verified direct
evidence
Section CSA AISMM IAM-03.3, IAM-04.3, APP-03.2
Why Authorize tool calls and govern the MCP server registry maps to AISMM control(s) IAM-03.3, IAM-04.3, APP-03.2.
Verified 2026-06-22
NIST
AI RMF: Manage · verified adjacent
evidence
Section Manage function
Why NIST AI RMF Manage function: prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Authorize tool calls and govern the MCP server registry" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.4.4 (tooling resources) · verified adjacent
OWASP
ASI02 Tool Misuse & Exploitation · verified direct
evidence
Section OWASP ASI02
Why Authorize tool calls and govern the MCP server registry addresses OWASP ASI02 Tool Misuse & Exploitation.
Verified 2026-06-22
OWASP AISVS
C10.2.5 (authorize every tool call incl. argument values); C10.2.4 (scope-limited tools/list); C10.1.2 (allowlisted MCP servers) · verified direct
evidence
Section AISVS v1.0, C10 MCP Security
Why Tool-call authorization and MCP registry governance is the AISVS per-call authorization and allowlisted MCP servers.
Verified 2026-06-24
MITRE ATLAS
AML.T0053 (AI Agent Tool Invocation); ATLAS mitigations: AML.M0028 (AI Agent Tools Permissions Configuration) · verified direct
evidence
Section MITRE ATLAS techniques AML.T0053; mitigations AML.M0028
Why Authorize tool calls and govern the MCP server registry addresses ATLAS technique(s) AI Agent Tool Invocation; implements ATLAS mitigation(s) AI Agent Tools Permissions Configuration.
Verified 2026-06-24
IMDA MGF
§2.3.1 (MCP: whitelist trusted servers; MCP as a governance layer) · verified direct
evidence
Section IMDA MGF §2.3.1
Why Authorize tool calls and govern the MCP server registry maps to IMDA MGF MCP: whitelist trusted servers; MCP as a governance layer.
Verified 2026-06-24
AWS Scoping
Identity context (authN / authZ) · indicative
Standard / protocol

MCP OAuth resource-server checks (audience binding, RFC 8707 resource indicators, no token passthrough) · MCP authorization (OAuth 2.1 resource-server model + RFC 9728 + RFC 8707) · tool registry with dry-run / shadow mode

PT-03Verify skill/tool manifest integrity and sign the supply chainCheck that every plug-in is genuine and unaltered before the agent uses it.ASI04 · NHI3Weaponised community skills, silent update drift, and unsafe manifest parsing let attackers slip code into the agent through its plug-ins.STAR AIproductctrl
Threat it stops

ASI04 · NHI3 Weaponised community skills, silent update drift, and unsafe manifest parsing let attackers slip code into the agent through its plug-ins.

matters most for · External reach
Enforcement point · where it runs

Manifest-signature verifier at load time and in CI, backed by an SBOM, re-verified on every update.

How to implement

Every skill and tool manifest is cryptographically signed (e.g. Ed25519) and verified before use, with an SBOM tracking what's inside. Updates re-verify; unsigned or drifted manifests are refused.

  1. Require a valid signature (Ed25519) on every skill/tool manifest before load.
  2. Maintain an SBOM for agent skills and dependencies.
  3. Re-verify on update so a silently changed manifest is caught.
  4. Refuse unsigned, unverified, or drifted manifests.
  5. Track the supply chain against CISA’s SBOM-for-AI minimum element clusters (models, datasets, infrastructure, security properties, KPIs, system-level properties, metadata).
Response lever · when it fires

invalidate manifest — refuse to load an unsigned or silently-changed manifest

Avoid
  • ✗ installing community skills without signature checks
  • ✗ no re-verification when a tool updates
  • ✗ unsafe deserialization of manifest content
How to validate it

Design check, is it configured?

  • Confirm every skill/tool manifest carries a verified signature and an SBOM, and that updates re-verify. [src]

Runtime test, does it hold under attack?

  • Present a tampered or unsigned manifest and a drifted update; all must be refused. Pair with CI static analysis (AS-02). [src]

Evidence, what proves it over time?

  • Signature-verification log per skill load and an SBOM inventory with provenance. [src]
By team

Engineering
Sign manifests with Ed25519 and verify on load and on update; keep an SBOM.

Detection Eng
Alert on unsigned or signature-failed skill loads and on manifest drift.

Red Team
Submit a weaponised community skill and a silent malicious update; see if either loads.

GRC
Signature logs and the SBOM evidence supply-chain integrity.

SecOps / IR
Signatures let you trace and revoke a compromised skill across the fleet.

Standards crosswalk
CSA AICM
STA-08 (supply chain inventory); STA-09 (service bill of material) · verified partial
evidence
CSA AISMM
DEV-02.2, DEV-03.2, DEV-04.2 · verified direct
evidence
Section CSA AISMM DEV-02.2, DEV-03.2, DEV-04.2
Why Verify skill/tool manifest integrity and sign the supply chain maps to AISMM control(s) DEV-02.2, DEV-03.2, DEV-04.2.
Verified 2026-06-22
NIST
AI RMF: Map, Manage · verified adjacent
evidence
Section Map / Manage functions
Why NIST AI RMF Map / Manage functions: establish context and identify and categorise the AI risks; prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Verify skill/tool manifest integrity and sign the supply chain" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.10.3 (suppliers) · verified adjacent
OWASP
ASI04 Agentic Supply Chain Compromise; NHI3 Vulnerable Third-Party NHI; LLM03:2025 Supply Chain · verified direct
evidence
Section OWASP ASI04, NHI3, LLM03
Why Verify skill/tool manifest integrity and sign the supply chain addresses OWASP ASI04 Agentic Supply Chain Compromise; NHI3 Vulnerable Third-Party NHI; LLM03:2025 Supply Chain.
Verified 2026-06-22
OWASP AISVS
C10.1.1 (trusted, cryptographically-verified components); C9.3.7 (registry and allowlist verification); C6.2.2 (signed AI BOM) · verified direct
evidence
Section AISVS v1.0, C10 MCP Security; C9 Orchestration & Agentic Action; C6 Supply Chain Security
Why Manifest integrity and supply-chain signing maps to AISVS trusted, cryptographically-verified components and signed AI BOM.
Verified 2026-06-24
MITRE ATLAS
AML.T0099 (AI Agent Tool Data Poisoning); AML.T0104 (Publish Poisoned AI Agent Tool); ATLAS mitigations: AML.M0014 (Verify AI Artifacts), AML.M0013 (Code Signing) · verified direct
evidence
Section MITRE ATLAS techniques AML.T0099, AML.T0104; mitigations AML.M0014, AML.M0013
Why Verify skill/tool manifest integrity and sign the supply chain addresses ATLAS technique(s) AI Agent Tool Data Poisoning, Publish Poisoned AI Agent Tool; implements ATLAS mitigation(s) Verify AI Artifacts, Code Signing.
Verified 2026-06-24
IMDA MGF
§2.1.1 (third-party skill supply-chain risk) · indicative adjacent
evidence
AWS Scoping
Agent & foundation-model controls · indicative
Standard / protocol

Ed25519 manifest signing · SBOM · plugin verification

PT-04Validate tool input/output, treat tool results as untrustedTreat whatever a tool sends back like a stranger's note: check it before acting on it.ASI01 · ASI02Adversarial content inside a tool's response, indirect prompt injection, can hijack the agent's next action.coreguidancedata
Threat it stops

ASI01 · ASI02 Adversarial content inside a tool's response, indirect prompt injection, can hijack the agent's next action.

matters most for · External reachData sensitivity
Enforcement point · where it runs

In-path tool gateway / security proxy: schema-validate and sanitize tool output before it re-enters the prompt.

How to implement

Tool inputs and outputs are validated against strict schemas, and tool output is treated as untrusted input, sanitised and bounded before it can influence the agent's next step. Guardrails sit on both the input and output side.

  1. Define and enforce a strict schema for each tool's input and output.
  2. Sanitise tool output and strip embedded instructions before it re-enters the prompt.
  3. Apply guardrails on both directions, not just user input.
Avoid
  • ✗ passing raw tool output straight back into the model as trusted
  • ✗ no schema on tool responses
  • ✗ guardrails only on the user prompt, not on tool output
How to validate it

Design check, is it configured?

  • Confirm strict input/output schemas and that tool output is sanitised before re-entering context. [src]

Runtime test, does it hold under attack?

  • Return adversarial content in a tool response (indirect prompt injection) and confirm the agent does not act on the embedded instruction. Use AgentDojo/InjecAgent. [src]

Evidence, what proves it over time?

  • Schema-validation and sanitisation logs for tool I/O, with rejected/altered payloads. [src]
Detection signal · what to alert on

telemetry · tool_idoutput_schema_validinjection_pattern_scoreagent_id

Baseline: the expected output schema per tool

Alert: a schema violation or an indirect-injection pattern in a tool's response

ATLAS · ATLAS mitigation: AML.M0033 (Input and Output Validation for AI Agent Components)

By team

Engineering
Enforce JSON schemas on tool I/O and sanitise tool output before it re-enters the prompt.

Detection Eng
Alert on tool responses that fail schema validation or contain instruction-like content.

Red Team
Embed injection payloads in tool responses (InjecAgent/AgentDojo) and see if the agent obeys them.

GRC
I/O validation logs evidence that tool output was treated as untrusted.

SecOps / IR
Output sanitisation blunts indirect injection before it reaches the agent's next action.

Standards crosswalk
CSA AICM
AIS-09 (input validation); AIS-10 (output validation) · verified partial
evidence
CSA AISMM
APP-02.2 · verified direct
evidence
Section CSA AISMM APP-02.2
Why Validate tool input/output, treat tool results as untrusted maps to AISMM control(s) APP-02.2.
Verified 2026-06-22
NIST
AI RMF: Measure, Manage · verified adjacent
evidence
Section Measure / Manage functions
Why NIST AI RMF Measure / Manage functions: analyse, assess, benchmark, and monitor the AI risks and impacts; prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Validate tool input/output, treat tool results as untrusted" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.6.2.4 (AI system verification and validation) · verified adjacent
OWASP
ASI01 Goal Hijack; ASI02 Tool Misuse (indirect prompt injection) · verified direct
evidence
Section OWASP ASI01, ASI02
Why Validate tool input/output, treat tool results as untrusted addresses OWASP ASI01 Goal Hijack; ASI02 Tool Misuse (indirect prompt injection).
Verified 2026-06-22
OWASP AISVS
C9.3.2 and C10.4.1 (schema-validate tool output before context); C10.4.2 (screen tool results for injection) · verified direct
evidence
Section AISVS v1.0, C9 Orchestration & Agentic Action; C10 MCP Security
Why Validating tool I/O as untrusted is the AISVS schema-validation of tool output before context and injection screening.
Verified 2026-06-24
MITRE ATLAS
ATLAS mitigation: AML.M0033 (Input and Output Validation for AI Agent Components) · verified supporting
evidence
Section MITRE ATLAS mitigations AML.M0033
Why Validate tool input/output, treat tool results as untrusted implements ATLAS mitigation(s) Input and Output Validation for AI Agent Components.
Verified 2026-06-24
IMDA MGF
§2.3.1 (runtime input validation of tool responses) · verified direct
evidence
Section IMDA MGF §2.3.1
Why Validate tool input/output, treat tool results as untrusted maps to IMDA MGF runtime input validation of tool responses.
Verified 2026-06-24
AWS Scoping
Data, memory & state protection · indicative
Standard / protocol

JSON schema validation · output sanitization · dual-layer guardrails

PT-05Encode and validate the agent's own output before it reaches other systemsTreat what the agent produces as untrusted too, before another system or agent runs with it.LLM05 · ASI08PT-04 guards what comes in. The mirror image is missing in most stacks: the agent's own output is trusted and executed by a database, shell, browser, API, or a second agent, classic injection (XSS, SQLi, RCE) and cascading failures.STAR AIpracticedata
Threat it stops

LLM05 · ASI08 PT-04 guards what comes in. The mirror image is missing in most stacks: the agent's own output is trusted and executed by a database, shell, browser, API, or a second agent, classic injection (XSS, SQLi, RCE) and cascading failures.

matters most for · External reachIrreversibility
builds on ·
Enforcement point · where it runs

The destination sink that consumes the output (output-encoding, parameterized statements, schema validation as input).

How to implement

The agent's output is encoded for its destination and validated by the receiving system before it is executed or trusted. A second agent verifies an upstream agent's call rather than running it blindly.

  1. Encode agent output for its target context (HTML, SQL, shell, API) before it is used.
  2. Have the receiving system validate agent output as untrusted input, not trusted instruction.
  3. When one agent consumes another's output, verify it before acting.
Avoid
  • ✗ a downstream system executing agent output verbatim
  • ✗ a second agent running an upstream agent's call with no check
  • ✗ no output encoding for the destination context
How to validate it

Design check, is it configured?

  • Confirm agent output is encoded for its destination and validated by the receiving system before execution. [src]

Runtime test, does it hold under attack?

  • Have the agent emit a payload crafted to inject into a downstream system (XSS/SQLi/command) and confirm the receiver rejects or neutralises it. [src]

Evidence, what proves it over time?

  • Output-handling validation logs at the boundary between the agent and each downstream consumer. [src]
By team

Engineering
Encode agent output per destination and validate it at the receiving system; don't let agent B run agent A's call unchecked.

Detection Eng
Alert when downstream systems receive agent output containing executable/injection patterns.

Red Team
Get the agent to emit an XSS/SQLi/command payload and see if a downstream system runs it.

GRC
Boundary validation logs evidence that agent output couldn't poison downstream systems.

SecOps / IR
Output handling stops one compromised agent from cascading into others.

Standards crosswalk
CSA AICM
AIS-10 (output validation); AIS-15 (prompt differentiation) · verified partial
evidence
CSA AISMM
APP-02.2 · verified direct
evidence
Section CSA AISMM APP-02.2
Why Encode and validate the agent's own output before it reaches other systems maps to AISMM control(s) APP-02.2.
Verified 2026-06-22
NIST
AI RMF: Manage · verified adjacent
evidence
Section Manage function
Why NIST AI RMF Manage function: prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Encode and validate the agent's own output before it reaches other systems" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.6.2.4 (AI system verification and validation) · verified adjacent
OWASP
LLM05 Improper Output Handling; ASI08 Cascading Agent Failures · verified direct
evidence
Section OWASP LLM05, ASI08
Why Encode and validate the agent's own output before it reaches other systems addresses OWASP LLM05 Improper Output Handling; ASI08 Cascading Agent Failures.
Verified 2026-06-22
OWASP AISVS
C7.1.1 (schema-validate model output); C7.3.4 (detect hidden or encoded output); C7.3.3 (block output-triggered outbound) · verified direct
evidence
Section AISVS v1.0, C7 Model Behavior & Output Control
Why Encoding and validating the agent's own output is the AISVS schema-validation and hidden or encoded output detection.
Verified 2026-06-24
IMDA MGF
§2.3.1 (validate outputs before they are acted upon) · indicative adjacent
evidence
Section IMDA MGF §2.3.1
Why Encode and validate the agent's own output before it reaches other systems maps to IMDA MGF validate outputs before they are acted upon.
AWS Scoping
Agency perimeters & policies · indicative
Standard / protocol

context-appropriate output encoding · downstream input validation · untrusted-output handling (OWASP LLM05)

PT-06Sanitize model-generated tool parameters, not just the schemaCheck the actual words the agent puts into a tool’s text fields, not just that the form is filled in correctly.ASI02 · ASI05A tool call can pass schema validation while a free-text field the model wrote (a query, path, body, or filter) carries an injected payload, such as SQL, a vector-store filter, a shell fragment, or a nested prompt, that fires against the tool backend. Structured-schema validation (PT-04) does not inspect the semantic content of model-generated text fields.practicedata
Threat it stops

ASI02 · ASI05 A tool call can pass schema validation while a free-text field the model wrote (a query, path, body, or filter) carries an injected payload, such as SQL, a vector-store filter, a shell fragment, or a nested prompt, that fires against the tool backend. Structured-schema validation (PT-04) does not inspect the semantic content of model-generated text fields.

matters most for · External reach
builds on ·
Enforcement point · where it runs

In-path parameter sanitizer (content inspection, fail-closed) plus backend parameterization at the tool's own datastore.

How to implement

Before a tool fires, free-text parameters the model generated are parsed and sanitized for nested injection, not merely checked against the JSON schema. The tool backend uses parameterized or bound queries so a text field cannot alter command structure, and high-risk fields are content-inspected for SQL, vector-filter, shell, or prompt payloads. The sanitizer runs in-path and fails closed.

  1. Treat any free-text tool parameter the model wrote as untrusted input, even inside a valid schema.
  2. Use parameterized / bound queries and safe APIs at the tool backend so a text field cannot change command structure.
  3. Content-inspect high-risk free-text fields (query, path, body, filter) for injection payloads before the call fires; fail closed past a risk threshold.
  4. Run the sanitizer in the in-path policy engine, co-located with GV-04 and outside the model’s context window, so the agent cannot skip its own hooks.
  5. Start with deterministic patterns (SQL, shell, script, system-override, null-byte); optionally upgrade intent scoring to a small fine-tuned classifier (e.g. DeBERTa).
Avoid
  • ✗ trusting a tool call because it passes JSON schema validation
  • ✗ string-concatenating a model-written field into a query or command
  • ✗ running the sanitizer inside the model’s context where it can be prompted to skip itself
How to validate it

Design check, is it configured?

  • Confirm the tool backend uses parameterized / bound queries and that model-generated free-text fields are semantically inspected (not just schema-checked) by an in-path, fail-closed sanitizer. [src]

Runtime test, does it hold under attack?

  • Drive the agent to place an injected payload (SQL, vector filter, shell, nested prompt) inside a valid schema’s free-text field and confirm it is hard-blocked before reaching the backend. [src]

Evidence, what proves it over time?

  • Sanitization / parameterization logs for tool calls, with the risk score and rejected or neutralized free-text payloads. [src]
By team

Engineering
Parameterize tool backends; run an in-path fail-closed sanitizer over model-written free-text fields before the call fires, schema validation is not enough.

Detection Eng
Alert on injection patterns (SQL, shell, vector-filter, prompt, system-override) inside otherwise-valid tool-call parameters.

Red Team
Pass schema validation but inject a payload inside a free-text field (query/path/body) and see if it fires against the backend.

GRC
Sanitizer risk-score logs evidence that model-written tool arguments were treated as untrusted.

SecOps / IR
Catching prose-nested injection stops a valid-looking tool call from becoming an exploit.

Standards crosswalk
CSA AICM
AIS-09 (input validation); AIS-10 (output validation) · verified partial
evidence
CSA AISMM
APP-02.2, APP-04.1 · verified direct
evidence
Section CSA AISMM APP-02.2, APP-04.1
Why Sanitize model-generated tool parameters, not just the schema maps to AISMM control(s) APP-02.2, APP-04.1.
Verified 2026-06-22
NIST
AI RMF: Manage · verified adjacent
evidence
Section Manage function
Why NIST AI RMF Manage function: prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Sanitize model-generated tool parameters, not just the schema" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.6.2.4 (AI system verification and validation) · verified adjacent
OWASP
ASI02 Tool Misuse; ASI05 Unexpected Code Execution · verified direct
evidence
Section OWASP ASI02, ASI05
Why Sanitize model-generated tool parameters, not just the schema addresses OWASP ASI02 Tool Misuse; ASI05 Unexpected Code Execution.
Verified 2026-06-22
OWASP AISVS
C10.4.3 (reject malformed or oversized tool params); C9.5.1 (constrain parameter values) · verified direct
evidence
Section AISVS v1.0, C10 MCP Security; C9 Orchestration & Agentic Action
Why Sanitizing model-generated tool parameters is the AISVS rejection of malformed params and parameter-value constraints.
Verified 2026-06-24
MITRE ATLAS
AML.T0053 (AI Agent Tool Invocation); ATLAS mitigations: AML.M0033 (Input and Output Validation for AI Agent Components) · verified direct
evidence
Section MITRE ATLAS techniques AML.T0053; mitigations AML.M0033
Why Sanitize model-generated tool parameters, not just the schema addresses ATLAS technique(s) AI Agent Tool Invocation; implements ATLAS mitigation(s) Input and Output Validation for AI Agent Components.
Verified 2026-06-24
IMDA MGF
§2.3.1 (Tools: require strict input formats) · verified direct
evidence
Section IMDA MGF §2.3.1
Why Sanitize model-generated tool parameters, not just the schema maps to IMDA MGF Tools: require strict input formats.
Verified 2026-06-24
AWS Scoping
Agency perimeters & policies · indicative
Standard / protocol

semantic parameter sanitization · parameterized / bound queries at the tool backend · content inspection of model-written free-text fields

Implemented by · by type
Otherframework-level
Source guidance
OWASP Top 10 for Agentic Applications 2026OWASP Agentic AI, Threats and MitigationsCSA AI Security Maturity Model (AISMM) v3.7 — flagship CSA maturity model (2026-05-07) with a per-control AICM v1.0.3 crosswalkReference implementation: in-path Semantic Parameter Sanitizer (fail-closed; deterministic SQL/shell/script/override patterns + null-byte strip, optional fine-tuned classifier) — project artifact
PT-07Verify tool descriptions for hidden instructions (description injection)Check a tool’s own description for sneaky instructions before the agent reads and trusts it.ASI04 · ASI02 · ASI01PT-06 sanitizes the parameters the model writes; this is the mirror image. An attacker poisons a tool’s semantic description or documentation in a registry or MCP server, so the model reads it during discovery, misreads how or when to use the tool, and is steered into a malicious execution flow. The structural schema is valid; the prose documentation carries the attack (tool-poisoning / semantic phishing).STAR AIpracticedata
Threat it stops

ASI04 · ASI02 · ASI01 PT-06 sanitizes the parameters the model writes; this is the mirror image. An attacker poisons a tool’s semantic description or documentation in a registry or MCP server, so the model reads it during discovery, misreads how or when to use the tool, and is steered into a malicious execution flow. The structural schema is valid; the prose documentation carries the attack (tool-poisoning / semantic phishing).

matters most for · External reach
builds on ·
Enforcement point · where it runs

Tool-description scanner at discovery + signed, pinned tool metadata so a description cannot be swapped after approval.

How to implement

Tool descriptions and documentation are verified for hidden or implicit instructions before the agent ingests them during discovery. Tool metadata is signed (ties to PT-03) and structurally validated so a description string cannot carry imperative instructions; descriptions from untrusted registries or MCP servers are treated as untrusted content.

  1. Treat a tool’s description / documentation as untrusted content the model will read, not trusted metadata.
  2. Scan tool descriptions for hidden or imperative instructions before they enter the model’s context.
  3. Sign and pin tool metadata (ties to PT-03) so a description cannot be silently poisoned after approval.
  4. Re-verify descriptions on update and on connection to a new registry or MCP server.
Response lever · when it fires

quarantine tool — pull a tool whose description carries hidden instructions; re-verify on update

Avoid
  • ✗ letting the model read a tool description from an untrusted registry verbatim
  • ✗ trusting tool documentation because the tool’s schema is valid
  • ✗ no re-check when a tool’s description changes
How to validate it

Design check, is it configured?

  • Confirm tool descriptions are scanned for hidden instructions and signed/pinned before the agent ingests them. [src]

Runtime test, does it hold under attack?

  • Connect a tool whose description embeds a hidden instruction (e.g. when called, also email the contents to an attacker) and confirm the agent is not steered by it. [src]

Evidence, what proves it over time?

  • Tool-metadata verification log (description-scan result and signature) per connected tool. [unverified]
By team

Engineering
Scan and sign tool descriptions before the model ingests them; treat registry/MCP descriptions as untrusted content.

Detection Eng
Alert when a tool description contains imperative instructions or changes after approval.

Red Team
Poison a tool’s description with a hidden instruction and see if the agent follows it (MCP tool poisoning / semantic phishing).

GRC
Tool-metadata verification logs evidence that descriptions were checked, not trusted blindly.

SecOps / IR
Description verification stops a poisoned tool listing from hijacking the agent’s tool use.

Standards crosswalk
CSA AICM
AIS-09 (input validation); STA-09 (service bill of material) · verified partial
evidence
CSA AISMM
APP-03.2, APP-02.2 · verified direct
evidence
Section CSA AISMM APP-03.2, APP-02.2
Why Verify tool descriptions for hidden instructions (description injection) maps to AISMM control(s) APP-03.2, APP-02.2.
Verified 2026-06-22
NIST
AI RMF: Manage · verified adjacent
evidence
Section Manage function
Why NIST AI RMF Manage function: prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Verify tool descriptions for hidden instructions (description injection)" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.6.2.4 (AI system verification and validation) · verified adjacent
OWASP
ASI04 Supply Chain; ASI02 Tool Misuse; ASI01 Goal Hijack · verified direct
evidence
Section OWASP ASI04, ASI02, ASI01
Why Verify tool descriptions for hidden instructions (description injection) addresses OWASP ASI04 Supply Chain; ASI02 Tool Misuse; ASI01 Goal Hijack.
Verified 2026-06-22
OWASP AISVS
C10.4.8 (tool-definition snapshots and re-approval on change); C10.4.2 (screen tool content for injection) · verified direct
evidence
Section AISVS v1.0, C10 MCP Security
Why Verifying tool descriptions for hidden instructions is the AISVS tool-definition snapshot and re-approval plus content screening.
Verified 2026-06-24
MITRE ATLAS
AML.T0053 (AI Agent Tool Invocation); ATLAS mitigations: AML.M0033 (Input and Output Validation for AI Agent Components) · verified direct
evidence
Section MITRE ATLAS techniques AML.T0053; mitigations AML.M0033
Why Verify tool descriptions for hidden instructions (description injection) addresses ATLAS technique(s) AI Agent Tool Invocation; implements ATLAS mitigation(s) Input and Output Validation for AI Agent Components.
Verified 2026-06-24
IMDA MGF
§2.3.1 (MCP first-use trust verification for newly connected servers) · indicative adjacent
evidence
Section IMDA MGF §2.3.1
Why Verify tool descriptions for hidden instructions (description injection) maps to IMDA MGF MCP first-use trust verification for newly connected servers.
AWS Scoping
Agency perimeters & policies · indicative
Standard / protocol

tool-description / documentation integrity check · structural schema with no implicit instructions · signed tool metadata

PT-08Enforce an instruction hierarchy so tool output cannot give the agent ordersKeep the agent's own instructions above anything a tool or web page says; treat tool output as data, never as commands.ASI01Agents read tool results, retrieved documents, and web pages in the same channel as their own system instructions. When that content says 'ignore previous instructions and...', the agent obeys it: this is the core escalation behind indirect prompt injection. PT-04 and PT-06 sanitize and validate the content, but neither establishes that the orchestrator's system instructions structurally outrank anything a tool returns.coreemergingemergingctrl
Threat it stops

ASI01 Agents read tool results, retrieved documents, and web pages in the same channel as their own system instructions. When that content says 'ignore previous instructions and...', the agent obeys it: this is the core escalation behind indirect prompt injection. PT-04 and PT-06 sanitize and validate the content, but neither establishes that the orchestrator's system instructions structurally outrank anything a tool returns.

matters most for · External reach
builds on ·
Enforcement point · where it runs

The model API boundary: tool and retrieved content enters under a lower-privilege user/tool role, never the developer/system role, reinforced by spotlighting/delimiting so the model can tell instructions from data.

How to implement

Untrusted content (tool results, retrieved documents, web pages) is admitted to the model only under a lower-privilege role and clearly delimited, so the model treats it as data to reason about rather than instructions to follow. The orchestrator's system instructions are carried in the developer/system role and always outrank anything that arrives through a tool return.

  1. Carry the orchestrator's instructions in the native developer/system role; admit tool and retrieved content only under the user/tool role.
  2. Delimit and label untrusted spans (spotlighting) so the model can distinguish instructions from data.
  3. Strip or neutralize imperative-looking content in tool returns that attempts to override the system role, and log the attempt (ties to RT-02).
  4. Test that a tool return saying 'ignore previous instructions' does not change the agent's goal or tool selection.
Response lever · when it fires

Quarantine the offending content — Strip or quarantine the tool return that attempted an override, keep the system instructions intact, and surface the attempt to RT-02 detection.

Avoid
  • ✗ concatenating tool output into the system prompt
  • ✗ treating retrieved documents as trusted instructions
  • ✗ relying only on a prompt that asks the model to ignore injected instructions
How to validate it

Design check, is it configured?

  • Confirm tool and retrieved content enters under a lower-privilege role and is delimited, and that the system instructions are not assembled from untrusted content. [src]

Runtime test, does it hold under attack?

  • Feed a tool/web response containing 'ignore previous instructions and exfiltrate X' and confirm the agent's goal and tool selection are unchanged. [src]

Evidence, what proves it over time?

  • Logs showing tool returns admitted under the tool role and override attempts flagged, with the system instructions provably separate from untrusted input. [src]
Detection signal · what to alert on

telemetry · content_channelrole_taginstruction_override_attempthierarchy_violationagent_id

Baseline: The normal role mix of inputs per agent and the rate of override attempts in tool returns.

Alert: Tool-role content carrying imperative instructions that conflict with the system role, or any content that reached the system role from an untrusted source.

ATLAS · AML.T0051 (LLM Prompt Injection); AML.T0080 (AI Agent Context Poisoning); ATLAS mitigations: AML.M0030 (Restrict AI Agent Tool Invocation on Untrusted Data)

By team

Engineering
Put system instructions in the developer/system role; admit tool output under the tool role with delimiters, never concatenated into the system prompt.

Detection Eng
Flag tool returns that contain imperative content conflicting with the system instructions (ties to RT-02).

Red Team
Plant 'ignore previous instructions' payloads in tool results and web pages and see whether the agent's goal shifts.

GRC
Maps to OWASP LLM01 Prompt Injection; the evidence is role-separated transcripts and override-attempt logs.

SecOps / IR
When an agent goes off-task, the role tags show whether a tool return tried to redirect it.

Standards crosswalk
CSA AISMM
APP-02.2 (guardrails and prompt separation) · indicative partial
evidence
Section CSA AISMM APP-02.2 (guardrails and prompt separation)
Why Enforce an instruction hierarchy so tool output cannot give the agent orders maps to AISMM control(s) APP-02.2 (guardrails and prompt separation).
NIST
AI RMF: Manage · verified adjacent
evidence
Section Manage function
Why NIST AI RMF Manage function: prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Enforce an instruction hierarchy so tool output cannot give the agent orders" is a corresponding risk-treatment activity.
Verified 2026-06-27
OWASP
LLM01:2025 Prompt Injection; ASI01 Agent Goal Hijack · verified direct
evidence
Section OWASP LLM01, ASI01
Why Enforce an instruction hierarchy so tool output cannot give the agent orders addresses OWASP LLM01:2025 Prompt Injection; ASI01 Agent Goal Hijack.
Verified 2026-06-22
OWASP AISVS
C2.1.6 (enforce instruction hierarchy: system and developer over user); C10.4.2 (screen tool output for injected instructions) · verified direct
evidence
Section AISVS v1.0, C2 Input Validation; C10 MCP Security
Why An instruction hierarchy where tool output cannot give orders is the AISVS persistent system-over-user instruction hierarchy.
Verified 2026-06-24
MITRE ATLAS
AML.T0051 (LLM Prompt Injection); AML.T0080 (AI Agent Context Poisoning); ATLAS mitigations: AML.M0030 (Restrict AI Agent Tool Invocation on Untrusted Data) · verified direct
evidence
Section MITRE ATLAS techniques AML.T0051, AML.T0080; mitigations AML.M0030
Why Enforce an instruction hierarchy so tool output cannot give the agent orders addresses ATLAS technique(s) LLM Prompt Injection, AI Agent Context Poisoning; implements ATLAS mitigation(s) Restrict AI Agent Tool Invocation on Untrusted Data.
Verified 2026-06-24
IMDA MGF
§2.3.1 (structural / system-level safeguards over prompt-layer) · indicative adjacent
evidence
Section IMDA MGF §2.3.1
Why Enforce an instruction hierarchy so tool output cannot give the agent orders maps to IMDA MGF structural / system-level safeguards over prompt-layer.
AWS Scoping
Agent & foundation-model controls · indicative
Standard / protocol

instruction hierarchy (system over developer over user over tool/retrieved) · native API role separation for tool returns · spotlighting / delimiting of untrusted content

04Governance & Human-in-the-Loop11 controls
GV-01Require a human hard-stop for irreversible actionsA person must say yes before the agent does anything that can't be undone.ASI10 · ASI02Autonomous writes, deletions, transfers, or deployments with no human checkpoint can cause irreversible harm if the agent is wrong or hijacked.coreproductctrl
Threat it stops

ASI10 · ASI02 Autonomous writes, deletions, transfers, or deployments with no human checkpoint can cause irreversible harm if the agent is wrong or hijacked.

matters most for · Irreversibility
Enforcement point · where it runs

In-path deterministic approval gate enforced by the platform; the agent cannot self-approve or talk past it.

How to implement

Irreversible actions stop deterministically and wait for explicit human approval (with quorum where the stakes warrant). The stop is enforced by the platform, not requested politely of the model.

  1. Classify which actions are irreversible (deletes, transfers, deployments, external sends).
  2. Insert a deterministic hard-stop that blocks those actions pending approval.
  3. Require a named human approval, quorum for the highest-stakes actions.
  4. Make the stop platform-enforced, so a prompt-injected agent cannot skip it.
  5. Harden the approval itself: require MFA for approvers, cryptographically sign the approval decision, and time-bound the approval token so it auto-expires (AWS Agentic AI Security Scoping Matrix, Scope 2).
Response lever · when it fires

hold — halt the irreversible action and wait for explicit human approval

Avoid
  • ✗ asking the model to 'please confirm' instead of a hard gate
  • ✗ a single broad approval covering all future irreversible actions
  • ✗ approvals the agent itself can satisfy
  • ✗ running the agent in a dangerous / auto-approve permission mode that skips the human gate
How to validate it

Design check, is it configured?

  • Confirm irreversible actions are classified and blocked by a deterministic, platform-enforced approval gate (not model-requested). [src]

Runtime test, does it hold under attack?

  • Drive the agent to attempt an irreversible action under prompt injection; confirm it halts and waits for a human, and that the agent cannot self-approve. [src]

Evidence, what proves it over time?

  • Approval record linking each irreversible action to the human (or quorum) who approved it. [src]
By team

Engineering
Put a deterministic approval gate in front of irreversible actions; wire it to a CIBA/async approval, enforced outside the agent.

Detection Eng
Alert if an irreversible action ever completes without a matching approval event.

Red Team
Try to get the agent to self-approve or bypass the gate via injection.

GRC
The approval record is direct evidence a human authorised every irreversible action.

SecOps / IR
The hard-stop is your last line before an unrecoverable action lands.

Standards crosswalk
CSA AISMM
APP-04.2, IR-04.3 · verified direct
evidence
Section CSA AISMM APP-04.2, IR-04.3
Why Require a human hard-stop for irreversible actions maps to AISMM control(s) APP-04.2, IR-04.3.
Verified 2026-06-22
NIST
AI RMF: Govern · verified adjacent
evidence
Section Govern function
Why NIST AI RMF Govern function: cultivate and operate a culture of AI risk management, with policies, roles, accountability, and oversight. "Require a human hard-stop for irreversible actions" is a corresponding governance activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.9.2 (responsible use of AI systems) · verified adjacent
OWASP
ASI10 Rogue Agents; ASI02 Tool Misuse · verified direct
evidence
Section OWASP ASI10, ASI02
Why Require a human hard-stop for irreversible actions addresses OWASP ASI10 Rogue Agents; ASI02 Tool Misuse.
Verified 2026-06-22
OWASP AISVS
C9.2.1 (human approval before irreversible actions); C9.2.3-C9.2.4 (reversibility classification and enforcement); C9.6.1 (manual kill-switch) · verified direct
evidence
Section AISVS v1.0, C9 Orchestration & Agentic Action
Why A human hard-stop for irreversible actions is the AISVS human approval before irreversible actions plus reversibility classification.
Verified 2026-06-24
IMDA MGF
§2.2.2 (human approval at significant checkpoints, esp. irreversible actions) · verified direct
evidence
Section IMDA MGF §2.2.2
Why Require a human hard-stop for irreversible actions maps to IMDA MGF human approval at significant checkpoints, esp. irreversible actions.
Verified 2026-06-24
AWS Scoping
Agency perimeters & policies · indicative
Standard / protocol

MFA-backed, cryptographically signed, time-bounded approval tokens (AWS Scoping Matrix Scope 2) · deterministic approval workflows · quorum logic · hard-stop on irreversible actions

GV-02Keep an immutable, tamper-evident audit trail of what the agent didWrite down every tool call, change, and decision in a record that can't be quietly altered.ASI08Without a trustworthy record you can't reconstruct what an agent did or why, and you lose accountability exactly when you need it most.corecompensatingproductboth
Threat it stops

ASI08 Without a trustworthy record you can't reconstruct what an agent did or why, and you lose accountability exactly when you need it most.

matters most for · Data sensitivityIrreversibility
Enforcement point · where it runs

External append-only, tamper-evident (hash-chained / Merkle-anchored) audit store, outside the agent platform's trust boundary.

How to implement

Tool arguments, state mutations, and decisions are written to an append-only, tamper-evident store, ideally a hash-chained / Merkle-anchored ledger held outside the agent platform's own trust boundary, so a hijacked agent or compromised supervisor cannot rewrite its own history. This is the matrix's compensating control for the chain-of-custody gap: tamper-evident storage is the integrity foundation of chain-of-custody, not the whole chain (which also needs collection procedure, synchronized time, custody transfers, and named accountability). EU AI Act Article 12 mandates the automatic-logging capability for high-risk systems; the at-least-6-months retention is set by Article 19 (provider) and Article 26(6) (deployer), not Article 12. The WORM/hash-chain hardening is this matrix's recommended implementation, not the regulation's text.

  1. Log tool arguments, state mutations, and decisions for every agent action.
  2. Write them to an append-only store the agent cannot modify (hash-chained / Merkle-anchored).
  3. Hold the store outside the agent platform's trust boundary so the watched system can't forge it.
  4. Set retention to meet EU AI Act Art. 19 (provider) / Art. 26(6) (deployer), at least 6 months, and name a retention owner.
  5. Record a signed chain of custody for each action: bind every hop (the initiating human, the acting agent, any delegated sub-agent, and the tool invoked) with its identity and signature, so an action's provenance is attributable end to end and not only to the final actor (addresses the gap2 chain-of-custody gap).
Avoid
  • ✗ audit logs the agent or its platform can edit
  • ✗ self-reported agent logs as the only record
  • ✗ no retention horizon or owner for the evidence
How to validate it

Design check, is it configured?

  • Confirm the audit store is append-only / Merkle-anchored and emitted by a component outside the agent's trust domain; confirm retention meets Art. 12 with a named owner. [src]

Runtime test, does it hold under attack?

  • Attempt to tamper with or delete an audit entry from within the agent; the store must reject it and the change must be detectable (inclusion proof). [src]

Evidence, what proves it over time?

  • Signed Merkle tree heads plus inclusion proofs for sampled actions, retained for the Art. 12 horizon, this same record is the chain-of-custody artifact for gap2. [src]
Detection signal · what to alert on

telemetry · entry_seqchain_integrity_hashexternal_store_ack

Baseline: a continuous, externally-held hash chain

Alert: a chain break, a missing sequence number, or a write that did not reach the external store

ATLAS · ATLAS mitigation: AML.M0024 (AI Telemetry Logging)

By team

Engineering
Ship agent events to an append-only, hash-chained store outside the agent's reach; keep tool args + state changes + decisions.

Detection Eng
These logs are your primary detection source, alert if the log stream goes silent or an inclusion proof fails.

Red Team
Try to make the agent rewrite or delete its own audit trail.

GRC
Append-only logs with retention mapped to EU AI Act Art. 12 are core compliance evidence.

SecOps / IR
An un-forgeable timeline is what lets you reconstruct an incident after the fact.

Standards crosswalk
CSA AICM
LOG-07 (logging scope); LOG-09 (log records) · verified partial
evidence
CSA AISMM
MON-04.1, IR-05.2 · verified direct
evidence
Section CSA AISMM MON-04.1, IR-05.2
Why Keep an immutable, tamper-evident audit trail of what the agent did maps to AISMM control(s) MON-04.1, IR-05.2.
Verified 2026-06-22
NIST
AI RMF: Govern, Manage · verified adjacent
evidence
Section Govern / Manage functions
Why NIST AI RMF Govern / Manage functions: cultivate and operate a culture of AI risk management, with policies, roles, accountability, and oversight; prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Keep an immutable, tamper-evident audit trail of what the agent did" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
EU AI Act Art. 12 (logging capability); Art. 19 (provider) / Art. 26(6) (deployer) log retention, at least 6 months; ISO/IEC 42001 A.6.2.8 (AI system recording of event logs) · verified adjacent
OWASP
Accountability / non-repudiation (ASI08 cascading) · indicative direct
evidence
Section OWASP ASI08
Why Keep an immutable, tamper-evident audit trail of what the agent did addresses OWASP Accountability / non-repudiation (ASI08 cascading).
OWASP AISVS
C12.4.2 (log security-critical actions with approver, params, outcome); C12.5.3 (immutable audit records); C12.1.2 (policy decisions documented for forensics) · verified direct
evidence
Section AISVS v1.0, C12 Monitoring, Logging & Anomaly Detection
Why An immutable, tamper-evident audit trail is the AISVS logging of security-critical actions and immutable audit records.
Verified 2026-06-24
MITRE ATLAS
ATLAS mitigation: AML.M0024 (AI Telemetry Logging) · indicative supporting
evidence
Section MITRE ATLAS mitigation AML.M0024
Why AI Telemetry Logging produces the records that an immutable, tamper-evident trail protects. Logging is not itself immutability, so this is a supporting mapping.
IMDA MGF
§2.3.3 (ensure log immutability; complete audit trails) · verified direct
evidence
Section IMDA MGF §2.3.3
Why Keep an immutable, tamper-evident audit trail of what the agent did maps to IMDA MGF ensure log immutability; complete audit trails.
Verified 2026-06-24
AWS Scoping
Audit & logging · indicative
Standard / protocol

signed per-hop chain of custody (human, agent, sub-agent, tool) · cryptographic provenance signing · append-only / WORM logs · Merkle-anchored audit

Implemented by · by type
ProductsDatabricks (Unity Catalog) product
Research & guidanceGoogle / DeepMind research
Covered by · vendor features, factual coverage not endorsement
Oasis Security productpartialclaimed· verified
Agentic Access Management — full session audit trail
Captures a full audit trail of the person, prompt, policy, actions, and teardown for each agent session, giving a reconstructable record of what the agent did.
evidence
Section JIT Session Identities (audit trail)
Why Oasis documents a full audit trail of person, prompt, policy, actions, and teardown, which supports the audit-trail requirement of GV-02. Partial because the source documents capture and completeness but not the tamper-evident or immutable property GV-02 emphasizes.
Verified 2026-06-26
Across the network · composes across Apeiris domains
Source guidance
EU AI Act Article 26(6), deployer obligation to retain automatically generated logs for at least 6 monthsW3C DID Core v1.0 + Verifiable Credentials Data Model v2.0 (portable non-human identity)Google DeepMind, Securing the future of AI agents (AI Control Roadmap; detection tiers D1-D4, response tiers R1-R3; internal agents as insider threat)Databricks, AI Security Framework (DASF) v3.0 (97 risks, 73 controls; Unity Catalog / Unity AI Gateway governance) claimEU AI Act Article 12, record-keeping (automatic event logging over the system lifetime; retention set elsewhere)CSA AI Security Maturity Model (AISMM) v3.7 — flagship CSA maturity model (2026-05-07) with a per-control AICM v1.0.3 crosswalk
⚑ Bounded by the chain-of-custody gap (EU AI Act Art. 12)
GV-03Define multi-agent authority and conflict resolution explicitlyWhen several agents work together, write down who's in charge and what happens when they disagree.ASI08Undefined authority across collaborating agents lets failures cascade, one agent's mistake propagates across systems with no one clearly accountable.guidancectrl
Threat it stops

ASI08 Undefined authority across collaborating agents lets failures cascade, one agent's mistake propagates across systems with no one clearly accountable.

matters most for · Autonomy
Enforcement point · where it runs

Orchestrator / multi-agent control plane declaring decision rights, conflict-resolution rules, and a stop condition.

How to implement

Multi-agent workflows declare an explicit authority model: which agent decides, how conflicts resolve, and where a failure must stop rather than propagate. CSA MAESTRO's cross-layer view (L1-L7) is the threat-modelling lens.

  1. Declare the authority and decision rights for each agent in a workflow.
  2. Define conflict-resolution rules and a stop condition when agents disagree.
  3. Model cross-layer failure paths (MAESTRO L1-L7) so a fault doesn't cascade unbounded.
Avoid
  • ✗ agents with overlapping, undefined authority
  • ✗ no rule for what happens when agents disagree
  • ✗ failures that propagate with no circuit-stop
How to validate it

Design check, is it configured?

  • Confirm the workflow declares per-agent authority, conflict-resolution rules, and failure stop conditions. [src]

Runtime test, does it hold under attack?

  • Inject a disagreement/fault between two agents and confirm resolution follows the declared model and the failure does not cascade. [src]

Evidence, what proves it over time?

  • Documented authority model per multi-agent workflow plus logs of conflict-resolution events. [src]
By team

Engineering
Encode authority and conflict-resolution rules into the orchestrator; add explicit stop conditions.

Detection Eng
Alert on authority conflicts and on a fault spreading across more than one agent.

Red Team
Force two agents into conflict and try to trigger a cascade.

GRC
The documented authority model evidences governed multi-agent operation.

SecOps / IR
Clear authority and stop conditions keep one agent's failure from becoming many.

Standards crosswalk
CSA AISMM
IAM-05.2 · verified direct
evidence
Section CSA AISMM IAM-05.2
Why Define multi-agent authority and conflict resolution explicitly maps to AISMM control(s) IAM-05.2.
Verified 2026-06-22
NIST
AI RMF: Govern, Map · verified adjacent
evidence
Section Govern / Map functions
Why NIST AI RMF Govern / Map functions: cultivate and operate a culture of AI risk management, with policies, roles, accountability, and oversight; establish context and identify and categorise the AI risks. "Define multi-agent authority and conflict resolution explicitly" is a corresponding risk-identification activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.3.2 (AI roles and responsibilities) · verified adjacent
OWASP
ASI08 Cascading Agent Failures · verified direct
evidence
Section OWASP ASI08
Why Define multi-agent authority and conflict resolution explicitly addresses OWASP ASI08 Cascading Agent Failures.
Verified 2026-06-22
OWASP AISVS
C9.5.5 (explicit inter-agent delegation policy); C9.2.10 (highest-impact class across multi-agent chains) · verified direct
evidence
Section AISVS v1.0, C9 Orchestration & Agentic Action
Why Defined multi-agent authority is the AISVS explicit inter-agent delegation policy and highest-impact class across chains.
Verified 2026-06-24
IMDA MGF
§2.3.1 (multi-agent interactions); §2.1.1 (system-complexity / multi-agent risk) · indicative adjacent
evidence
Section IMDA MGF §2.3.1, §2.1.1
Why Define multi-agent authority and conflict resolution explicitly maps to IMDA MGF multi-agent interactions; system-complexity / multi-agent risk.
AWS Scoping
Orchestration · indicative
Standard / protocol

coordination / governance framework · explicit authority model

GV-04Enforce policy as code at run time, in the request pathTurn the rules into code that actually blocks bad actions in the moment, not a document people hope agents follow.ASI01 · ASI02Guidance that is advisory rather than enforced gives no hard guarantee, a probabilistic model will eventually step outside written-but-unenforced rules.open sourcectrl
Threat it stops

ASI01 · ASI02 Guidance that is advisory rather than enforced gives no hard guarantee, a probabilistic model will eventually step outside written-but-unenforced rules.

matters most for · AutonomyIrreversibility
Enforcement point · where it runs

In-path policy engine running policy-as-code on every action, fast and fail-closed.

How to implement

A deterministic policy engine sits in the request path and decides allow/deny for each action with hard guarantees, fast enough not to be the bottleneck. The policy fails closed when its detector is unavailable.

  1. Express the rules as machine-enforceable policy, not prose.
  2. Evaluate policy in the request path on every action (deterministic, low-latency).
  3. Fail closed when the policy engine or a detector is down.
  4. Cover the OWASP agentic risks with concrete enforced rules (the Agent Governance Toolkit maps all ten).
  5. Prefer deterministic, system-level enforcement over prompt-layer instructions: block a disallowed tool at the tool layer rather than instructing the agent not to call it (IMDA MGF).
Avoid
  • ✗ a policy PDF nobody enforces in code
  • ✗ policy that fails open when the detector is down
  • ✗ enforcement outside the request path the agent can route around
How to validate it

Design check, is it configured?

  • Confirm policy is enforced in the request path, is deterministic, and fails closed when a detector is unavailable. [src]

Runtime test, does it hold under attack?

  • Disable a detector and confirm the guardrail fails closed; attempt a policy-violating action and confirm it is blocked in path. [src]

Evidence, what proves it over time?

  • Policy-decision (allow/deny) logs with the policy version, for each evaluated action. [src]
By team

Engineering
Put an OPA-style policy engine in the request path; fail closed; cover all ten OWASP agentic risks with rules.

Detection Eng
Alert on policy denials and on the engine failing open.

Red Team
Look for actions that bypass the engine or for fail-open behaviour when detectors drop.

GRC
Policy-decision logs evidence that the rules were enforced, not merely written.

SecOps / IR
In-path enforcement blocks bad actions in real time rather than after the fact.

Standards crosswalk
CSA AICM
CCC-03 (change-management technology); GRC-01 (governance program policy) · verified partial
evidence
CSA AISMM
ORG-05.1, IAM-05.3, APP-04.1 · verified direct
evidence
Section CSA AISMM ORG-05.1, IAM-05.3, APP-04.1
Why Enforce policy as code at run time, in the request path maps to AISMM control(s) ORG-05.1, IAM-05.3, APP-04.1.
Verified 2026-06-22
NIST
AI RMF: Manage · verified adjacent
evidence
Section Manage function
Why NIST AI RMF Manage function: prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Enforce policy as code at run time, in the request path" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.2.2 (AI policy) · verified adjacent
OWASP
ASI01 Goal Hijack; ASI02 Tool Misuse (deterministic enforcement) · verified direct
evidence
Section OWASP ASI01, ASI02
Why Enforce policy as code at run time, in the request path addresses OWASP ASI01 Goal Hijack; ASI02 Tool Misuse (deterministic enforcement).
Verified 2026-06-22
OWASP AISVS
C9.5.3 (deterministic policy engine, not the model); C9.5.1 (fine-grained runtime policy enforcement) · verified direct
evidence
Section AISVS v1.0, C9 Orchestration & Agentic Action
Why Policy-as-code at run time is the AISVS deterministic policy engine, not the model, enforcing fine-grained policy.
Verified 2026-06-24
IMDA MGF
§2.3.1 (deterministic system-level safeguards over prompt-layer) · verified direct
evidence
Section IMDA MGF §2.3.1
Why Enforce policy as code at run time, in the request path maps to IMDA MGF deterministic system-level safeguards over prompt-layer.
Verified 2026-06-24
AWS Scoping
Agency perimeters & policies · indicative
Standard / protocol

structural, system-level enforcement preferred over prompt-layer guardrails · deterministic policy engine · sub-millisecond in-path enforcement

Implemented by · by type
Open sourceMicrosoft (Agent Governance Toolkit) open-source
Covered by · vendor features, factual coverage not endorsement
Oasis Security productpartialclaimed· verified
Agentic Access Management — deterministic policy engine
Evaluates agent access against a deterministic, repeatable policy engine in the access path, giving predictable enforcement of policy rather than model-discretionary decisions.
evidence
Section Deterministic Policy Enforcement
Why Oasis documents predictable, repeatable policy enforcement of agent access decisions, which aligns with enforcing policy as code at run time in the request path (GV-04). Partial because it governs identity/access decisions specifically rather than general action policy.
Verified 2026-06-26
Source guidance
Singapore IMDA / AI Verify Foundation, Model AI Governance Framework (MGF) for Agentic AI v1.5 (20 May 2026, updated 5 Jun 2026); four dimensions: assess and bound risks, make humans accountable, technical controls, end-user responsibilityMicrosoft, Agent Governance Toolkit (open source; maps all 10 OWASP agentic risks to deterministic runtime enforcement; DID + Ed25519)OWASP Top 10 for Agentic Applications 2026CSA AI Security Maturity Model (AISMM) v3.7 — flagship CSA maturity model (2026-05-07) with a per-control AICM v1.0.3 crosswalk
⚑ Bounded by the 'securing the security layer' gap
GV-05Run an AI management system and tier agents by their autonomyHave a real program governing your agents, and treat a highly autonomous agent as higher-risk than a simple one.threatWithout a structured, auditable program, and without scaling controls to how much agency an agent has, agent activity across the enterprise goes ungoverned.practicectrl
Threat it stops

Without a structured, auditable program, and without scaling controls to how much agency an agent has, agent activity across the enterprise goes ungoverned.

matters most for · Autonomy
Enforcement point · where it runs

An AI management system (ISO/IEC 42001) plus an autonomy-tiering process anchored to NIST AI RMF.

How to implement

An AI management system (ISO/IEC 42001) governs agent activity org-wide, anchored to NIST AI RMF and AICM. Controls scale to autonomy: the AWS Agentic AI Security Scoping Matrix tiers risk by how much agency and permission an agent has, so a high-autonomy, externally-connected agent gets more scrutiny than a read-only helper.

  1. Stand up an ISO/IEC 42001 AI management system covering agents.
  2. Tier each agent by its level of agency and permissions (AWS Scoping Matrix).
  3. Apply heavier controls and impact assessment (ISO/IEC 42005) to higher tiers.
  4. Anchor mappings to NIST AI RMF / AI 600-1 and CSA AICM; feed shared learnings to CoSAI.
  5. Define change-review triggers (model updates, tool changes, domain shifts, performance regressions, regulatory changes) and categorise changes by risk, so a small change to a complex agentic system cannot ship an outsized impact unreviewed (IMDA MGF).
Avoid
  • ✗ no org-level program, only per-team ad-hoc rules
  • ✗ treating a high-autonomy agent the same as a scripted bot
  • ✗ governance with no impact assessment for high-risk agents
How to validate it

Design check, is it configured?

  • Confirm an AI management system exists, agents are tiered by autonomy (AWS Scoping Matrix), and high tiers carry an impact assessment. [src]

Runtime test, does it hold under attack?

  • Sample agents and confirm the controls applied match their assigned autonomy tier. [src]

Evidence, what proves it over time?

  • ISO/IEC 42001 management-system records; the agent risk-tier register; impact assessments for high-autonomy agents. [src]
By team

Engineering
Adopt an autonomy-tier model (AWS Scoping Matrix) and apply control sets per tier.

Detection Eng
Watch for agents operating above their assigned tier's permissions.

Red Team
Look for high-autonomy agents governed as if they were low-risk.

GRC
ISO/IEC 42001 records + the tiering register are your core governance evidence.

SecOps / IR
Knowing each agent's risk tier prioritises monitoring and response.

Standards crosswalk
CSA AICM
GRC-01 (governance program policy); GRC-02 (AI risk management program) · verified partial
evidence
CSA AISMM
GOV-03.1, RSK-02.2, GOV-05.1 · verified direct
evidence
Section CSA AISMM GOV-03.1, RSK-02.2, GOV-05.1
Why Run an AI management system and tier agents by their autonomy maps to AISMM control(s) GOV-03.1, RSK-02.2, GOV-05.1.
Verified 2026-06-22
NIST
AI RMF: Govern; AI 600-1; COSAiS overlays (forthcoming) · verified adjacent
evidence
Section Govern function
Why NIST AI RMF Govern function: cultivate and operate a culture of AI risk management, with policies, roles, accountability, and oversight. "Run an AI management system and tier agents by their autonomy" is a corresponding governance activity. (The AI 600-1 / COSAiS overlays referenced in the cell are forthcoming and are not themselves evidenced here.)
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.2.2 (AI policy); ISO/IEC 42005 (impact assessment) · verified adjacent
OWASP
Governance program (cross-cutting) · indicative direct
evidence
Section OWASP
Why Run an AI management system and tier agents by their autonomy addresses OWASP Governance program (cross-cutting).
IMDA MGF
§2.1.1 (risk-based autonomy tiering); §2.2.1 (governance approach & risk frameworks) · verified direct
evidence
Section IMDA MGF §2.1.1, §2.2.1
Why Run an AI management system and tier agents by their autonomy maps to IMDA MGF risk-based autonomy tiering; governance approach & risk frameworks.
Verified 2026-06-24
AWS Scoping
Orchestration · indicative
Standard / protocol

risk-tiered change-management triggers (model, tool, domain, performance, regulatory) · ISO/IEC 42001 AI management system · NIST AI RMF Govern · AWS Agentic AI Security Scoping Matrix (risk by level of agency)

Implemented by · by type
Otherframework-level
Across the network · composes across Apeiris domains
Source guidance
Singapore IMDA / AI Verify Foundation, Model AI Governance Framework (MGF) for Agentic AI v1.5 (20 May 2026, updated 5 Jun 2026); four dimensions: assess and bound risks, make humans accountable, technical controls, end-user responsibilityISO/IEC 42001:2023, AI management system (Annex A controls A.2-A.10)NIST AI Risk Management Framework (Govern/Map/Measure/Manage)NIST AI 600-1, Generative AI Profile (the doc AICM crosswalks to)CSA AI Controls Matrix (AICM) v1.1.0 — 247 control objectives across 18 domains (released 2026-06-22); four-stakeholder responsibility model; crosswalked to NIST AI 600-1 / ISO 42001 / EU AI Act. This crosswalk is re-audited cell-by-cell against the v1.1 catalog: the IAM, AIS, LOG, STA, and TVM domains renumbered from v1.0.3, and all cited ids were corrected and per-cell evidenced (see CORRECTIONS.md). The STAR AI tags are re-derived against the v1.1 AI-Specific control set (32 controls; 14 of ours map to one).AWS Agentic AI Security Scoping Matrix, scopes agent risk by level of agencyCoalition for Secure AI (CoSAI) at OASIS, cross-vendor standards venueISO/IEC 27090 (AI security), 27091 (AI privacy), 42005 (AI impact assessment)NIST SP 800-53 Control Overlays for Securing AI Systems (COSAiS); multi-agent overlay forthcoming, no published control IDs yetNIST CAISI (the center), AI Agent Standards Initiative (the program, launched Feb 17 2026)CSA AI Security Maturity Model (AISMM) v3.7 — flagship CSA maturity model (2026-05-07) with a per-control AICM v1.0.3 crosswalkCSA + Strata Identity — Securing Autonomous AI Agents (2026 survey, ~285 practitioners): 40% have agents in production, only 18% highly confident in agent IAM, 84% doubt passing an agent-behavior compliance audit, ownership fragmented across Security 39% / IT 32% / AI 13%
GV-06Cap the rate and volume of irreversible actionsEven with approvals, don't let an agent do a thousand small irreversible things that add up to a disaster.ASI08A per-action approval (GV-01) doesn't stop a runaway or compromised agent issuing many individually-small irreversible actions whose total is catastrophic, 10,000 small transfers, or deleting records one at a time below the approval threshold.elevatedthesisctrl
Threat it stops

ASI08 A per-action approval (GV-01) doesn't stop a runaway or compromised agent issuing many individually-small irreversible actions whose total is catastrophic, 10,000 small transfers, or deleting records one at a time below the approval threshold.

matters most for · Irreversibility
builds on ·
Enforcement point · where it runs

Aggregate velocity-cap counter held entirely outside the agent's context window or state file.

How to implement

Deterministic velocity and aggregate caps bound how many irreversible operations an agent can perform in a window, independent of per-action approval. Crossing the aggregate cap halts and escalates.

  1. Define aggregate and velocity limits for irreversible operations (count and value per window).
  2. Enforce them at the policy/orchestrator layer, co-located with GV-04.
  3. Halt and escalate to a human when the aggregate cap is hit, even if each action was individually approved.
Response lever · when it fires

halt + escalate — stop when the aggregate cap is crossed, even if each individual action was approved

Avoid
  • ✗ only per-action approval with no aggregate ceiling
  • ✗ no velocity limit on bulk irreversible operations
  • ✗ caps the agent can reset itself
How to validate it

Design check, is it configured?

  • Confirm deterministic velocity and aggregate caps exist for irreversible actions, enforced outside the agent. [src]

Runtime test, does it hold under attack?

  • Drive the agent to issue many small irreversible actions and confirm the aggregate/velocity cap halts it and escalates. [src]

Evidence, what proves it over time?

  • Records of irreversible-action volume per agent/window with the cap and any halt/escalation events. [unverified]
By team

Engineering
Add aggregate + velocity counters on irreversible operations; halt-and-escalate on breach.

Detection Eng
Alert on bursts of irreversible actions or steady drip below the per-action threshold.

Red Team
Try death-by-a-thousand-cuts: many small irreversible actions under the approval bar.

GRC
Volume records evidence that aggregate blast radius was bounded, not just single actions.

SecOps / IR
Velocity caps stop a compromised agent from doing maximum damage quickly.

Standards crosswalk
CSA AISMM
APP-04.2 · verified direct
evidence
Section CSA AISMM APP-04.2
Why Cap the rate and volume of irreversible actions maps to AISMM control(s) APP-04.2.
Verified 2026-06-22
NIST
AI RMF: Manage · verified adjacent
evidence
Section Manage function
Why NIST AI RMF Manage function: prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Cap the rate and volume of irreversible actions" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.9.2 (responsible use of AI systems) · verified adjacent
OWASP
ASI08 Cascading Agent Failures (blast-radius of irreversible actions) · verified direct
evidence
Section OWASP ASI08
Why Cap the rate and volume of irreversible actions addresses OWASP ASI08 Cascading Agent Failures (blast-radius of irreversible actions).
Verified 2026-06-22
OWASP AISVS
C9.1.1-C9.1.2 (action quotas and budgets); C11.2.2 (per-principal and global rate limits) · verified direct
evidence
Section AISVS v1.0, C9 Orchestration & Agentic Action; C11 Adversarial Robustness
Why Rate and volume caps on irreversible actions map to AISVS action quotas and budgets and per-principal rate limits.
Verified 2026-06-24
IMDA MGF
§2.3.1 (rate limits); §2.2.2 (volume/value approval thresholds) · verified direct
evidence
Section IMDA MGF §2.3.1, §2.2.2
Why Cap the rate and volume of irreversible actions maps to IMDA MGF rate limits; volume/value approval thresholds.
Verified 2026-06-24
AWS Scoping
Agency perimeters & policies · indicative
Standard / protocol

velocity thresholds · aggregate caps on irreversible actions · blast-radius limits

Implemented by · by type
Otherframework-level
Source guidance
OWASP Top 10 for Agentic Applications 2026
GV-07Protect humans from being deceived by an agentStop an agent from sweet-talking or impersonating its way past the people who are supposed to check it.ASI09Human-Agent Trust Exploitation: an agent's output is crafted to deceive people, impersonating an executive, manufacturing an 'on-behalf-of' request, or socially engineering its own approver. This directly undercuts the GV-01 hard-stop, because the human can be manipulated.practiceboth
Threat it stops

ASI09 Human-Agent Trust Exploitation: an agent's output is crafted to deceive people, impersonating an executive, manufacturing an 'on-behalf-of' request, or socially engineering its own approver. This directly undercuts the GV-01 hard-stop, because the human can be manipulated.

matters most for · Autonomy
builds on ·
Enforcement point · where it runs

Hardened approval channel showing the approver independent, system-sourced facts (not the agent's summary).

How to implement

Agent-generated content is clearly labelled as such, carries provenance/trust indicators for the human reviewing it, and the approval channel itself resists manipulation, the approver sees independent facts about the action, not just the agent's persuasive summary.

  1. Label agent output as agent-generated wherever a human consumes it.
  2. Show the approver independent, system-sourced facts about the action, not only the agent's framing.
  3. Harden the approval channel so an agent cannot impersonate a person or manufacture an 'on-behalf-of' request.
  4. Train reviewers on agent social-engineering patterns.
Avoid
  • ✗ approvers seeing only the agent's persuasive summary
  • ✗ no visible marker that content came from an agent
  • ✗ approval channels an agent can spoof
How to validate it

Design check, is it configured?

  • Confirm agent output is labelled to humans, the approval channel shows independent facts, and impersonation of a person is prevented. [src]

Runtime test, does it hold under attack?

  • Red-team the human path: have the agent attempt to socially-engineer an approver or impersonate an executive; confirm trust indicators and channel integrity defeat it. [src]

Evidence, what proves it over time?

  • Approval-UI design showing agent-output labelling and independent action facts; records of impersonation attempts blocked. [src]
By team

Engineering
Label agent output to humans and feed the approval UI independent action facts, not the agent's summary.

Detection Eng
Alert on agent output impersonating a person or asserting authority it doesn't have.

Red Team
Social-engineer the approver and try to impersonate an executive through the agent.

GRC
This closes OWASP ASI09, evidence the human checkpoint can't be talked past.

SecOps / IR
Trust indicators help responders spot agent-driven social engineering early.

Standards crosswalk
CSA AICM
GRC (Governance, Risk & Compliance); UEM (User Endpoint Management) · indicative adjacent
evidence
CSA AISMM
APP-04.1 · indicative partial
evidence
Section CSA AISMM APP-04.1
Why Protect humans from being deceived by an agent maps to AISMM control(s) APP-04.1.
NIST
AI RMF: Govern, Measure · verified adjacent
evidence
Section Govern / Measure functions
Why NIST AI RMF Govern / Measure functions: cultivate and operate a culture of AI risk management, with policies, roles, accountability, and oversight; analyse, assess, benchmark, and monitor the AI risks and impacts. "Protect humans from being deceived by an agent" is a corresponding measurement and monitoring activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.8.2 (system documentation and information for users) · verified adjacent
OWASP
ASI09 Human-Agent Trust Exploitation · verified direct
evidence
Section OWASP ASI09
Why Protect humans from being deceived by an agent addresses OWASP ASI09 Human-Agent Trust Exploitation.
Verified 2026-06-22
OWASP AISVS
C7.4.1-C7.4.2 (non-fabricated source attribution); C7.4.4 (AI-content watermarking) · indicative partial
evidence
Section AISVS v1.0, C7 Model Behavior & Output Control
Why Protecting humans from agent deception relates loosely to AISVS source attribution and content watermarking, hence indicative.
Verified 2026-06-24
IMDA MGF
§2.2.2 (guard against automation bias & anthropomorphic deception) · verified direct
evidence
Section IMDA MGF §2.2.2
Why Protect humans from being deceived by an agent maps to IMDA MGF guard against automation bias & anthropomorphic deception.
Verified 2026-06-24
AWS Scoping
Orchestration · indicative
Standard / protocol

output provenance & trust indicators to humans · anti-impersonation labelling · approval-channel integrity

Implemented by · by type
Otherframework-level
Covered by · vendor features, factual coverage not endorsement
HYPR productadjacentclaimed· verified
HYPR Affirm — identity verification with liveness / anti-deepfake proofing
Adjacent to GV-07: defends the human identity-verification and account-recovery path against AI-generated impersonation (deepfakes, presentation attacks) and help-desk social engineering. GV-07 concerns agents deceiving humans; HYPR addresses attackers impersonating humans, a related but distinct deception surface.
evidence
Section Facial recognition with liveness / anti-spoofing
Why HYPR documents anti-spoof and liveness identity proofing. It maps adjacently to GV-07 (protecting humans from deception) but targets impersonation of humans rather than deception by an agent. Basis is claimed: no independent biometric or presentation-attack benchmark (e.g. NIST FRVT, iBeta PAD) was located for the Affirm engine.
Verified 2026-06-26
Across the network · composes across Apeiris domains
Source guidance
OWASP Top 10 for Agentic Applications 2026OpenAI, Practices for Governing Agentic AI Systems (oversight, interruptibility, accountability)
GV-08Make high-impact actions transactional, atomic, idempotent, state-checkedTreat risky agent actions like bank transactions: re-check permissions and state right before committing, and never double-apply the same action.ASI08 · ASI03In asynchronous multi-agent systems, a prompt-injected or malfunctioning agent can flood the orchestrator and commit a state change in the gap before a parallel authorization revocation propagates, a time-of-check/time-of-use race. Continuous authorization (IA-04) and velocity caps (GV-06) reduce but do not close this seam.elevatedthesisctrl
Threat it stops

ASI08 · ASI03 In asynchronous multi-agent systems, a prompt-injected or malfunctioning agent can flood the orchestrator and commit a state change in the gap before a parallel authorization revocation propagates, a time-of-check/time-of-use race. Continuous authorization (IA-04) and velocity caps (GV-06) reduce but do not close this seam.

matters most for · Irreversibility
builds on ·
Enforcement point · where it runs

Transaction layer at the action sink: idempotency key + authorization/state recheck at the moment of commit.

How to implement

High-impact agent actions behave like database transactions: atomic, idempotent (each carries an idempotency key so a replay or flood cannot double-apply it), and re-checked against the current control-plane state (authorization, budget, prior actions) at commit time, not just when the action was planned. A revocation that lands during execution aborts the commit. Applying distributed-systems transaction discipline to agent actions is this matrix’s own thesis.

  1. Assign an idempotency key to each high-impact action so retries or floods cannot double-apply it.
  2. Re-verify authorization and state at commit time (TOCTOU-safe), not only at plan time.
  3. Make the mutation atomic against a unified control-plane state; abort if a revocation or budget breach landed mid-flight.
  4. Serialize or lock conflicting actions across asynchronous agents.
Response lever · when it fires

abort commit — abort if a revocation landed mid-flight; never double-apply the same action

Avoid
  • ✗ committing a planned action without re-checking current authorization
  • ✗ no idempotency key, so a flood double-applies an action
  • ✗ asynchronous agents mutating the same asset with no isolation
How to validate it

Design check, is it configured?

  • Confirm high-impact actions carry idempotency keys and re-verify authorization plus state at commit time against a unified control-plane. [src]

Runtime test, does it hold under attack?

  • Revoke an agent’s permission mid-action and flood the orchestrator with duplicate calls; confirm the action neither commits post-revocation nor double-applies. [unverified]

Evidence, what proves it over time?

  • Transaction logs showing idempotency keys, commit-time authorization checks, and aborted commits on revocation. [unverified]
Detection signal · what to alert on

telemetry · idempotency_keyauth_recheck_resultstate_version_at_commit

Baseline: single-apply per idempotency key

Alert: a duplicate key, or a revocation that landed between check and commit

ATLAS · AML.T0101 (Data Destruction via AI Agent Tool Invocation); ATLAS mitigations: AML.M0029 (Human In-the-Loop for AI Agent Actions), AML.M0026 (Privileged AI Agent Permissions Configuration)

By team

Engineering
Give high-impact actions idempotency keys; re-check authz and state at commit, not plan, time; make mutations atomic.

Detection Eng
Alert on duplicate / replayed high-impact actions and on commits that land after a revocation.

Red Team
Flood the orchestrator and race a revocation against an in-flight action to double-apply or commit post-revocation.

GRC
Transaction logs evidence that actions were atomic and re-authorized at commit.

SecOps / IR
Idempotency plus commit-time checks stop a flooded or hijacked agent from racing past revocation.

Standards crosswalk
CSA AICM
IAM-15 (authorization mechanisms); GRC (Governance, Risk & Compliance) · verified partial
evidence
CSA AISMM
IAM-05.2, APP-04.2 · verified direct
evidence
Section CSA AISMM IAM-05.2, APP-04.2
Why Make high-impact actions transactional, atomic, idempotent, state-checked maps to AISMM control(s) IAM-05.2, APP-04.2.
Verified 2026-06-22
NIST
AI RMF: Manage · verified adjacent
evidence
Section Manage function
Why NIST AI RMF Manage function: prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Make high-impact actions transactional, atomic, idempotent, state-checked" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.9.2 (responsible use of AI systems) · verified adjacent
OWASP
ASI08 Cascading Agent Failures; ASI03 Identity & Privilege Abuse · verified direct
evidence
Section OWASP ASI08, ASI03
Why Make high-impact actions transactional, atomic, idempotent, state-checked addresses OWASP ASI08 Cascading Agent Failures; ASI03 Identity & Privilege Abuse.
Verified 2026-06-22
OWASP AISVS
C9.2.8 (nonce-bound approvals); C9.2.3-C9.2.4 (irreversibility handling) · indicative partial
evidence
Section AISVS v1.0, C9 Orchestration & Agentic Action
Why Transactional, idempotent high-impact actions relate to AISVS nonce-bound approvals and irreversibility handling, hence indicative.
Verified 2026-06-24
MITRE ATLAS
AML.T0101 (Data Destruction via AI Agent Tool Invocation); ATLAS mitigations: AML.M0029 (Human In-the-Loop for AI Agent Actions), AML.M0026 (Privileged AI Agent Permissions Configuration) · verified direct
evidence
Section MITRE ATLAS techniques AML.T0101; mitigations AML.M0029, AML.M0026
Why Make high-impact actions transactional, atomic, idempotent, state-checked addresses ATLAS technique(s) Data Destruction via AI Agent Tool Invocation; implements ATLAS mitigation(s) Human In-the-Loop for AI Agent Actions, Privileged AI Agent Permissions Configuration.
Verified 2026-06-24
IMDA MGF
§2.2.2 (deny action by default when approval infrastructure fails) · indicative adjacent
evidence
Section IMDA MGF §2.2.2
Why Make high-impact actions transactional, atomic, idempotent, state-checked maps to IMDA MGF deny action by default when approval infrastructure fails.
AWS Scoping
Data, memory & state protection · indicative
Standard / protocol

transactional state isolation · idempotency keys · atomic commit verified against unified control-plane state

GV-09Anchor a named business owner to every agent (accountability)Tie every agent to a real, named person in the business who is accountable for it before it ships.threatWhen an autonomous loop causes a compliance violation, fragmented ownership between the engineering team that built the pipeline and the business unit that deployed it paralyzes incident response, the attribution crisis. A 2026 CSA survey found ownership fragmented across Security (39%), IT (32%), and AI (13%) functions, and 84% of organizations doubted they could pass an agent-behavior compliance audit.corepracticectrl
Threat it stops

When an autonomous loop causes a compliance violation, fragmented ownership between the engineering team that built the pipeline and the business unit that deployed it paralyzes incident response, the attribution crisis. A 2026 CSA survey found ownership fragmented across Security (39%), IT (32%), and AI (13%) functions, and 84% of organizations doubted they could pass an agent-behavior compliance audit.

matters most for · Irreversibility
builds on ·
Enforcement point · where it runs

Organizational accountability register binding a named line-of-business owner to each agent before deploy.

How to implement

Every production agent has a named line-of-business owner bound to its workload identity, with explicit legal and operational liability defined before deployment. Agent incidents resolve to that business owner plus the engineering owner via a documented RACI, closing the attribution gap.

  1. Assign a named business owner (line-of-business) and an engineering owner to every production agent.
  2. Bind the business-owner identity to the agent’s workload object (ties to IA-01).
  3. Define legal / operational liability and an incident RACI before deployment.
  4. Surface the owner in the agent registry and the audit trail (GV-02).
Avoid
  • ✗ an agent in production with no named business owner
  • ✗ ownership split with no defined incident RACI
  • ✗ accountability that only resolves to the platform team
How to validate it

Design check, is it configured?

  • Confirm every production agent has a named business owner bound to its workload identity, with pre-defined liability and an incident RACI. [src]

Runtime test, does it hold under attack?

  • Pick a random production agent and confirm you can resolve its business owner, engineering owner, and incident RACI within minutes. [unverified]

Evidence, what proves it over time?

  • Agent-registry entries showing business-owner binding and the incident RACI. [src]
By team

Engineering
Bind a named business-owner identity to each agent workload object; surface it in the registry.

Detection Eng
Flag production agents with no bound business owner.

Red Team
Find a high-impact agent and see whether anyone is clearly accountable for it.

GRC
Closes the CISA Accountability risk class and ISO A.3.2; owner binding plus RACI is the evidence.

SecOps / IR
Knowing the business and engineering owner instantly is what unblocks incident response.

Standards crosswalk
CSA AICM
GRC-06 (governance responsibility model); IAM-12 (uniquely identifiable principals) · verified partial
evidence
CSA AISMM
GOV-04.3, IAM-02.2 · indicative partial
evidence
Section CSA AISMM GOV-04.3, IAM-02.2
Why Anchor a named business owner to every agent (accountability) maps to AISMM control(s) GOV-04.3, IAM-02.2.
NIST
AI RMF: Govern · verified adjacent
evidence
Section Govern function
Why NIST AI RMF Govern function: cultivate and operate a culture of AI risk management, with policies, roles, accountability, and oversight. "Anchor a named business owner to every agent (accountability)" is a corresponding governance activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.3.2 (AI roles and responsibilities) · verified adjacent
OWASP
Accountability (CISA risk class; no clean ASI ID) · indicative direct
evidence
Section OWASP
Why Anchor a named business owner to every agent (accountability) addresses OWASP Accountability (CISA risk class; no clean ASI ID).
IMDA MGF
§2.2.1 (clear allocation of responsibility; use-case owner accountable) · verified direct
evidence
Section IMDA MGF §2.2.1
Why Anchor a named business owner to every agent (accountability) maps to IMDA MGF clear allocation of responsibility; use-case owner accountable.
Verified 2026-06-24
AWS Scoping
Audit & logging · indicative
Standard / protocol

business-owner identity bound to the agent workload · explicit pre-deployment legal / operational liability · incident RACI for agents

Implemented by · by type
Otherframework-level
Covered by · vendor features, factual coverage not endorsement
Oasis Security productdirectclaimed· verified
Ownership Attribution for non-human identities
Builds an ownership inventory across cloud, SaaS, and on-prem (enriched with CMDB data) and uses heuristics and ML to attribute an owner to each non-human identity, resolving gaps through certification campaigns.
evidence
Section Ownership
Why Oasis documents owner attribution and certification for non-human identities, which is the named-owner accountability GV-09 requires when applied to agent identities.
Verified 2026-06-26
Source guidance
CSA + Strata Identity — Securing Autonomous AI Agents (2026 survey, ~285 practitioners): 40% have agents in production, only 18% highly confident in agent IAM, 84% doubt passing an agent-behavior compliance audit, ownership fragmented across Security 39% / IT 32% / AI 13%ISO/IEC 42001:2023, AI management system (Annex A controls A.2-A.10)CISA — Careful Adoption of Agentic Artificial Intelligence (AI) Services (5 risk classes: privilege, design/config, behavioural, structural, accountability)
GV-10Enable end-user responsibility and guard against automation biasTell the people using the agent what it can do, train them to actually check it, and watch for rubber-stamping.threatEven with a human in the loop, oversight quietly fails. Users over-trust a system that has been reliable (automation bias), rubber-stamp approvals, lose the skill to judge the agent's work (tradecraft erosion), or were never clearly told they are dealing with an agent. The human checkpoint then becomes theatre, and the GV-01 hard-stop and IA-03 approval step inherit a weak link they were assumed to be strong.compensatingthesisctrl
Threat it stops

Even with a human in the loop, oversight quietly fails. Users over-trust a system that has been reliable (automation bias), rubber-stamp approvals, lose the skill to judge the agent's work (tradecraft erosion), or were never clearly told they are dealing with an agent. The human checkpoint then becomes theatre, and the GV-01 hard-stop and IA-03 approval step inherit a weak link they were assumed to be strong.

matters most for · AutonomyIrreversibility
builds on ·
Enforcement point · where it runs

The product / UX layer (AI disclosure, action-scope surfacing) plus an oversight-analytics pipeline over approval telemetry; sits outside the model loop.

How to implement

End users are equipped to exercise real oversight, and the organisation measures whether that oversight is actually working. At the point of interaction the user is told they are dealing with an agent and what it is allowed to do; reviewers are trained on the agent's failure modes; and approval telemetry is monitored for the signatures of automation bias (near-total approval rates, near-instant sign-offs) so a rubber-stamping checkpoint is caught rather than trusted.

  1. Disclose at the point of interaction that the user is dealing with an agent, and surface the agent's range of actions and data access.
  2. Train reviewers on the agent's common failure modes (hallucination, stale policy, loop-after-error) and on guarding their own tradecraft.
  3. Instrument approvals: track human override rate and review response time, and flag outlier reviewers whose decisions deviate from the norm.
  4. Re-tier, re-train, or rotate oversight when the metrics show rubber-stamping rather than judgement.
Response lever · when it fires

Re-tier / re-train / rotate oversight — When approval telemetry shows rubber-stamping, raise the review bar for that autonomy tier, retrain or rotate the reviewer, or fall back to a stricter approval mode until oversight is meaningful again.

Avoid
  • ✗ a human-approval step with no measurement of whether approvals are meaningful
  • ✗ users who are never told they are interacting with an agent
  • ✗ reviewers asked to approve actions they lack the domain expertise to judge
How to validate it

Design check, is it configured?

  • Confirm end users are told they are interacting with an agent at the point of interaction, and that reviewers of agent actions receive role-specific training on its failure modes. [src]

Runtime test, does it hold under attack?

  • Pull the approval telemetry for a deployed agent and check for automation-bias signatures: an override rate near zero, or review times too short to be a real decision. [src]

Evidence, what proves it over time?

  • Oversight-effectiveness dashboards (override rate, review response time, outlier-reviewer flags) trended over time, plus training-completion records. [src]
Detection signal · what to alert on

telemetry · risk_tieragent_confidenceevidence_packet_hashraw_evidence_availableapproval_override_ratereview_response_time_msreviewer_queue_depthground_truth_sample_resultappeal_or_reversal_ratereviewer_decision_distribution

Baseline: Per-reviewer and per-agent norms for override rate, review latency, and sampled correctness, weighted by task risk tier and the evidence actually shown to the reviewer.

Alert: Override rate trending to zero, review latency below a plausible human-decision floor, approvals made with no raw evidence available, a reviewer deviating sharply from peers, or sampled ground-truth showing rubber-stamped errors.

ATLAS · ATLAS mitigation: AML.M0018 (User Training)

By team

Engineering
Surface an in-product AI disclosure and action-scope notice; emit approval events (who, what, latency, decision) to the oversight pipeline.

Detection Eng
Alert on automation-bias signatures: override rate approaching zero, review latency below a human-decision floor, or a reviewer whose pattern is an outlier.

Red Team
Test whether a reviewer will rubber-stamp a subtly wrong action, and whether users can tell an agent from a human.

GRC
Closes the end-user-responsibility dimension (MGF 2.4) and the automation-bias risk; the override-rate and response-time metrics are the evidence.

SecOps / IR
When an approved action goes wrong, the oversight telemetry shows whether the checkpoint was real or theatre.

Standards crosswalk
CSA AISMM
GOV-03.3 (role-based AI training); GOV-04.3 (oversight escalation) · indicative partial
evidence
Section CSA AISMM GOV-03.3 (role-based AI training); GOV-04.3 (oversight escalation)
Why Enable end-user responsibility and guard against automation bias maps to AISMM control(s) GOV-03.3 (role-based AI training); GOV-04.3 (oversight escalation).
NIST
AI RMF: Govern · verified adjacent
evidence
Section Govern function
Why NIST AI RMF Govern function: cultivate and operate a culture of AI risk management, with policies, roles, accountability, and oversight. "Enable end-user responsibility and guard against automation bias" is a corresponding governance activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.9.2 (responsible use of AI systems) · verified adjacent
OWASP
Excessive Agency / Human-Agent Trust Exploitation (cross-ref GV-07; no clean ASI ID) · indicative direct
evidence
Section OWASP
Why Enable end-user responsibility and guard against automation bias addresses OWASP Excessive Agency / Human-Agent Trust Exploitation (cross-ref GV-07; no clean ASI ID).
OWASP AISVS
C9.2.2 (full, non-truncated action detail in approvals); C7.4.1 (source attribution) · indicative partial
evidence
Section AISVS v1.0, C9 Orchestration & Agentic Action; C7 Model Behavior & Output Control
Why End-user responsibility and the automation-bias guard map to AISVS full, non-truncated action detail in approvals, hence indicative.
Verified 2026-06-24
MITRE ATLAS
ATLAS mitigation: AML.M0018 (User Training) · verified supporting
evidence
Section MITRE ATLAS mitigations AML.M0018
Why Enable end-user responsibility and guard against automation bias implements ATLAS mitigation(s) User Training.
Verified 2026-06-24
IMDA MGF
§2.4 (enable end-user responsibility); §2.2.2 (audit human-oversight effectiveness; guard against automation bias) · verified direct
evidence
Section IMDA MGF §2.4, §2.2.2
Why Enable end-user responsibility and guard against automation bias maps to IMDA MGF enable end-user responsibility; audit human-oversight effectiveness; guard against automation bias.
Verified 2026-06-24
AWS Scoping
Orchestration · indicative
Standard / protocol

end-user transparency and AI-interaction disclosure · oversight-effectiveness metrics (override rate, review response time) · role-based training against automation bias and tradecraft loss

GV-11Plan recovery and compensation for actions the agent already committedWhen an agent has already changed something and you stop it, have a tested way to undo it or make good.threatPrevention and kill switches stop an agent going forward but do nothing about external state it has already changed: a sent email, a payment, a deployed config. Killing the compute loop (RT-04) does not revert in-flight or completed external effects, and transactional/idempotent actions (GV-08) prevent double-apply but are not rollback, restitution, or compensation. Without pre-planned recovery, a stopped agent can leave the business in a worse, half-finished state.practicectrl
Threat it stops

Prevention and kill switches stop an agent going forward but do nothing about external state it has already changed: a sent email, a payment, a deployed config. Killing the compute loop (RT-04) does not revert in-flight or completed external effects, and transactional/idempotent actions (GV-08) prevent double-apply but are not rollback, restitution, or compensation. Without pre-planned recovery, a stopped agent can leave the business in a worse, half-finished state.

matters most for · Irreversibility
builds on ·
Enforcement point · where it runs

A compensation layer at the action sink and orchestrator: pre-action snapshots, a reversible-operation classification, and Saga-style compensating workflows that fire on a hard-stop, with owner signoff and post-incident evidence packaging.

How to implement

Before an agent takes a high-impact action, classify whether it is reversible and snapshot the state it touches. Register a compensating workflow for each reversible operation, so that on a hard-stop or detected harm the orchestrator can safe-state open sessions and reverse completed effects; irreversible operations are escalated to a named owner with the evidence packaged for review.

  1. Classify each high-impact action as reversible, compensable, or irreversible before it runs.
  2. Snapshot the external state an action will change, and register a compensating workflow for reversible/compensable ones.
  3. On hard-stop (GV-01) or anomaly (RT-04), fire the compensating workflows to safe-state open sessions and reverse completed effects.
  4. Escalate irreversible effects to the named owner (GV-09) and package the action chain (IA-06) as post-incident evidence.
Response lever · when it fires

Fire compensation workflows — On a hard-stop or detected harm, run the pre-registered compensating transactions to safe-state open sessions and reverse reversible effects, escalate irreversible ones to the named owner, and package the evidence.

Avoid
  • ✗ a kill switch with no plan for state the agent already changed
  • ✗ treating idempotency (GV-08) as if it were rollback
  • ✗ no classification of which actions can actually be undone
How to validate it

Design check, is it configured?

  • Confirm high-impact actions are classified by reversibility and carry a registered compensating workflow or an owner-escalation path before they run. [src]

Runtime test, does it hold under attack?

  • Hard-stop an agent mid-task after it has committed an external change and confirm the compensating workflow safe-states the open session and reverses the reversible effects. [src]

Evidence, what proves it over time?

  • Recovery runbooks plus incident records showing compensations fired, irreversible effects escalated to the owner, and evidence packaged. [src]
By team

Engineering
Classify actions by reversibility, snapshot before high-impact writes, and register Saga-style compensating workflows fired on hard-stop.

Detection Eng
Track unreversed effects after a stop: completed external actions with no compensation fired.

Red Team
Drive an agent to commit an irreversible external action, then trigger a stop and see what is left half-finished.

GRC
Recovery and restitution is the gap after prevention and kill; the evidence is runbooks, reversibility classes, and incident compensations.

SecOps / IR
When you stop a runaway agent, the compensation layer is what returns the systems it touched to a safe state.

Standards crosswalk
CSA AISMM
IR-02.1 (AI incident response team); INF-04.3 (resilience of AI stateful components) · indicative partial
evidence
Section CSA AISMM IR-02.1 (AI incident response team); INF-04.3 (resilience of AI stateful components)
Why Plan recovery and compensation for actions the agent already committed maps to AISMM control(s) IR-02.1 (AI incident response team); INF-04.3 (resilience of AI stateful components).
NIST
AI RMF: Manage · verified adjacent
evidence
Section Manage function
Why NIST AI RMF Manage function: prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Plan recovery and compensation for actions the agent already committed" is a corresponding risk-treatment activity.
Verified 2026-06-27
OWASP
Cascading failures / recovery (ASI08 adjacent; no clean ASI ID) · indicative direct
evidence
Section OWASP ASI08
Why Plan recovery and compensation for actions the agent already committed addresses OWASP Cascading failures / recovery (ASI08 adjacent; no clean ASI ID).
OWASP AISVS
C3.3.1-C3.3.2 (automated rollback and full state restoration); C9.2.3 (reversibility classification) · indicative partial
evidence
Section AISVS v1.0, C3 Model Lifecycle Management; C9 Orchestration & Agentic Action
Why Recovery and compensation relate to AISVS automated rollback and reversibility classification, which is model-rollback, hence indicative.
Verified 2026-06-24
IMDA MGF
§2.3.3 (failsafe mechanisms; intervention up to fallback) · indicative adjacent
evidence
Section IMDA MGF §2.3.3
Why Plan recovery and compensation for actions the agent already committed maps to IMDA MGF failsafe mechanisms; intervention up to fallback.
AWS Scoping
Orchestration · indicative
Standard / protocol

reversible-operation classification · Saga-style compensating transactions · pre-action snapshots and restore

05Runtime Supervision & Detection8 controls
RT-01Capture OS-level telemetry of what the agent actually doesWatch the agent from the operating system, because that's the only place you can see everything it does.threatAgents run as child processes with the user's full privileges, so network- and application-layer tools can't see what they really do. Only OS-level telemetry captures the full picture, which is why the endpoint is the runtime enforcement point.coreproductdata
Threat it stops

Agents run as child processes with the user's full privileges, so network- and application-layer tools can't see what they really do. Only OS-level telemetry captures the full picture, which is why the endpoint is the runtime enforcement point.

matters most for · Autonomy
builds on ·
Enforcement point · where it runs

Host EDR sensor at the OS layer (process tree, file, network), each event stamped with the agent identity.

How to implement

Endpoint detection and response (EDR) captures the agent's full process tree, file I/O, and network activity at the OS level, so you can see an agent process spawn an unauthorised shell or call a binary outside its manifest, which network and app layers miss. OS-level EDR is the right source only where you control the host; for SaaS-hosted, managed-platform, MCP/A2A-brokered, and serverless agents there is no host OS to instrument, so match the telemetry to the deployment mode (see the per-mode table).

  1. Run EDR on hosts where agents execute; capture process lineage, file I/O, and network telemetry.
  2. Tie telemetry to the agent's distinct identity (IA-01) so you know which agent did what.
  3. Baseline normal agent behaviour so anomalies (RT-04) stand out.
  4. Protect the telemetry itself: it now holds prompts, tool parameters, and identities, so access-control the store, minimise sensitive content, and treat it as a high-value target (this telemetry is part of the security layer the third open gap warns about).
  5. Integrate agent tracing with existing observability such as OpenTelemetry across the user-agent, agent-tool, and model-reasoning layers, so the logs are analysable rather than merely voluminous (IMDA MGF).
Telemetry by deployment mode
Endpoint / workstation agent
EDR, process tree, shell history, browser-automation events
Container / VM agent
eBPF, container runtime, syscall, network, file events
SaaS-hosted / managed platform
IdP logs, API-gateway logs, tool-gateway logs, SaaS audit logs
MCP / A2A-brokered agent
protocol-proxy logs, token-broker logs, Agent-Card verification, tool-call traces
Serverless agent
cloud audit logs, function-invocation logs, policy-decision logs
Avoid
  • ✗ relying only on network/app logs that can't see the agent process
  • ✗ telemetry not tied to a specific agent identity
  • ✗ no OS-level visibility on hosts running agents
  • ✗ collecting sensitive agent telemetry into an unprotected store that becomes its own breach path
How to validate it

Design check, is it configured?

  • Confirm OS-level telemetry (process lineage, file I/O, network) is captured on agent hosts and tied to agent identity. [src]

Runtime test, does it hold under attack?

  • Have an agent spawn an unsanctioned shell or call a binary outside its manifest; confirm EDR captures the full process tree and flags it. [src]

Evidence, what proves it over time?

  • EDR process-lineage records per agent run, retained as the OS-level activity trail. [src]
Detection signal · what to alert on

telemetry · agent_idrun_idgoal_idprompt_hashtool_call_idparent_trace_idprocess_treechild_processfile_opsnet_callscapability_bindingmemory_object_id

Baseline: The sanctioned process / file / network profile for the agent, correlated to run_id and goal_id so low-level OS events resolve to high-level agent intent.

Alert: An unsanctioned shell or child process, file / network access outside scope, or an OS action that cannot be correlated to a known run_id / tool_call_id (process activity with no agent-intent provenance).

ATLAS · ATLAS mitigation: AML.M0024 (AI Telemetry Logging)

By team

Engineering
Deploy EDR on agent hosts and correlate process trees to agent identities.

Detection Eng
Build detections on agent process lineage, unsanctioned shells, off-manifest binaries, unexpected child processes.

Red Team
Have the agent live-off-the-land (spawn shells, call system tools) and see if OS telemetry catches it.

GRC
OS-level activity records evidence that agent behaviour is actually observed, not assumed.

SecOps / IR
Process lineage is what lets you scope and contain a compromised agent host.

Standards crosswalk
CSA AICM
LOG-03 (security monitoring and alerting); LOG-09 (log records) · verified partial
evidence
CSA AISMM
MON-02.1, MON-03.1, INF-04.1 · verified direct
evidence
Section CSA AISMM MON-02.1, MON-03.1, INF-04.1
Why Capture OS-level telemetry of what the agent actually does maps to AISMM control(s) MON-02.1, MON-03.1, INF-04.1.
Verified 2026-06-22
NIST
AI RMF: Measure · verified adjacent
evidence
Section Measure function
Why NIST AI RMF Measure function: analyse, assess, benchmark, and monitor the AI risks and impacts. "Capture OS-level telemetry of what the agent actually does" is a corresponding measurement and monitoring activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.6.2.6 (AI system operation and monitoring) · verified adjacent
OWASP
Observability (MAESTRO L5 Evaluation & Observability) · indicative direct
evidence
Section OWASP
Why Capture OS-level telemetry of what the agent actually does addresses OWASP Observability (MAESTRO L5 Evaluation & Observability).
OWASP AISVS
C12.1.1 (log agent actions with telemetry); C12.1.3 (structured, interoperable schema) · verified direct
evidence
Section AISVS v1.0, C12 Monitoring, Logging & Anomaly Detection
Why OS-level telemetry of agent actions is the AISVS logging of agent actions with a structured, interoperable schema.
Verified 2026-06-24
MITRE ATLAS
ATLAS mitigation: AML.M0024 (AI Telemetry Logging) · verified supporting
evidence
Section MITRE ATLAS mitigations AML.M0024
Why Capture OS-level telemetry of what the agent actually does implements ATLAS mitigation(s) AI Telemetry Logging.
Verified 2026-06-24
IMDA MGF
§2.3.3 (multi-layer monitoring; OpenTelemetry tracing) · verified direct
evidence
Section IMDA MGF §2.3.3
Why Capture OS-level telemetry of what the agent actually does maps to IMDA MGF multi-layer monitoring; OpenTelemetry tracing.
Verified 2026-06-24
AWS Scoping
Audit & logging · indicative
Standard / protocol

OpenTelemetry tracing across the user-agent, agent-tool, and model-reasoning layers · EDR · process lineage · file I/O + network telemetry

RT-02Detect direct and indirect prompt injection at every input and outputScan what goes into and out of the agent for hidden instructions trying to hijack it.ASI01Injection arrives via code comments, config files, repository content, web pages, or poisoned tool responses, and redirects the agent's goal.coreproductdata
Threat it stops

ASI01 Injection arrives via code comments, config files, repository content, web pages, or poisoned tool responses, and redirects the agent's goal.

matters most for · External reach
Enforcement point · where it runs

In-path guardrails on both inputs and outputs, blocking or quarantining suspected hijacks before the agent acts.

How to implement

Guardrails inspect both inputs and outputs for injection in real time, redact sensitive data, and block or quarantine suspected hijack attempts before the agent acts on them.

  1. Inspect every input (including retrieved/tool content) and output for injection patterns.
  2. Redact sensitive data at the boundary.
  3. Block or quarantine suspected injections and surface them for review.
Response lever · when it fires

block / quarantine — stop or quarantine a suspected hijack before the agent acts on it

Avoid
  • ✗ scanning only the user prompt, not tool/retrieved content
  • ✗ no output-side inspection
  • ✗ guardrails that fail open when overloaded
How to validate it

Design check, is it configured?

  • Confirm injection inspection runs on inputs (incl. tool/retrieved content) and outputs, with redaction at the boundary. [src]

Runtime test, does it hold under attack?

  • Run a prompt-injection eval suite and report the attack-success-rate before vs after the guardrail, against a threshold. Use AgentDojo and garak probes. [src]

Evidence, what proves it over time?

  • Guardrail decision logs (blocked/redacted/allowed) and periodic injection-eval reports with attack-success-rate. [src]
Detection signal · what to alert on

telemetry · content_channeltrust_boundaryinput_sourceretrieved_doc_idtool_result_idinjection_scoreinstruction_override_attemptattack_familyblocked_actionlater_successagent_id

Baseline: An injection eval suite (e.g. AgentDojo / InjecAgent) run over realistic tasks, tracked as attack-success-rate and false-positive-rate rather than a single classifier threshold; plus each agent's normal trust-boundary mix of inputs.

Alert: Tool-returned or retrieved content carrying imperative instructions that conflict with the system prompt, especially crossing from a lower-trust boundary; an injection score over threshold; or a delayed success where an earlier benign-looking input later drives a disallowed action. Covers text and multimodal (image / audio / document) input streams.

ATLAS · AML.T0051 (LLM Prompt Injection); ATLAS mitigations: AML.M0015 (Adversarial Input Detection), AML.M0020 (Generative AI Guardrails)

By team

Engineering
Wrap the agent in input+output injection guardrails; redact secrets at the boundary; fail closed.

Detection Eng
Alert on detected injection attempts and track attack-success-rate over time.

Red Team
Run AgentDojo/garak injection suites and report ASR before vs after the guardrail; also deliver injection via untrusted-workspace files such as code comments and config (Plaskett).

GRC
Injection-eval reports evidence the control is measured, not assumed.

SecOps / IR
Real-time injection blocking stops a hijack before the agent executes the attacker's goal.

Standards crosswalk
CSA AICM
LOG-03 (security monitoring and alerting); AIS-09 (input validation) · verified partial
evidence
CSA AISMM
MON-03.2, MON-04.2 · verified direct
evidence
Section CSA AISMM MON-03.2, MON-04.2
Why Detect direct and indirect prompt injection at every input and output maps to AISMM control(s) MON-03.2, MON-04.2.
Verified 2026-06-22
NIST
AI RMF: Measure, Manage · verified adjacent
evidence
Section Measure / Manage functions
Why NIST AI RMF Measure / Manage functions: analyse, assess, benchmark, and monitor the AI risks and impacts; prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Detect direct and indirect prompt injection at every input and output" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.6.2.6 (AI system operation and monitoring) · verified adjacent
OWASP
ASI01 Agent Goal Hijack; LLM01:2025 Prompt Injection · verified direct
evidence
Section OWASP ASI01, LLM01
Why Detect direct and indirect prompt injection at every input and output addresses OWASP ASI01 Agent Goal Hijack; LLM01:2025 Prompt Injection.
Verified 2026-06-22
OWASP AISVS
C2.1.3 (injection detection on all steering inputs); C12.2.1 (alert on injection and jailbreak); C10.4.2 (screen tool results for indirect injection) · verified direct
evidence
Section AISVS v1.0, C2 Input Validation; C12 Monitoring, Logging & Anomaly Detection; C10 MCP Security
Why Detecting direct and indirect prompt injection is the AISVS injection detection on steering inputs and tool results.
Verified 2026-06-24
MITRE ATLAS
AML.T0051 (LLM Prompt Injection); ATLAS mitigations: AML.M0015 (Adversarial Input Detection), AML.M0020 (Generative AI Guardrails) · verified direct
evidence
Section MITRE ATLAS techniques AML.T0051; mitigations AML.M0015, AML.M0020
Why Detect direct and indirect prompt injection at every input and output addresses ATLAS technique(s) LLM Prompt Injection; implements ATLAS mitigation(s) Adversarial Input Detection, Generative AI Guardrails.
Verified 2026-06-24
IMDA MGF
§2.3.1 (input validation for injection); §2.1.1 (prompt-injection threat modelling) · indicative adjacent
evidence
Section IMDA MGF §2.3.1, §2.1.1
Why Detect direct and indirect prompt injection at every input and output maps to IMDA MGF input validation for injection; prompt-injection threat modelling.
AWS Scoping
Agent & foundation-model controls · indicative
Standard / protocol

prompt inspection · I/O guardrails · sensitive-data redaction

RT-03Supervise the agent's reasoning and check it matches its actionsCompare what the agent says it will do with the tool calls and effects it actually produces; don't treat its visible reasoning as ground truth.ASI01A well-aligned model can be hijacked at run time, or its stated reasoning can drift from what it actually does. Treat the agent itself as a potential insider threat, assurance shouldn't depend on alignment being perfect.compensatingemergingemergingdata
Threat it stops

ASI01 A well-aligned model can be hijacked at run time, or its stated reasoning can drift from what it actually does. Treat the agent itself as a potential insider threat, assurance shouldn't depend on alignment being perfect.

matters most for · Autonomy
builds on ·
Enforcement point · where it runs

A separate, constrained supervisor model running over the agent's reasoning-and-action stream, outside the agent it watches.

How to implement

A trusted supervisor compares the agent's declared plan against its actual tool calls and real-world effects (not its visible chain-of-thought, which may be unfaithful), and escalates through DeepMind's detection tiers D1-D4 (the tier set by how capable the agent is at evading detection). This matrix's compensating control is the dual-model design: run the supervisor on a separate, more constrained model — separate and constrained is the load-bearing property, not merely smaller — to reduce the shared attack surface. This is defence-in-depth, not a proof of immunity, and it does not by itself secure the security layer; D1-D4 belongs to DeepMind.

  1. Run a supervisor over the agent's reasoning and action stream (D1-D4 detection tiers).
  2. Capture reasoning traces distinctly from action logs and flag where stated intent diverges from action.
  3. Run the supervisor on a separate, smaller, constrained model to reduce shared attack surface (matrix thesis, not provably immune).
  4. Escalate to response tiers (see RT-04) when divergence or evasion is detected.
  5. Complement the supervisor with agents that monitor other agents in real time (reflection or LLM-judge nodes), flagging where an agent's output diverges from its retrieved evidence (IMDA MGF).
Avoid
  • ✗ monitoring only actions, never the reasoning that drove them
  • ✗ running the monitor on the same model and context as the agent it watches
  • ✗ claiming a monitor is 'immune' to hijack
How to validate it

Design check, is it configured?

  • Confirm a supervisor reviews reasoning + action, that reasoning traces are captured distinctly, and that the monitor runs outside the supervised agent's trust domain. [src]

Runtime test, does it hold under attack?

  • Stage an intent-vs-action divergence (the agent says one thing, does another) and confirm the supervisor detects and escalates it. [src]

Evidence, what proves it over time?

  • Supervisor detection logs with the tier (D1-D4) and the divergence that triggered escalation. [src]
Detection signal · what to alert on

telemetry · agent_idstated_intent_hashexecuted_tool_sinkparameter_entropymonitor_visibility_modemodel_access_levelcoveragerecalltime_to_responseoversight_evasion_eval_score

Baseline: Each agent's normal intent-to-action mapping (from multi-turn testing), plus the supervisor's measured coverage / recall and its score on an oversight-evasion evaluation.

Alert: The executed tool sink maps outside the stated-intent vector; the anomaly score breaks variance; or the oversight-evasion eval degrades (the agent may be learning to appease the monitor). Fall back to behavioral / internal-state checks (RT-08) when visible reasoning cannot be trusted.

By team

Engineering
Add a separate supervisor model over the agent's reasoning+action stream; flag intent-vs-action mismatches.

Detection Eng
Alert when the agent's actions diverge from its stated plan, or the supervisor goes quiet.

Red Team
Try to make the agent act against its stated intent without the supervisor noticing; attack the supervisor itself.

GRC
Supervisor logs evidence that reasoning was monitored, not just outputs.

SecOps / IR
Reasoning-vs-action divergence is an early signal of a hijack in progress.

Standards crosswalk
CSA AICM
LOG-05 (audit logs monitoring and response) · verified partial
evidence
CSA AISMM
MON-04.1, MON-05.2 · verified direct
evidence
Section CSA AISMM MON-04.1, MON-05.2
Why Supervise the agent's reasoning and check it matches its actions maps to AISMM control(s) MON-04.1, MON-05.2.
Verified 2026-06-22
NIST
AI RMF: Measure, Manage · verified adjacent
evidence
Section Measure / Manage functions
Why NIST AI RMF Measure / Manage functions: analyse, assess, benchmark, and monitor the AI risks and impacts; prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Supervise the agent's reasoning and check it matches its actions" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.6.2.6 (AI system operation and monitoring) · verified adjacent
OWASP
ASI01 Agent Goal Hijack · verified direct
evidence
Section OWASP ASI01
Why Supervise the agent's reasoning and check it matches its actions addresses OWASP ASI01 Agent Goal Hijack.
Verified 2026-06-22
OWASP AISVS
C9.2.6 (AI-augmented review of planned actions); C9.2.7 (harden the reviewer against injection) · verified direct
evidence
Section AISVS v1.0, C9 Orchestration & Agentic Action
Why Supervising reasoning against actions is the AISVS AI-augmented review of planned actions, with the reviewer hardened against injection.
Verified 2026-06-24
IMDA MGF
§2.3.1 (Planning: log & verify reasoning); §2.3.3 (monitor model-reasoning layer) · verified direct
evidence
Section IMDA MGF §2.3.1, §2.3.3
Why Supervise the agent's reasoning and check it matches its actions maps to IMDA MGF Planning: log & verify reasoning; monitor model-reasoning layer.
Verified 2026-06-24
AWS Scoping
Agent & foundation-model controls · indicative
Standard / protocol

agents monitoring other agents (reflection or LLM-judge nodes) · reasoning-chain monitoring · intent-vs-action consistency check · escalating detection tiers (D1-D4)

RT-04Detect anomalies and trigger pause, kill switch, or containmentSpot when the agent goes off the rails and be able to pause or stop it instantly.ASI10An action that can't be verified against its provenance, or lateral movement in progress, needs an immediate stop, and sometimes a graceful pause for review rather than a hard kill.coreproductdata
Threat it stops

ASI10 An action that can't be verified against its provenance, or lateral movement in progress, needs an immediate stop, and sometimes a graceful pause for review rather than a hard kill.

matters most for · AutonomyIrreversibility
builds on ·
Enforcement point · where it runs

Pause / kill / isolate switch enforced outside the agent and made dependency-aware (revokes tokens, kills tool-side jobs).

How to implement

Behavioural anomalies trigger graduated response (DeepMind R1-R3): a graceful pause for human review, a hard kill on provenance failure, or endpoint isolation / circuit breakers for lateral movement. Interruptibility (pause/suspend) is treated as distinct from termination.

  1. Define anomaly triggers (unverifiable action, lateral movement, divergence from RT-03).
  2. Provide a graceful pause/suspend-for-review as well as a hard kill (interruptibility, not only termination).
  3. Wire kill-on-provenance-failure and endpoint isolation as graduated responses (R1-R3).
  4. Rehearse the kill switch in a timed drill so it actually contains.
Response lever · when it fires

pause / kill / isolate (dependency-aware) — enforced outside the agent; also invalidates delegated tokens and terminates tool-side jobs

Avoid
  • ✗ only a hard kill, no graceful pause for review
  • ✗ a kill switch never tested in a drill
  • ✗ containment that depends on the agent cooperating
How to validate it

Design check, is it configured?

  • Confirm graduated responses exist (pause, kill, isolate) and the kill switch is enforced outside the agent. [src]

Runtime test, does it hold under attack?

  • Run a timed kill-switch drill and a graceful-pause drill; confirm both actually contain the agent within the target time. [src]

Evidence, what proves it over time?

  • Drill records (trigger, response tier, time-to-contain) and logs of real containment events. [src]
By team

Engineering
Build pause + kill + isolate as graduated responses, enforced outside the agent; rehearse them.

Detection Eng
Feed anomalies (unverifiable actions, lateral movement) into automated response triggers.

Red Team
Trigger anomalies and time how fast containment actually engages; try to outrun the kill switch.

GRC
Drill records evidence that containment works on a known cadence.

SecOps / IR
This is your live stop button, graceful pause for review, hard kill for clear danger.

Standards crosswalk
CSA AICM
SEF-09 (incident records management); SEF-06 (event triage processes) · verified partial
evidence
CSA AISMM
IR-04.3, IR-05.1 · verified direct
evidence
Section CSA AISMM IR-04.3, IR-05.1
Why Detect anomalies and trigger pause, kill switch, or containment maps to AISMM control(s) IR-04.3, IR-05.1.
Verified 2026-06-22
NIST
AI RMF: Manage · verified adjacent
evidence
Section Manage function
Why NIST AI RMF Manage function: prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Detect anomalies and trigger pause, kill switch, or containment" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.6.2.6 (AI system operation and monitoring) · verified adjacent
OWASP
ASI10 Rogue Agents (containment) · verified direct
evidence
Section OWASP ASI10
Why Detect anomalies and trigger pause, kill switch, or containment addresses OWASP ASI10 Rogue Agents (containment).
Verified 2026-06-22
OWASP AISVS
C12.2.2 (anomaly detection); C9.3.8 (automated tool containment); C9.6.1 (kill-switch) · verified direct
evidence
Section AISVS v1.0, C12 Monitoring, Logging & Anomaly Detection; C9 Orchestration & Agentic Action
Why Anomaly detection driving pause or kill maps to AISVS anomaly detection, automated tool containment, and kill-switch.
Verified 2026-06-24
IMDA MGF
§2.3.3 (alert thresholds, interventions up to termination & fallback) · verified direct
evidence
Section IMDA MGF §2.3.3
Why Detect anomalies and trigger pause, kill switch, or containment maps to IMDA MGF alert thresholds, interventions up to termination & fallback.
Verified 2026-06-24
AWS Scoping
Orchestration · indicative
Standard / protocol

graceful interruption (pause for review) · kill switch on provenance failure · endpoint isolation / circuit breakers · response tiers (R1-R3)

Implemented by · by type
ProductsCrowdStrike product
Research & guidanceGoogle / DeepMind research
Covered by · vendor features, factual coverage not endorsement
Oasis Security productpartialclaimed· verified
Oasis Scout — ITDR for non-human identities (AuthPrint anomaly detection)
Continuously monitors non-human identities to detect leaked credentials, unauthorized access, and account takeover, matching anomalous activity to known threat-actor fingerprints (AuthPrint) and raising high-fidelity alerts.
evidence
Section Oasis Scout / AuthPrint
Why Oasis documents continuous anomaly and threat detection for NHIs with fingerprint matching, which aligns with the detection half of RT-04 (detect anomalies for an agent identity). Partial because the source emphasizes detection and alerting rather than the automated pause, kill switch, or containment response RT-04 also requires.
Verified 2026-06-26
Across the network · composes across Apeiris domains
Source guidance
Google DeepMind, Securing the future of AI agents (AI Control Roadmap; detection tiers D1-D4, response tiers R1-R3; internal agents as insider threat)CrowdStrike, Securing AI Where It Executes / Falcon AIDR (endpoint as runtime enforcement point; OS process-lineage) claimOpenAI, Practices for Governing Agentic AI Systems (oversight, interruptibility, accountability)CSA AI Security Maturity Model (AISMM) v3.7 — flagship CSA maturity model (2026-05-07) with a per-control AICM v1.0.3 crosswalkNIST / FedRAMP fast-track agentic-AI policy direction (expected/forthcoming): cryptographic agent identity (SPIFFE/DID) + mandatory pre-execution checks / kill-switches for high-stakes automation claim
RT-05Apply data-loss prevention to agent egress and interactionsCatch sensitive data on its way out before the agent leaks it.threatCredentials, regulated data, or proprietary content can be exposed through an agent's actions and outputs.STAR AIproductdata
Threat it stops

Credentials, regulated data, or proprietary content can be exposed through an agent's actions and outputs.

matters most for · Data sensitivity
Enforcement point · where it runs

DLP engine inspecting egress and interactions, a second net behind the containment-layer network filter.

How to implement

Data-loss prevention inspects agent egress and interactions for sensitive content, blocking or redacting credentials, regulated data, and proprietary content before they leave.

  1. Run DLP/content inspection on agent outputs and egress.
  2. Block or redact credentials, regulated data, and proprietary content.
  3. Record sessions for high-risk agents to support review and investigation.
Response lever · when it fires

block / redact — block or redact sensitive content on its way out

Avoid
  • ✗ no content inspection on agent output
  • ✗ DLP only on email/file channels, not agent egress
  • ✗ logging that itself captures secrets in the clear
How to validate it

Design check, is it configured?

  • Confirm DLP/content inspection covers agent egress and interactions, with redaction of sensitive data. [src]

Runtime test, does it hold under attack?

  • Have the agent attempt to send a planted credential / regulated record; DLP must block or redact it (complements EC-02 egress). [src]

Evidence, what proves it over time?

  • DLP event logs (blocked/redacted) tied to the agent identity and session. [src]
Detection signal · what to alert on

telemetry · egress_content_classdlp_matchredaction_actionagent_id

Baseline: the data classes each agent is allowed to emit

Alert: credentials, regulated, or proprietary data detected in egress

ATLAS · AML.T0057 (LLM Data Leakage); AML.T0024 (Exfiltration via AI Inference API); AML.T0086 (Exfiltration via AI Agent Tool Invocation)

By team

Engineering
Insert DLP/content inspection on agent output and egress; redact secrets and regulated data.

Detection Eng
Alert on DLP hits in agent egress and on sensitive patterns in agent output.

Red Team
Try to exfiltrate planted regulated data and credentials through agent output.

GRC
DLP logs evidence that sensitive data didn't leave through the agent.

SecOps / IR
DLP is a second net behind egress filtering for data on the way out.

Standards crosswalk
CSA AICM
LOG-16 (output monitoring); DSP-17 (sensitive data protection) · verified partial
evidence
CSA AISMM
MON-04.3, DAT-03.3 · verified direct
evidence
Section CSA AISMM MON-04.3, DAT-03.3
Why Apply data-loss prevention to agent egress and interactions maps to AISMM control(s) MON-04.3, DAT-03.3.
Verified 2026-06-22
NIST
AI RMF: Manage · verified adjacent
evidence
Section Manage function
Why NIST AI RMF Manage function: prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Apply data-loss prevention to agent egress and interactions" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.6.2.6 (AI system operation and monitoring) · verified adjacent
OWASP
LLM02 Sensitive Information Disclosure · verified direct
evidence
Section OWASP LLM02
Why Apply data-loss prevention to agent egress and interactions addresses OWASP LLM02 Sensitive Information Disclosure.
Verified 2026-06-22
OWASP AISVS
C5.2.4 (post-inference filtering of unauthorized data); C7.3.2 (block sensitive disclosure); C12.2.6 (covert-channel monitoring) · verified direct
evidence
Section AISVS v1.0, C5 Access Control & Identity; C7 Model Behavior & Output Control; C12 Monitoring, Logging & Anomaly Detection
Why DLP on egress is the AISVS post-inference filtering of unauthorized data and covert-channel monitoring.
Verified 2026-06-24
MITRE ATLAS
AML.T0057 (LLM Data Leakage); AML.T0024 (Exfiltration via AI Inference API); AML.T0086 (Exfiltration via AI Agent Tool Invocation) · verified direct
evidence
Section MITRE ATLAS techniques AML.T0057, AML.T0024, AML.T0086
Why Apply data-loss prevention to agent egress and interactions addresses ATLAS technique(s) LLM Data Leakage, Exfiltration via AI Inference API, Exfiltration via AI Agent Tool Invocation.
Verified 2026-06-24
IMDA MGF
§2.3.1 (filter sensitive data at the MCP layer); §2.2.1 (data protection) · verified direct
evidence
Section IMDA MGF §2.3.1, §2.2.1
Why Apply data-loss prevention to agent egress and interactions maps to IMDA MGF filter sensitive data at the MCP layer; data protection.
Verified 2026-06-24
AWS Scoping
Data, memory & state protection · indicative
Standard / protocol

DLP · content inspection · session recording

RT-06Map AI-native threats, extend ATT&CK/ATLAS to agentic orchestrationTrack the new attacker moves that today's threat libraries don't fully name yet.threatMITRE ATLAS has begun adding agentic technique IDs (for example AML.T0053 (AI Agent Tool Invocation), AML.T0070 (RAG Poisoning), and AML.T0104 (Publish Poisoned AI Agent Tool)), but neither ATT&CK nor ATLAS yet has first-class IDs for autonomous killchain orchestration and real-time pivot decisioning. Anthropic's LLM ATT&CK Navigator (Jun 3 2026) found the highest-uplift actors are distinguished by their scaffolding, not their technique count: GTG-1002 hit a maximum risk score using a medium-tier technique count by wiring pentest tools into a coding agent and letting it run the killchain (832 banned accounts; 13,873 actions; 482 techniques across all 14 tactics).frontieremergingresearchdata
Threat it stops

MITRE ATLAS has begun adding agentic technique IDs (for example AML.T0053 (AI Agent Tool Invocation), AML.T0070 (RAG Poisoning), and AML.T0104 (Publish Poisoned AI Agent Tool)), but neither ATT&CK nor ATLAS yet has first-class IDs for autonomous killchain orchestration and real-time pivot decisioning. Anthropic's LLM ATT&CK Navigator (Jun 3 2026) found the highest-uplift actors are distinguished by their scaffolding, not their technique count: GTG-1002 hit a maximum risk score using a medium-tier technique count by wiring pentest tools into a coding agent and letting it run the killchain (832 banned accounts; 13,873 actions; 482 techniques across all 14 tactics).

matters most for · Autonomy
Enforcement point · where it runs

Your own threat model and ATLAS/ATT&CK mapping, scored additively (ARiES) so partial signals are not zeroed out.

How to implement

Map observed agentic attacks onto ATT&CK/ATLAS, adopt the new agentic ATLAS technique IDs as they land, and extend your own threat model for the orchestration-decisioning behaviours that still have no IDs. Score with an additive model (ARiES: Threat + Vulnerability + Impact) so partial attack-enablement signals stay visible instead of being zeroed out.

  1. Adopt ATLAS agentic technique IDs (e.g. AML.T0053 (AI Agent Tool Invocation) and AML.T0070 (RAG Poisoning)) as your baseline; verify exact IDs at atlas.mitre.org.
  2. Extend your threat model for autonomous orchestration / real-time pivot decisioning (labelled as your own, since no standard ID exists yet).
  3. Score risk additively (ARiES-style) so partial enablement isn't hidden by a multiplicative zero.
  4. Track the scaffolding actors build around the model, not just technique counts.
Avoid
  • ✗ assuming today's ATT&CK/ATLAS IDs fully cover agentic orchestration
  • ✗ multiplicative scoring that zeroes out partial-enablement signals
  • ✗ claiming 'no IDs exist' now that ATLAS has added agentic techniques
How to validate it

Design check, is it configured?

  • Confirm your threat model references current ATLAS agentic technique IDs and explicitly labels the orchestration-decisioning gap as un-IDed. [src]

Runtime test, does it hold under attack?

  • Replay an orchestration-style attack (tool-chained killchain) and confirm your detections and scoring surface it even when individual techniques look low-risk. [src]

Evidence, what proves it over time?

  • A maintained mapping of observed agentic attacks to ATLAS IDs, with the un-IDed orchestration behaviours flagged as the matrix's own extension. [src]
By team

Engineering
Tag your detections to ATLAS agentic technique IDs and add custom IDs for orchestration behaviours.

Detection Eng
Build detections for tool-chained killchains and real-time pivots, not just single techniques; score additively.

Red Team
Run an orchestration-style killchain (GTG-1002 pattern) and see whether scoring catches a medium-technique, max-risk attack.

GRC
An ATLAS-mapped threat model evidences current, AI-native threat coverage.

SecOps / IR
Watching scaffolding/orchestration catches the attacks that per-technique scoring rates as low.

Standards crosswalk
CSA AICM
LOG-05 (audit logs monitoring and response); TVM-05 (detection updates) · verified partial
evidence
CSA AISMM
MON-05.2, IR-04.1 · verified direct
evidence
Section CSA AISMM MON-05.2, IR-04.1
Why Map AI-native threats, extend ATT&CK/ATLAS to agentic orchestration maps to AISMM control(s) MON-05.2, IR-04.1.
Verified 2026-06-22
NIST
AI RMF: Map, Measure · verified adjacent
evidence
Section Map / Measure functions
Why NIST AI RMF Map / Measure functions: establish context and identify and categorise the AI risks; analyse, assess, benchmark, and monitor the AI risks and impacts. "Map AI-native threats, extend ATT&CK/ATLAS to agentic orchestration" is a corresponding measurement and monitoring activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.6.2.6 (AI system operation and monitoring; broad, does not codify tactical ATT&CK/ATLAS threat mapping) · indicative adjacent
OWASP
MITRE ATLAS (agentic technique IDs emerging); orchestration-decisioning IDs still missing · indicative direct
evidence
Section OWASP
Why Map AI-native threats, extend ATT&CK/ATLAS to agentic orchestration addresses OWASP MITRE ATLAS (agentic technique IDs emerging); orchestration-decisioning IDs still missing.
OWASP AISVS
C12.2.3 (custom detection rules for coordinated and novel attacks) · indicative partial
evidence
Section AISVS v1.0, C12 Monitoring, Logging & Anomaly Detection
Why Mapping AI-native threats relates to AISVS custom detection rules for coordinated and novel attacks, hence indicative.
Verified 2026-06-24
MITRE ATLAS
AML.T0053 (AI Agent Tool Invocation); AML.T0070 (RAG Poisoning); AML.T0080 (AI Agent Context Poisoning); AML.T0086 (Exfiltration via AI Agent Tool Invocation); AML.T0024/T0025 (Exfiltration); AML.T0104 (Publish Poisoned AI Agent Tool) · verified direct
evidence
Section MITRE ATLAS techniques AML.T0053, AML.T0070, AML.T0080, AML.T0086, AML.T0024, AML.T0104
Why Map AI-native threats, extend ATT&CK/ATLAS to agentic orchestration addresses ATLAS technique(s) AI Agent Tool Invocation, RAG Poisoning, AI Agent Context Poisoning, Exfiltration via AI Agent Tool Invocation, Exfiltration, Publish Poisoned AI Agent Tool.
Verified 2026-06-24
IMDA MGF
§2.1.1 (threat modelling & taint tracing for agentic systems) · indicative adjacent
evidence
Section IMDA MGF §2.1.1
Why Map AI-native threats, extend ATT&CK/ATLAS to agentic orchestration maps to IMDA MGF threat modelling & taint tracing for agentic systems.
AWS Scoping
Orchestration · indicative
Standard / protocol

MITRE ATT&CK / ATLAS + an agentic-orchestration extension · ARiES-style additive detection-scoring heuristic (Threat + Vulnerability + Impact; keeps weak signals visible, not a formal risk calculation)

RT-07Detect multi-agent collusion and covert channelsWatch for agents quietly coordinating in ways that look harmless one at a time.ASI07 · ASI08Agents can establish hidden coordination or steganographic side-channels over authenticated links, coordinated actions that look benign individually but add up to an attack. Authenticating the channel (PT-01) doesn't detect collusion over it.frontierresearchresearchdata
Threat it stops

ASI07 · ASI08 Agents can establish hidden coordination or steganographic side-channels over authenticated links, coordinated actions that look benign individually but add up to an attack. Authenticating the channel (PT-01) doesn't detect collusion over it.

matters most for · Autonomy
builds on ·
Enforcement point · where it runs

A cross-agent correlation layer plus inter-agent traffic inspection (research-stage, carried as a thesis).

How to implement

Correlate behaviour across agents to spot coordination that no single agent's logs reveal, and inspect inter-agent traffic for covert/steganographic channels. This is the matrix's own (research-stage) position, an active research direction, not yet a codified standard control.

  1. Correlate actions across agents to detect coordinated patterns that look benign individually.
  2. Inspect inter-agent communication for covert or steganographic channels beyond the authenticated payload.
  3. Flag information-asymmetry exploitation between agents for review.
Avoid
  • ✗ monitoring each agent in isolation only
  • ✗ trusting an authenticated channel without inspecting for covert content
  • ✗ no cross-agent correlation at all
How to validate it

Design check, is it configured?

  • Confirm cross-agent behavioural correlation exists and inter-agent traffic is inspected beyond authentication. [unverified]

Runtime test, does it hold under attack?

  • Stage two agents coordinating a split attack over an authenticated channel and confirm correlation flags the aggregate pattern. [unverified]

Evidence, what proves it over time?

  • Cross-agent correlation alerts and inter-agent channel-inspection logs. [unverified]
Detection signal · what to alert on

telemetry · agent_pairshared_artifact_idcross_agent_causal_edgetiming_correlationmutual_information_scorecommon_objective_inferencepolicy_bypass_pathcorrelated_action_window

Baseline: Normal inter-agent coordination reconstructed as a causal graph across goals, memory, tools, and actions.

Alert: Correlated cross-agent actions, shared-artifact hand-offs that bypass policy, timing- or state-based coordination, or rising mutual information between agents that should be independent. Collusion can be low-entropy, so do not rely on message entropy alone.

ATLAS · ATLAS mitigation: AML.M0024 (AI Telemetry Logging)

By team

Engineering
Add cross-agent correlation analytics and inspect inter-agent payloads for covert content.

Detection Eng
Alert on coordinated cross-agent patterns and anomalous inter-agent traffic.

Red Team
Split an attack across two cooperating agents and hide coordination in an authenticated channel.

GRC
Correlation logs evidence that multi-agent collusion is actually watched for (a known frontier).

SecOps / IR
Cross-agent correlation reveals attacks invisible in any single agent's timeline.

Standards crosswalk
CSA AISMM
MON-05.2 · verified direct
evidence
Section CSA AISMM MON-05.2
Why Detect multi-agent collusion and covert channels maps to AISMM control(s) MON-05.2.
Verified 2026-06-22
NIST
AI RMF: Measure · verified adjacent
evidence
Section Measure function
Why NIST AI RMF Measure function: analyse, assess, benchmark, and monitor the AI risks and impacts. "Detect multi-agent collusion and covert channels" is a corresponding measurement and monitoring activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.6.2.6 (AI system operation and monitoring) · verified adjacent
OWASP
ASI07 Insecure Inter-Agent Communication; ASI08 Cascading Agent Failures (multi-agent collusion) · verified direct
evidence
Section OWASP ASI07, ASI08
Why Detect multi-agent collusion and covert channels addresses OWASP ASI07 Insecure Inter-Agent Communication; ASI08 Cascading Agent Failures (multi-agent collusion).
Verified 2026-06-22
OWASP AISVS
C12.2.6 (covert-channel indicators); C12.2.3 (coordinated-attack rules) · verified direct
evidence
Section AISVS v1.0, C12 Monitoring, Logging & Anomaly Detection
Why Detecting collusion and covert channels is the AISVS covert-channel and C2 monitoring plus coordinated-attack rules.
Verified 2026-06-24
MITRE ATLAS
ATLAS mitigation: AML.M0024 (AI Telemetry Logging) · indicative supporting
evidence
Section MITRE ATLAS mitigation AML.M0024
Why AI Telemetry Logging supplies the observability that collusion and covert-channel detection depends on. The mitigation is a telemetry dependency, not the detector itself, so this is a supporting mapping.
IMDA MGF
§2.3.2 (test for emergent multi-agent behaviours); §1.2.3 (systemic & multi-agent risks) · indicative adjacent
evidence
Section IMDA MGF §2.3.2, §1.2.3
Why Detect multi-agent collusion and covert channels maps to IMDA MGF test for emergent multi-agent behaviours; systemic & multi-agent risks.
AWS Scoping
Orchestration · indicative
Standard / protocol

cross-agent behavioural correlation · covert-channel / steganography detection

RT-08Monitor latent and representation-level signals, not just visible reasoningWatch the model’s internal signals, not only the words it shows you, because a capable model can hide its plan.ASI01RT-03 monitors the agent’s visible chain-of-thought, but frontier research warns of assumption collapse: a capable model can develop oversight awareness (altering visible output to appease the supervisor) or use opaque / latent reasoning (internalizing strategy without emitting parseable text). Text-level monitoring then misses the malicious plan.frontierresearchresearchdata
Threat it stops

ASI01 RT-03 monitors the agent’s visible chain-of-thought, but frontier research warns of assumption collapse: a capable model can develop oversight awareness (altering visible output to appease the supervisor) or use opaque / latent reasoning (internalizing strategy without emitting parseable text). Text-level monitoring then misses the malicious plan.

matters most for · Autonomy
builds on ·
Enforcement point · where it runs

Representation- or logit-level probes on model internal state; reachable only by model developers or self-hosted teams.

How to implement

Supervision extends below the visible text: representation- or logit-level anomaly detection and activation probes watch the model’s inner state for deception or hidden goals, on the assumption that a capable agent may not reveal its plan in parseable text. This is an emerging, frontier direction and this matrix's own position; few production stacks implement it today. It is mainly a control for model developers or self-hosted-model operators — most consumers of a hosted, closed model cannot reach logits or activations and must require it of their provider.

  1. Do not rely solely on visible chain-of-thought for oversight (RT-03’s stated assumption can collapse).
  2. Add representation / logit-level anomaly detection and activation probes where model internals are accessible.
  3. Flag oversight-awareness signals: visible reasoning that diverges from internal-state indicators.
  4. Treat this as defence-in-depth alongside RT-03, not a replacement.
Avoid
  • ✗ assuming a model’s visible reasoning is faithful to its actual plan
  • ✗ monitoring only parseable text output
  • ✗ claiming representation monitoring is a solved problem (it is frontier research)
How to validate it

Design check, is it configured?

  • Confirm oversight does not rely solely on visible chain-of-thought and that representation-level signals are monitored where model internals are accessible. [src]

Runtime test, does it hold under attack?

  • Red-team for oversight-awareness / sandbagging: confirm a model altering its visible output to appease the monitor is still flagged by internal-state signals. [unverified]

Evidence, what proves it over time?

  • Representation-anomaly detection logs or probe outputs kept alongside the chain-of-thought monitor. [unverified]
Detection signal · what to alert on

telemetry · agent_idactivation_probe_scorelogit_anomaly_scoremonitor_visibility_modemodel_access_levelprobe_coverage

Baseline: The model's internal-state baseline and the probe's coverage / recall (self-hosted or model-developer only).

Alert: A representation- or logit-level anomaly suggesting a hidden goal, or probe coverage dropping below the level needed to trust visible-reasoning monitoring (RT-03).

By team

Engineering
Add logit/representation anomaly detection and activation probes where you can access internals; do not trust chain-of-thought alone.

Detection Eng
Alert when visible reasoning diverges from internal-state indicators (oversight awareness).

Red Team
Sandbag the visible chain-of-thought to appease the supervisor while pursuing a hidden goal; see if internal-state monitoring catches it.

GRC
An emerging control; evidence is partial, record it as a known frontier limit (defence-in-depth).

SecOps / IR
Representation-level signals can catch a deceptive agent that looks clean in its text output.

Standards crosswalk
CSA AICM
LOG-05 (reasoning and action audit logging); TVM (Threat & Vulnerability Management) · verified partial
evidence
CSA AISMM
MON-05.2 · verified direct
evidence
Section CSA AISMM MON-05.2
Why Monitor latent and representation-level signals, not just visible reasoning maps to AISMM control(s) MON-05.2.
Verified 2026-06-22
NIST
AI RMF: Measure · verified adjacent
evidence
Section Measure function
Why NIST AI RMF Measure function: analyse, assess, benchmark, and monitor the AI risks and impacts. "Monitor latent and representation-level signals, not just visible reasoning" is a corresponding measurement and monitoring activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.6.2.6 (AI system operation and monitoring) · verified adjacent
OWASP
ASI01 Agent Goal Hijack (latent / opaque-reasoning vector) · verified direct
evidence
Section OWASP ASI01
Why Monitor latent and representation-level signals, not just visible reasoning addresses OWASP ASI01 Agent Goal Hijack (latent / opaque-reasoning vector).
Verified 2026-06-22
AWS Scoping
Agent & foundation-model controls · indicative
Standard / protocol

representation / logit-level anomaly detection · activation probes · do-not-rely-solely-on-chain-of-thought

06Continuous Assurance8 controls
AS-01Adversarially red-team and evaluate the agent before launchTry hard to break the agent yourself before anyone else can.ASI01Resistance to goal hijack and multi-turn drift has to be measured, not assumed, an agent that looks safe in a demo can fail under a determined adversary.coreproductlife
Threat it stops

ASI01 Resistance to goal hijack and multi-turn drift has to be measured, not assumed, an agent that looks safe in a demo can fail under a determined adversary.

matters most for · Autonomy
Enforcement point · where it runs

Pre-deployment red-team / eval harness gated on a launch threshold (an attack-success-rate you clear).

How to implement

Before launch the agent is put through adversarial red-teaming and agentic eval benchmarks, multi-turn goal-hijack, tool-misuse, and exfiltration scenarios, with results measured against thresholds, not vibes.

  1. Run red-team suites and agentic eval benchmarks (e.g. AgentDojo, FinBot CTF) covering hijack, tool misuse, and exfiltration.
  2. Include multi-turn scenarios that test goal drift over a session, not single prompts.
  3. Measure attack-success-rate against a launch threshold.
  4. Feed findings back into controls before launch.
Avoid
  • ✗ single-prompt testing that misses multi-turn drift
  • ✗ red-teaming with no pass/fail threshold
  • ✗ treating a clean demo as evidence of safety
How to validate it

Design check, is it configured?

  • Confirm a red-team plan exists covering multi-turn hijack, tool misuse, and exfiltration, with defined pass thresholds. [src]

Runtime test, does it hold under attack?

  • Execute the red-team/eval suite and report attack-success-rate vs threshold; launch is blocked if the threshold is exceeded. [src]

Evidence, what proves it over time?

  • Pre-launch red-team report with scenarios, attack-success-rates, and the go/no-go decision. [src]
By team

Engineering
Wire AgentDojo/FinBot-style suites into the pre-launch pipeline with multi-turn scenarios.

Detection Eng
Reuse red-team scenarios as live detection content after launch (ties to RT-02).

Red Team
This is your home turf, hijack, drift, tool-misuse, exfiltration, measured against a threshold.

GRC
The pre-launch red-team report is a key release-readiness artifact.

SecOps / IR
Knowing the agent's tested failure modes speeds triage when one shows up live.

Standards crosswalk
CSA AISMM
APP-04.3, APP-05.2 · verified direct
evidence
Section CSA AISMM APP-04.3, APP-05.2
Why Adversarially red-team and evaluate the agent before launch maps to AISMM control(s) APP-04.3, APP-05.2.
Verified 2026-06-22
NIST
AI RMF: Measure · verified adjacent
evidence
Section Measure function
Why NIST AI RMF Measure function: analyse, assess, benchmark, and monitor the AI risks and impacts. "Adversarially red-team and evaluate the agent before launch" is a corresponding measurement and monitoring activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.6.2.4 (AI system verification and validation) · verified adjacent
OWASP
ASI01 Goal Hijack (multi-turn drift) · verified direct
evidence
Section OWASP ASI01
Why Adversarially red-team and evaluate the agent before launch addresses OWASP ASI01 Goal Hijack (multi-turn drift).
Verified 2026-06-22
OWASP AISVS
C11.1.3 (adversarial evaluation pre-release); C11.1.2 (versioned alignment test suite per release) · verified direct
evidence
Section AISVS v1.0, C11 Adversarial Robustness
Why Pre-launch adversarial red-teaming is the AISVS adversarial evaluation and versioned alignment test suite per release.
Verified 2026-06-24
IMDA MGF
§2.3.2 (pre-deployment testing: task execution, policy, robustness); §2.2.1 (regular red teaming) · verified direct
evidence
Section IMDA MGF §2.3.2, §2.2.1
Why Adversarially red-team and evaluate the agent before launch maps to IMDA MGF pre-deployment testing: task execution, policy, robustness; regular red teaming.
Verified 2026-06-24
AWS Scoping
Agent & foundation-model controls · indicative
Standard / protocol

red-team suites · agentic eval benchmarks · FinBot CTF

AS-02Statically analyze agent skills and manifests in CIAutomatically scan every plug-in and its manifest for problems before it ships.ASI04Unverified plug-ins and manifests entering the pipeline are a supply-chain entry point for malicious code.productlife
Threat it stops

ASI04 Unverified plug-ins and manifests entering the pipeline are a supply-chain entry point for malicious code.

matters most for · External reach
builds on ·
Enforcement point · where it runs

CI pipeline running SAST + manifest scanning on every skill change, failing the build on high-severity findings.

How to implement

CI statically analyses agent skills and manifests, reviews dependencies, and fails the build on high-severity findings before anything reaches production. Pairs with signature verification (PT-03).

  1. Run SAST and manifest scanning on every skill/tool change in CI.
  2. Review dependencies for known-vulnerable components.
  3. Fail the build on high-severity findings (a gate, not a warning).
  4. Verify signatures (PT-03) as part of the same pipeline.
Response lever · when it fires

fail the build — block the merge on a high-severity finding

Avoid
  • ✗ a scanner that runs but doesn't block merge
  • ✗ skills added outside CI
  • ✗ no dependency review on agent plug-ins
How to validate it

Design check, is it configured?

  • Confirm SAST/manifest scanning runs in CI and high-severity findings fail the build (a gate, not advisory). [src]

Runtime test, does it hold under attack?

  • Submit a skill with a known-bad pattern and confirm CI blocks the merge. [src]

Evidence, what proves it over time?

  • CI scan reports (SARIF) with commit SHA and the gate decision per build. [unverified]
By team

Engineering
Add SAST + manifest scanning as a blocking CI gate on every skill change.

Detection Eng
Surface new high-severity CI findings to the security team.

Red Team
Try to slip a malicious skill past CI with an obfuscated pattern.

GRC
CI scan reports with commit SHA evidence supply-chain testing before release.

SecOps / IR
Blocking bad skills at CI keeps them out of production entirely.

Standards crosswalk
CSA AICM
AIS-05 (application security testing); CCC-02 (quality testing) · verified partial
evidence
CSA AISMM
DEV-03.3, DEV-04.1 · verified direct
evidence
Section CSA AISMM DEV-03.3, DEV-04.1
Why Statically analyze agent skills and manifests in CI maps to AISMM control(s) DEV-03.3, DEV-04.1.
Verified 2026-06-22
NIST
AI RMF: Map, Manage · verified adjacent
evidence
Section Map / Manage functions
Why NIST AI RMF Map / Manage functions: establish context and identify and categorise the AI risks; prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Statically analyze agent skills and manifests in CI" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.6.2.4 (AI system verification and validation) · verified adjacent
OWASP
ASI04 Agentic Supply Chain Compromise · verified direct
evidence
Section OWASP ASI04
Why Statically analyze agent skills and manifests in CI addresses OWASP ASI04 Agentic Supply Chain Compromise.
Verified 2026-06-22
OWASP AISVS
C6.1.1 (malicious-code scanning of artifacts); C6.2.3 (build-gate on AI BOM completeness) · verified direct
evidence
Section AISVS v1.0, C6 Supply Chain Security
Why Static analysis of skills and manifests in CI is the AISVS malicious-code scanning and AI BOM build-gate.
Verified 2026-06-24
IMDA MGF
§2.3.2 (pre-deployment testing); §2.1.1 (third-party skill supply-chain risk) · indicative adjacent
evidence
Section IMDA MGF §2.3.2, §2.1.1
Why Statically analyze agent skills and manifests in CI maps to IMDA MGF pre-deployment testing; third-party skill supply-chain risk.
AWS Scoping
Agent & foundation-model controls · indicative
Standard / protocol

SAST · manifest scanning · dependency review

AS-03Gate releases on continuous adversarial validationRe-test for safety on every release, because agent behaviour drifts over time.threatEmergent behaviour changes the risk profile run to run; a training-time audit doesn't satisfy a runtime-risk requirement.guidancelife
Threat it stops

Emergent behaviour changes the risk profile run to run; a training-time audit doesn't satisfy a runtime-risk requirement.

matters most for · AutonomyIrreversibility
Enforcement point · where it runs

Release gate running the adversarial evaluation suite on every deployment, blocking regressions against the baseline.

How to implement

Adversarial validation runs as a release gate on every deployment, not once at training time. A regression in safety evals blocks the release, matching EU AI Act Article 9's continuous risk-management duty for high-risk AI systems (and sound governance practice for lower-risk agents).

  1. Run the adversarial/eval suite as a gate on each release.
  2. Block releases that regress against the safety baseline.
  3. Map the gate to EU AI Act Art. 9 continuous risk management (a direct obligation for high-risk AI systems, voluntary hardening otherwise).
  4. Re-run after model or prompt changes, not just code changes.
Response lever · when it fires

block release — block any deploy that regresses against the safety baseline

Avoid
  • ✗ a one-time pre-launch audit treated as permanent
  • ✗ eval results that don't block release
  • ✗ ignoring drift from model/prompt updates
How to validate it

Design check, is it configured?

  • Confirm adversarial validation gates every release and a safety regression blocks it. [src]

Runtime test, does it hold under attack?

  • Introduce a deliberate safety regression and confirm the release gate blocks it. [src]

Evidence, what proves it over time?

  • Per-release eval-gate results with the baseline comparison and go/no-go decision. [src]
By team

Engineering
Make the eval suite a blocking release gate; re-run on model/prompt changes.

Detection Eng
Trend eval scores release-over-release to catch slow drift.

Red Team
Confirm a planted regression is actually caught by the gate.

GRC
Per-release eval results map to EU AI Act Art. 9 continuous risk management.

SecOps / IR
Catching regressions pre-release keeps unsafe behaviour out of production.

Standards crosswalk
CSA AISMM
MOD-05.1, DEV-03.3 · verified direct
evidence
Section CSA AISMM MOD-05.1, DEV-03.3
Why Gate releases on continuous adversarial validation maps to AISMM control(s) MOD-05.1, DEV-03.3.
Verified 2026-06-22
NIST
AI RMF: Measure, Manage · verified adjacent
evidence
Section Measure / Manage functions
Why NIST AI RMF Measure / Manage functions: analyse, assess, benchmark, and monitor the AI risks and impacts; prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Gate releases on continuous adversarial validation" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
EU AI Act Art. 9; ISO/IEC 42001 A.6.2.4 (AI system verification and validation) · verified adjacent
OWASP
Continuous validation (release gate) · indicative direct
evidence
Section OWASP
Why Gate releases on continuous adversarial validation addresses OWASP Continuous validation (release gate).
OWASP AISVS
C11.1.2 (alignment suite on every release); C11.1.5 (regression-flagging evaluator); C3.2.3 (re-eval on model or routing change) · verified direct
evidence
Section AISVS v1.0, C11 Adversarial Robustness; C3 Model Lifecycle Management
Why Gating releases on continuous adversarial validation is the AISVS alignment suite per release with regression flagging.
Verified 2026-06-24
IMDA MGF
§2.3.3 (continuous testing post-deployment; guard against model drift) · verified direct
evidence
Section IMDA MGF §2.3.3
Why Gate releases on continuous adversarial validation maps to IMDA MGF continuous testing post-deployment; guard against model drift.
Verified 2026-06-24
AWS Scoping
Agent & foundation-model controls · indicative
Standard / protocol

eval gates · continuous adversarial validation · EU AI Act Art. 9 risk management

AS-04Run a bug-bounty / vulnerability reward program for agentic abusePay outside researchers to find the abuse paths your own testing missed.threatAbuse and safety risks that standard penetration testing misses, prompt injection that hijacks an agent, data exfiltration, harmful autonomous actions.guidancelife
Threat it stops

Abuse and safety risks that standard penetration testing misses, prompt injection that hijacks an agent, data exfiltration, harmful autonomous actions.

matters most for · Autonomy
builds on ·
Enforcement point · where it runs

External bug-bounty program scoped explicitly to agentic abuse, feeding findings back into AS-01.

How to implement

A safety-focused bug-bounty program invites external researchers to find agentic abuse paths, prompt-injection hijacks, exfiltration, harmful autonomous actions, with rewards scaled to impact. (Scope differs by program: OpenAI's Safety Bug Bounty explicitly covers agentic prompt injection and exfiltration; Google routes prompt injection and jailbreaks through its abuse channels, not the core AI VRP.)

  1. Stand up a safety bug-bounty with explicit agentic-abuse scope.
  2. Reward prompt-injection hijacks, data exfiltration, and harmful autonomous actions.
  3. Feed validated reports back into controls and red-team scenarios.
Avoid
  • ✗ a bounty scoped only to classic appsec, excluding agent abuse
  • ✗ no path from report to control improvement
  • ✗ treating safety reports as out of scope
How to validate it

Design check, is it configured?

  • Confirm the bug-bounty scope explicitly includes agentic abuse (injection, exfiltration, harmful autonomous actions). [src]

Runtime test, does it hold under attack?

  • Track that submitted agentic-abuse reports are reproduced and resolved, and feed them into AS-01 scenarios. [src]

Evidence, what proves it over time?

  • Bug-bounty program scope and a log of agentic-abuse reports with remediation status. [src]
By team

Engineering
Fold validated bounty findings into fixes and regression tests.

Detection Eng
Turn reported abuse paths into detection content.

Red Team
External researchers extend your own red-team coverage, triage and reproduce their reports.

GRC
A scoped bounty + remediation log evidences ongoing external assurance.

SecOps / IR
Bounty reports are early warning of abuse paths before they're exploited at scale.

Standards crosswalk
CSA AICM
TVM (Threat & Vulnerability Management — Security Testing) · indicative adjacent
evidence
NIST
AI RMF: Measure · verified adjacent
evidence
Section Measure function
Why NIST AI RMF Measure function: analyse, assess, benchmark, and monitor the AI risks and impacts. "Run a bug-bounty / vulnerability reward program for agentic abuse" is a corresponding measurement and monitoring activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.6.2.4 (AI system verification and validation) · verified adjacent
OWASP
Crowdsourced abuse discovery · indicative direct
evidence
Section OWASP
Why Run a bug-bounty / vulnerability reward program for agentic abuse addresses OWASP Crowdsourced abuse discovery.
AWS Scoping
Agent & foundation-model controls · indicative
Standard / protocol

safety bug bounty · AI vulnerability reward program

Implemented by · by type
Research & guidanceOpenAI guidanceGoogle guidance
Source guidance
OpenAI, Safety Bug Bounty (Bugcrowd; agentic abuse and safety)
AS-05Study frontier offensive capability before public releaseCheck whether a powerful new model can find and exploit vulnerabilities before you ship it.threatModels approaching expert-human level at finding and exploiting vulnerabilities are a release-gating risk. Frontier labs converge on studying this before release, treating the agent itself as a potential insider threat and not assuming alignment is perfect.STAR AIguidancelife
Threat it stops

Models approaching expert-human level at finding and exploiting vulnerabilities are a release-gating risk. Frontier labs converge on studying this before release, treating the agent itself as a potential insider threat and not assuming alignment is perfect.

matters most for · Autonomy
Enforcement point · where it runs

Model producer's frontier-capability evaluation before release; for consumers, a version-pinning release gate.

How to implement

Before public release, frontier offensive capability is studied through pre-release red-teaming and control evaluations, with staged release and deployment gating tied to tracked-risk thresholds (e.g. OpenAI Preparedness Framework). Anthropic's Project Glasswing is framed defensively, studying capability to secure critical software.

  1. Evaluate the model's offensive/vuln-finding capability before public release.
  2. Gate deployment on tracked-risk thresholds (Preparedness Framework v2).
  3. Stage the release and expand access as evidence accrues.
  4. Treat the agent as a potential insider threat; don't assume alignment is perfect.
Avoid
  • ✗ full public release with no frontier-capability assessment
  • ✗ deployment gating with no defined risk threshold
  • ✗ assuming alignment removes the need for control evaluations
How to validate it

Design check, is it configured?

  • Confirm a pre-release frontier-capability evaluation and tracked-risk deployment thresholds exist. [src]

Runtime test, does it hold under attack?

  • Run control evaluations against the model's offensive capability and confirm release is gated on the threshold. [src]

Evidence, what proves it over time?

  • Frontier-capability assessment and the deployment-gating decision against the threshold. [src]
By team

Engineering
Build staged-release controls tied to risk thresholds.

Detection Eng
Watch for capability-jump signals that should re-trigger assessment.

Red Team
Probe the model's vuln-finding/exploit capability pre-release as a control evaluation.

GRC
Frontier assessments + gating decisions evidence responsible release.

SecOps / IR
Knowing a model's offensive ceiling informs how tightly to monitor it in production.

Standards crosswalk
CSA AICM
MDS-12 (open model risk assessment); MDS-06 (adversarial attack analysis) · verified partial
evidence
CSA AISMM
MOD-02.2, RSK-05.2 · verified direct
evidence
Section CSA AISMM MOD-02.2, RSK-05.2
Why Study frontier offensive capability before public release maps to AISMM control(s) MOD-02.2, RSK-05.2.
Verified 2026-06-22
NIST
AI RMF: Map, Measure · verified adjacent
evidence
Section Map / Measure functions
Why NIST AI RMF Map / Measure functions: establish context and identify and categorise the AI risks; analyse, assess, benchmark, and monitor the AI risks and impacts. "Study frontier offensive capability before public release" is a corresponding measurement and monitoring activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.5.2 (AI system impact assessment process) · verified adjacent
OWASP
Frontier capability assessment · indicative direct
evidence
Section OWASP
Why Study frontier offensive capability before public release addresses OWASP Frontier capability assessment.
AWS Scoping
Agent & foundation-model controls · indicative
Standard / protocol

pre-release red team · control evaluations · staged release

AS-06Verify model-weights and training-data provenance before loadMake sure the model itself, and the data it learned from, is genuine and unaltered, not just the plug-ins.ASI04Skill-signing (PT-03, AS-02) protects plug-ins, but a poisoned or swapped base model bypasses all of it, a backdoor can live in the weights, not the manifest. Training-data poisoning is baked into the model and is distinct from runtime memory poisoning.STAR AIopen sourcelife
Threat it stops

ASI04 Skill-signing (PT-03, AS-02) protects plug-ins, but a poisoned or swapped base model bypasses all of it, a backdoor can live in the weights, not the manifest. Training-data poisoning is baked into the model and is distinct from runtime memory poisoning.

matters most for · Data sensitivity
builds on ·
Enforcement point · where it runs

Artifact / model registry at build time: weight signing (Sigstore / OpenSSF) and the ML-BOM, separate from app manifests.

How to implement

Model weights are cryptographically signed and verified before load (OpenSSF Model Signing / Sigstore model-transparency), with an ML-BOM and signed provenance binding the weights to their training context. Training and fine-tuning data carry provenance and validation so poisoning at the data layer is caught.

  1. Sign model artifacts/weights and verify the signature before load.
  2. Maintain an ML-BOM and provenance binding weights to training context.
  3. Validate training/fine-tuning data provenance to catch data-layer poisoning.
  4. Make verification a hard gate, refuse to load an unverified or swapped model.
  5. Re-verify when the provider, model version, route, quantization, or safety configuration changes underneath an approved deployment, and gate the change behind regression tests and re-approval (provider and model drift).
  6. Generate an AI-BOM/SBOM covering CISA’s seven minimum element clusters: SBOM metadata, system-level properties, model components (hashes, architecture, fine-tuning state), dataset properties (lineage, sensitivities), security properties (guardrails, filters), infrastructure components, and KPIs.
Avoid
  • ✗ signing skills but never the base model
  • ✗ loading model weights with no signature check
  • ✗ no provenance on training/fine-tuning data
  • ✗ treating an approved model as static when the provider can change its version, route, or safety configuration underneath it
How to validate it

Design check, is it configured?

  • Confirm model weights are signed and verified before load (OMS/Sigstore), with an ML-BOM and training-data provenance. [src]

Runtime test, does it hold under attack?

  • Attempt to load an unsigned or tampered model artifact; the verify-gate must refuse it. [src]

Evidence, what proves it over time?

  • Model signature-verification records, the ML-BOM, and training-data provenance attestations. [src]
By team

Engineering
Add model-signature verification (OMS/Sigstore) as a hard gate before load; keep an ML-BOM.

Detection Eng
Alert on attempts to load an unsigned or signature-mismatched model.

Red Team
Try to swap in a backdoored model or poison the training/fine-tune data.

GRC
Model provenance + ML-BOM evidence supply-chain integrity down to the weights.

SecOps / IR
Weight verification stops a poisoned model from ever reaching production.

Standards crosswalk
CSA AICM
MDS-09 (model signing / ownership verification); MDS-08 (model integrity) · verified partial
evidence
CSA AISMM
MOD-04.1, DEV-04.2 · verified direct
evidence
Section CSA AISMM MOD-04.1, DEV-04.2
Why Verify model-weights and training-data provenance before load maps to AISMM control(s) MOD-04.1, DEV-04.2.
Verified 2026-06-22
NIST
AI RMF: Map, Manage · verified adjacent
evidence
Section Map / Manage functions
Why NIST AI RMF Map / Manage functions: establish context and identify and categorise the AI risks; prioritise and act on the identified AI risks, treating, responding, recovering, and allocating resources. "Verify model-weights and training-data provenance before load" is a corresponding risk-treatment activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.7.5 (data provenance) · verified adjacent
OWASP
ASI04 Supply Chain (model layer); LLM03:2025 Supply Chain; LLM04:2025 Data and Model Poisoning · verified direct
evidence
Section OWASP ASI04, LLM03, LLM04
Why Verify model-weights and training-data provenance before load addresses OWASP ASI04 Supply Chain (model layer); LLM03:2025 Supply Chain; LLM04:2025 Data and Model Poisoning.
Verified 2026-06-22
OWASP AISVS
C3.1.3 (verify signatures at model load); C6.1.3 (artifact integrity verification); C6.2.1 (AI BOM data provenance) · verified direct
evidence
Section AISVS v1.0, C3 Model Lifecycle Management; C6 Supply Chain Security
Why Verifying weights and data provenance is the AISVS signature verification at load and AI BOM data provenance.
Verified 2026-06-24
AWS Scoping
Agent & foundation-model controls · indicative
Standard / protocol

model signing (OpenSSF OMS / Sigstore model-transparency) · ML-BOM · training-data provenance · verify-gate before load · CISA SBOM for AI minimum elements (7 clusters)

AS-07Verify a skill does what it declares (behavioral integrity)Check that a plug-in actually does what its description says, not just that it is signed and clean.ASI04 · ASI02Signing proves a skill is genuine and unaltered (PT-03) and scanning catches known-bad patterns (AS-02), but neither proves the skill does what it declares. A study of 49,943 skills found roughly 80% deviate from their declared behavior (18.9% from adversarial intent), and 5% carry multi-stage attack chains hidden inside legitimate-looking skills, declaring read a file but actually reading the file and exfiltrating credentials or opening a shell.STAR AIemergingemerginglife
Threat it stops

ASI04 · ASI02 Signing proves a skill is genuine and unaltered (PT-03) and scanning catches known-bad patterns (AS-02), but neither proves the skill does what it declares. A study of 49,943 skills found roughly 80% deviate from their declared behavior (18.9% from adversarial intent), and 5% carry multi-stage attack chains hidden inside legitimate-looking skills, declaring read a file but actually reading the file and exfiltrating credentials or opening a shell.

matters most for · External reach
builds on ·
Enforcement point · where it runs

Behavioral static-analysis gate (AST parsing of the skill) at load time, blocking capability that exceeds the declaration.

How to implement

Before a skill is trusted, and on each update, its actual behavior is verified against its declared capabilities: static code analysis extracts what the skill really does (filesystem, credential, shell, network access) and compares it to its description over a shared capability taxonomy. Skills whose real capabilities exceed or contradict their declaration are blocked or flagged.

  1. Extract each skill’s actual capabilities (filesystem, credential, shell, network) via static analysis.
  2. Compare actual vs declared capabilities over a shared taxonomy; flag or block description-implementation gaps.
  3. Treat capability escalation beyond the declaration as adversarial until proven otherwise.
  4. Re-verify on every skill update (ties to PT-03 signing and AS-02 static analysis).
Response lever · when it fires

block load — block a skill whose real capabilities exceed or contradict its declaration

Avoid
  • ✗ trusting a skill because it is signed (PT-03) without checking it does what it claims
  • ✗ approving a skill on its description alone
  • ✗ no re-verification when a skill updates
How to validate it

Design check, is it configured?

  • Confirm skills are behaviorally verified (declared vs actual capability) before trust and on update, not only signed and pattern-scanned. [src]

Runtime test, does it hold under attack?

  • Submit a skill that declares a narrow capability but implements a hidden credential or shell exfil step; confirm the capability-diff flags or blocks it. [src]

Evidence, what proves it over time?

  • Capability-diff audit report per skill (declared vs actual capabilities), retained with the skill registry. [src]
By team

Engineering
Diff each skill’s actual capabilities (static analysis) against its declaration; block capability escalation; re-run on update.

Detection Eng
Alert when a skill’s runtime behavior exceeds its declared capabilities.

Red Team
Ship a skill that declares read-file but also reads credentials and opens a shell; see if the capability-diff catches it.

GRC
Capability-diff audit reports evidence that skills were verified to do what they declare.

SecOps / IR
Behavioral verification catches hidden multi-stage attack chains in legitimate-looking skills.

Standards crosswalk
CSA AICM
AIS-05 (application security testing); STA-09 (service bill of material) · verified partial
evidence
CSA AISMM
DEV-03.3, DEV-04.1, APP-04.3 · verified direct
evidence
Section CSA AISMM DEV-03.3, DEV-04.1, APP-04.3
Why Verify a skill does what it declares (behavioral integrity) maps to AISMM control(s) DEV-03.3, DEV-04.1, APP-04.3.
Verified 2026-06-22
NIST
AI RMF: Map, Measure · verified adjacent
evidence
Section Map / Measure functions
Why NIST AI RMF Map / Measure functions: establish context and identify and categorise the AI risks; analyse, assess, benchmark, and monitor the AI risks and impacts. "Verify a skill does what it declares (behavioral integrity)" is a corresponding measurement and monitoring activity.
Verified 2026-06-27
ISO / Reg
ISO/IEC 42001 A.6.2.4 (AI system verification and validation) · verified adjacent
OWASP
ASI04 Supply Chain; ASI02 Tool Misuse · verified direct
evidence
Section OWASP ASI04, ASI02
Why Verify a skill does what it declares (behavioral integrity) addresses OWASP ASI04 Supply Chain; ASI02 Tool Misuse.
Verified 2026-06-22
OWASP AISVS
C6.1.4 (behavioral acceptance testing); C9.3.4 (enforce manifest-declared behavior at runtime) · verified direct
evidence
Section AISVS v1.0, C6 Supply Chain Security; C9 Orchestration & Agentic Action
Why Verifying a skill does what it declares is the AISVS behavioral acceptance testing and runtime manifest enforcement.
Verified 2026-06-24
IMDA MGF
§2.3.2 (test tool-calling correctness); §2.1.1 (third-party skill risk) · indicative adjacent
evidence
Section IMDA MGF §2.3.2, §2.1.1
Why Verify a skill does what it declares (behavioral integrity) maps to IMDA MGF test tool-calling correctness; third-party skill risk.
AWS Scoping
Agent & foundation-model controls · indicative
Standard / protocol

behavioral integrity verification (declared vs actual capability) · static analysis + capability extraction over a shared taxonomy

AS-08Harden and assure the security control plane as tier-zero infrastructureThe tools that enforce agent security, gateways, policy engines, credential brokers, approval systems, and audit stores, are themselves a high-value target. Treat them as tier-zero: isolate, monitor, access-control, make tamper-evident, and test them like the assets they protect.security-layer compromise · control-plane bypass · tier-zeroAn attacker who compromises the security layer itself, the agent gateway, the policy engine, the credential broker, the approval workflow, or the audit store, can disable, bypass, or forge every other control at once. The matrix names this as an open gap: securing the security layer.compensatingemergingemergingboth
Threat it stops

security-layer compromise · control-plane bypass · tier-zero An attacker who compromises the security layer itself, the agent gateway, the policy engine, the credential broker, the approval workflow, or the audit store, can disable, bypass, or forge every other control at once. The matrix names this as an open gap: securing the security layer.

matters most for · AutonomyExternal reachIrreversibilityData sensitivity
builds on ·
Enforcement point · where it runs

The security control plane itself (agent gateways, policy engines, credential/token brokers, approval and audit services) administered as a separate tier-zero zone, not co-resident with the agents it governs.

How to implement

Inventory the components that make agent-security decisions or hold their evidence, gateways, MCP/A2A brokers, policy engines, credential and token brokers, approval/HITL services, and audit/log stores, and run them as tier-zero infrastructure: isolated from the agents they govern, access-controlled with separation of duties, continuously monitored, tamper-evident, and tested adversarially. The control plane must not be reachable or modifiable by the very agents it constrains.

  1. Inventory every control-plane component (gateways, brokers, policy engines, approval services, audit stores) and label it tier-zero.
  2. Isolate the control plane from the agent runtime: separate identities, networks, and administrative boundaries so a compromised agent cannot reach or reconfigure it.
  3. Enforce separation of duties and least privilege on control-plane administration; no single agent, operator, or service can both act and silence the controls.
  4. Make the control plane tamper-evident: hash-chain or externally anchor its config and audit stores (builds on GV-02) so changes are detectable.
  5. Monitor the control plane as a high-value target (its own RT-01/RT-04 telemetry) and adversarially test it (its own AS-01 red-team) as part of every release.
Response lever · when it fires

Freeze the control plane — On suspected control-plane compromise, fail closed: revoke control-plane credentials, freeze policy changes, and fall back to a known-good policy/audit snapshot before resuming agent operations.

Avoid
  • ✗ the policy engine, broker, or audit store running inside the same trust boundary as the agents it governs
  • ✗ agents or their operators able to edit policy, mint their own tokens, or rewrite the audit log
  • ✗ treating the security layer as trusted-by-default and never testing or monitoring it
How to validate it

Design check, is it configured?

  • Confirm every control-plane component (gateway, broker, policy engine, approval service, audit store) is inventoried, isolated from the agent runtime, and administered with separation of duties. [unverified]

Runtime test, does it hold under attack?

  • From a compromised-agent position, attempt to reach, reconfigure, or silence the policy engine, token broker, or audit store; all attempts must fail and be alerted. [unverified]

Evidence, what proves it over time?

  • Tamper-evident record (hash-chained or externally anchored) of control-plane configuration and access, plus the results of the adversarial test of the security layer. [unverified]
By team

Engineering
Stand up the gateways, brokers, policy engines, and audit stores as separately-administered tier-zero services with their own identities and networks.

Detection Eng
Alert on any change to policy, token issuance, or audit configuration, and on any agent identity reaching a control-plane endpoint it should never touch.

Red Team
Attack the security layer directly: try to disable logging, mint tokens, edit policy, or have a governed agent reach the policy engine or audit store.

GRC
Evidence that the control plane is inventoried, access-controlled with separation of duties, tamper-evident, monitored, and tested as tier-zero.

SecOps / IR
Run the freeze-the-control-plane playbook: revoke control-plane credentials, freeze policy, restore a known-good snapshot, then resume.

Standards crosswalk
Standard / protocol

tier-zero / zero-trust hardening of the enforcement infrastructure · separation of duties between the control plane and the agents it governs · tamper-evident audit for the control plane (builds on GV-02)

OWASP Agentic Top 10, coverageASI01-10 : 2026

Every 2026 OWASP agentic risk mapped to the control(s) that address it. Click a row to filter the matrix to its set.

ASI01Agent Goal Hijack
ASI02Tool Misuse & Exploitation
ASI03Agent Identity & Privilege Abuse
ASI04Agentic Supply Chain Compromise
ASI05Unexpected Code Execution
ASI06Memory & Context Poisoning
ASI07Insecure Inter-Agent Communication
ASI08Cascading Agent Failures
ASI09Human-Agent Trust Exploitation
ASI10Rogue Agents Also a boundary case for gap3 (securing the security layer).
CISA risk classes, coverageCareful Adoption of Agentic AI · 2026

The five risk classes from the CISA agentic-AI guidance, mapped to the control(s) that address each.

Privilege Risks Overly broad permissions let a compromised agent cause lateral harm.
Design and Configuration Risks Unvetted third-party components, or static controls for dynamic workflows.
Behavioral Risks Unpredictable behavior, prompt injection, or data poisoning.
Structural Risks Cascading failures and broad attack surface from interconnected multi-agent workflows.
Accountability Risks Lack of auditability; hard to trace decision chains or assign responsibility.
AWS Agentic AI Security Scoping Matrix, coverage6 dimensions · 4 agency scopes

AWS's six security dimensions, mapped to the control(s) that satisfy each. Click a row to filter the matrix.

Identity context (authN / authZ) Who the agent is and what it is allowed to do, propagated and verified.
Data, memory & state protection Protecting what the agent reads, remembers, and carries between steps.
Audit & logging A trustworthy, attributable record of what the agent did.
Agent & foundation-model controls Securing the model and the agent's own code, before and during use.
Agency perimeters & policies The boundaries on what the agent can reach, spend, and do.
Orchestration Coordinating multiple agents and stopping the whole system safely.
Agency scopes · align to this matrix's risk-driver tiers
Scope 1No agency Read-only operations, human-initiated, predefined workflows.
Scope 2Prescribed agency Limited change capability, gated by explicit human approval (human-in-the-loop).
Scope 3Supervised agency Autonomous execution after a human starts it; watched live.
Scope 4Full agency Fully autonomous, initiating activity on environmental triggers.

AWS's four agency scopes (1-4) align to this matrix's autonomy and irreversibility risk-driver tiers: the higher the scope, the more of these controls move from optional to mandatory. The six dimensions below map each AWS control area to the controls that satisfy it. AWS is mapped as a coverage view rather than a per-control column because its dimensions are coarser than a control catalog.

Threat scenarios, coverageattack story → controls

Concrete agentic attack stories mapped to the control(s) that stop each, with the matching MITRE ATLAS case studies. Click a row to filter the matrix.

Indirect prompt injection A poisoned web page, document, or tool response carries instructions that hijack the agent's next action. ATLAS: AML.CS0020, AML.CS0035, AML.CS0039
MCP server or tool compromise A poisoned or untrusted MCP server or tool steals passed-through tokens, harvests credential files, or exfiltrates data through tool calls (confused deputy). ATLAS: AML.CS0053, AML.CS0054, AML.CS0045
Poisoned RAG / retrieval A malicious entry in the knowledge base or vector store is retrieved into context and acted on. ATLAS: AML.CS0024, AML.CS0025
Shadow agent An unmanaged agent with real access runs without the security team's knowledge. ATLAS: AML.CS0048
Autonomous cyber kill-chain An agent is wired with offensive tools and runs recon-to-exfiltration with minimal human steps (GTG-1002 style). ATLAS: AML.CS0050, AML.CS0051, AML.CS0047
Multi-agent collusion Agents coordinate over authenticated channels in ways that look benign one at a time. No direct ATLAS case study
Trigger spoofing A forged or replayed event starts an unauthorized autonomous run. ATLAS: AML.CS0038, AML.CS0055
Denial of wallet A runaway or hijacked agent burns spend and API quota at machine speed. ATLAS: AML.CS0030
Dormant memory poisoning A latent payload is seeded into long-term memory and triggers in a later session. ATLAS: AML.CS0040
Tool / skill / model supply-chain compromise A weaponized or silently-updated skill, tool, or model enters the agent through its plug-ins or weights. ATLAS: AML.CS0049, AML.CS0041, AML.CS0015, AML.CS0031
Data exfiltration via agent tools The agent is steered to send sensitive data out through a legitimate tool call. ATLAS: AML.CS0037, AML.CS0021, AML.CS0029
Agent API as command and control An attacker turns an authorized LLM, assistant, or orchestrator API into a covert command-and-control channel, living off trusted AI traffic to bypass network egress controls. ATLAS: AML.CS0042, AML.CS0044
Agent deception of humans The agent's output manipulates its own approver or impersonates a person. No direct ATLAS case study
Vendor feature coverage16 features · 4 vendors · initial identity-focused sample
Initial sample, not a market map. An INITIAL, identity-focused coverage sample (identity and non-human identity), not a market map. It deliberately under-represents runtime enforcement / EDR / eBPF, MCP & A2A gateways, agent observability, sandboxing / browser isolation, policy-as-code, CI/CD eval gates, red-team platforms, AI gateways / prompt firewalls, and evidence/audit stores; those categories are planned, and absence here is not a judgement.

Specific, named vendor product features mapped to the control(s) they help satisfy, from each vendor's own documentation. Factual coverage, not an endorsement, and absence is not a judgement. Click a row to filter the matrix to the controls a vendor's features touch. Each mapping is graded on three axes: coverage (direct / partial / adjacent / supporting), basis (validated = independently validated · claimed = vendor-stated), and status (our source check).

Export the chart: vendor-coverage.csv · vendor-coverage.json

HYPR product 3 features → 3 controls
Microsoft (Entra Agent ID) product 2 features → 2 controls
Oasis Security product 10 features → 9 controls
Okta (Auth0 Auth for GenAI) product 1 feature → 1 control

Vendor features and product names change. Each entry is pinned to the date it was verified (`verified_on`); re-audit when a product is renamed, repositioned, or its capability changes. Mappings are this matrix's own reading of public documentation.

The white spaceWhat no single framework covers

The layers above are well served. The value of a unified program is the seams none of them close. The matrix proposes a control for each gap, labelled as its own thesis.

Gap 1

Cross-organization agent identity federation

Your careful rules stop at your own front door.

Your supervised, governed agent calls an outside agent or vendor API you do not control. Every identity and permission guarantee you built ends at your organisational boundary. No current framework defines how trust, attribution, or revocation work across it.

Engineering: down-scope tokens to read-only before they leave the boundary (this matrix's compensating control for GAP1, not a fix for it). Detection: alert on any cross-org call that returns more than it should. Red team: try to replay a partner's token back into your environment. GRC: you cannot yet evidence what the external agent did with your data, record the boundary as a known limit.

Compensating control:
status: open — no cross-org standard yet; partially compensated by per-org identity (IA-01, IA-05)

Gap 2

Chain-of-custody for agent-action logs

If an agent causes harm, can your logs stand up as evidence?

When a supervised agent takes a harmful action and the monitor's logs are the primary evidence, what are the forensic and admissibility requirements? No framework defines chain-of-custody for agent-action logs in a legal or regulatory investigation, and EU AI Act record-keeping (Article 12 logging, Article 26(6) deployer retention of at least six months) is on a collision course with that gap.

Engineering: write logs to a tamper-evident store outside the agent's reach (this matrix's compensating control; tamper-evident storage is the integrity foundation of chain-of-custody, not the whole chain; IA-06 adds the signed end-to-end provenance lineage that completes it). Detection: the same logs are your detection source, protect them first. Red team: try to make the agent rewrite or delete its own audit trail. GRC: map these logs to EU AI Act Art. 12 (logging) and Art. 26(6) (deployer retention) and name a retention owner and horizon.

Compensating control:
status: partially addressed — IA-06 adds the signed provenance chain; cross-vendor standardization still open

Gap 3

Securing the security layer itself

What guards the guard?

A compromised supervisor agent, a poisoned policy engine, or a tampered governance tool turns your control plane into the attack surface. The threat model for the security and governance tooling is the least-written part of the whole field.

Engineering: run the monitor on a separate, more constrained model — separate and constrained is the point, not smaller (this matrix's compensating control; it does not by itself secure the security layer). Detection: monitor the monitor, watch for the supervisor going quiet or always-approving. Red team: target the policy engine and the approval channel, not just the agent. GRC: treat the security tooling as in-scope for its own audit.

Compensating control:
status: partially addressed — AS-08 raises securing the control plane to a first-class control (tier-zero hardening, isolation, tamper-evidence, monitoring, adversarial testing); defense-in-depth (RT-03, GV-02 outside the trust boundary) still applies. Full assurance of the security layer remains an open frontier.

The organising lensControl plane vs data plane

Control plane vs data plane is this matrix's own organising lens (no standards body publishes the six layers this way). It exists to make one point: the published frameworks cluster by plane and do not meet at the seams, a permission granted in the control plane is rarely re-checked against what the data plane sees.

Across the lifecycle
01 · AS
Continuous assurance
red-team, scan, and verify before ship, then re-prove on every change
02 · IA / PT
Control-plane auth & identity
who the agent is and what it may do
03 · EC
Data-plane sandbox execution
where it runs and what it can reach
04 · RT
Continuous OS / supervisor observation
in-path runtime proxy: watch live and stop
The same control set shifts from a static CI gate to an in-path runtime proxy as the agent moves from build to run; a weakness early ripples into an incident later.

Where those two planes meet at run time is a cross-layer pattern, not a seventh layer:

RA-01Agent Runtime Enforcement Planecross-layer pattern · not a 7th layer

The in-path gateway where the layers meet at action time: it names the acting agent and its delegation chain, decides policy against current state, brokers only the credential that one action needs, and writes the decision and result to a tamper-evident record.

Not a seventh layer and not a single product. It is the cross-layer substrate where identity, protocols, governance, and runtime response converge and become enforced rather than advisory. Logically one thing, it should be physically several, a decision service, a credential broker, an approval service, a commit guard, and an audit store outside its own trust boundary, so that compromising the gateway cannot also mint credentials, rewrite the audit, and approve its own requests. It owns the seams inside one trust domain; across organizations the same chain is the cross-org identity federation gap.

⊙ Invariant: No agent action executes without attributable identity, current authorization, least-scope authority, and an auditable decision.
Enforcement points

action gatewaypolicy decision servicecredential brokerapproval servicecommit guardexternal audit storeruntime response service

Controls that converge here · click one to jump to it
Sources & editionswhat each column is pinned to

The edition each crosswalk column is pinned to. Re-audit a column when its source revises. Per-cell evidence carries its own verified_on date.

OWASP AISVSv1.02026-06 · released
MITRE ATLAS2026.05 (data format v6)2026-06-24 · released
OWASP Agentic Top 1020262025-12 · released
OWASP LLM Top 1020252025 · released
OWASP NHI Top 1020252025 · released
IMDA MGF for Agentic AIv1.52026-06 · released
CSA AICMv1.1.02026-06 · released; re-audited against v1.1 (IAM/AIS/LOG/STA/TVM renumbered from v1.0.3; all cited ids corrected + evidenced)
CSA AISMMv3.72026-06 · released
ISO/IEC 4200120232023 · released
NIST AI RMFAI 100-1 (1.0)released 2023 · v1.0 released Jan 2023; revision + COSAiS agentic overlays / Cyber AI Profile in draft 2026
EU AI ActReg (EU) 2024/1689in force 2024 · phased applicability: Feb 2025 / Aug 2025 / Aug 2026 / Aug 2027
AWS Agentic AI Security Scoping Matrix20252025 · released