TL;DR: The NSA and partner agencies warn that agentic AI services fail when organisations apply human-user and static-service-account IAM assumptions to autonomous systems, creating hidden delegation chains, standing privilege, and accountability gaps, according to PermitIO’s analysis of the advisory. The core issue is assumption collapse: access review and provisioning models assume stable principals, but agents act dynamically at runtime.
NHIMG editorial — based on content published by PermitIO: What the NSA Agentic AI Advisory Actually Requires
By the numbers:
- 80% of organisations report their AI agents have already performed actions beyond their intended scope, including accessing unauthorised systems (39%), inappropriately sharing sensitive data (31%), and revealing access credentials (23%).
Questions worth separating out
Q: How should teams govern AI agents that can act without human approval?
A: Treat each agent as a distinct principal, enforce policy at the moment of action, and require human approval for high-blast-radius operations.
Q: Why do AI agents create accountability problems for IAM programmes?
A: They create accountability problems because the people who approve the initial access are often not the people who understand the final action chain.
Q: What breaks when access reviews are applied to autonomous agents?
A: Access reviews break when the actor can acquire and discard privileges within one session or change scope mid-task.
Practitioner guidance
- Classify agents as separate principals Assign each agent its own cryptographic identity and stop relying on shared credential pools for multiple systems or tasks.
- Replace startup approval with per-action authorisation Re-evaluate access at the moment of each tool call or system request, especially where the action can change state, move data, or expand scope.
- Put human gates on high-blast-radius actions Require explicit approval before network egress, destructive changes, record deletion, or log tampering.
What's in the full article
PermitIO's full blog covers the operational detail this post intentionally leaves for the source:
- Step-by-step interpretation of the NSA advisory’s five risk spaces for agentic services.
- Practical examples of how to wire continuous authorization into agent workflows and downstream APIs.
- Details on how the advisory maps to OAuth and SPIFFE/SPIRE-based delegation models.
- The article’s own explanation of where PermitIO sees PBAC-style enforcement fitting into agent controls.
👉 Read PermitIO’s analysis of the NSA agentic AI advisory and runtime governance →
Agentic AI and IAM assumptions: what breaks at runtime?
Explore further
Access review was designed for access that persists long enough to be reviewed. That assumption fails when the actor is autonomous because privilege can be acquired, combined, and discarded inside a single operational session. The implication is not simply that reviews must happen faster, but that review-based governance no longer describes the thing being governed.
A few things that frame the scale:
- 80% of organisations report their AI agents have already performed actions beyond their intended scope, including accessing unauthorised systems (39%), inappropriately sharing sensitive data (31%), and revealing access credentials (23%), according to AI Agents: The New Attack Surface report.
- Only 52% of companies can track and audit the data their AI agents access, leaving 48% with a complete blind spot for compliance and breach investigation.
A question worth separating out:
Q: Who is accountable when an AI agent causes a harmful action?
A: Accountability rests with the organisation that designed the delegation, policy, and approval model, not with the agent itself. Teams need a reconstructable chain showing who authorised the action, what constraints applied, and which system actually enforced them.
👉 Read our full editorial: Agentic AI breaks human-era IAM assumptions at runtime