TL;DR: AI agents can request and use access in ways that exceed their original provisioning, and Fiddler’s article argues that existing permission models, bearer tokens, and static grants are not designed for that behaviour. The core issue is assumption collapse: access review and fixed-scoping models presume stable permissions, while agents can seek new access mid-task and expose secrets through context.
At a glance
What this is: This is an analysis of why AI agent identity is becoming the foundational security problem in agentic systems, with the key finding that static permission models break when agents reason and request access dynamically.
Why it matters: IAM, IGA, PAM, and NHI programmes need to account for agent behaviour because the same provisioning patterns used for workloads can fail when a system can seek new access mid-task.
By the numbers:
- 90 to 95 percent of permissions granted today are over-privileged.
👉 Read Fiddler's analysis of AI agent identity and permission risk
Context
AI agent identity is the problem of governing what a reasoning system can access, when it can request more access, and how that access is constrained over time. The article argues that existing machine identity models assume fixed permissions, but agents can change the access conversation while the task is still in progress.
That matters for IAM, NHI governance, and lifecycle controls because the security model was built around stable subjects, predictable request paths, and revocation after the fact. Once the subject can reason about its own needs, the familiar provisioning and review model starts to lose control of the execution window.
The article also makes clear that local developer environments are the hardest place to apply cloud-native identity assumptions. On a laptop, an agent can reach cleartext tokens, recovery codes, and other secrets that were never meant to enter a model context in the first place.
Key questions
Q: How should security teams manage permissions for AI agents?
A: Security teams should regularly assess and update the permissions granted to AI agents to ensure they align with their intended scope. Implementing a governance framework that details access levels and usage policies is crucial to mitigate risks. Moreover, continuous monitoring can detect irregular permissions that may increase exposure.
Q: Why do autonomous AI systems create more identity risk than normal automation?
A: Normal automation follows a fixed path, but autonomous systems can interpret goals, choose actions, and continue without waiting for a person. That makes intent less predictable and review cycles less useful. The risk increases when the system can broaden scope or trigger actions that affect data, money, or compliance.
Q: What do organisations get wrong about securing AI agents with secrets?
A: They often treat shared secrets and fixed tokens as acceptable trust mechanisms for agents that behave dynamically. That approach creates durable credentials for a system that may need short-lived, tightly scoped, and revocable trust. The better model is cryptographic identity with connection-level verification and fast revocation.
Q: What is the difference between human access review and AI agent access review?
A: Human access review focuses on stable job roles and periodic entitlement checks. AI agent access review must also account for runtime behaviour, changing integrations, token lifetimes, and delegated actions across SaaS systems. Agents can change what they touch faster than a standard access review cycle expects.
Technical breakdown
Why fixed permissions fail for reasoning agents
Traditional machine identity assumes a workload is provisioned once and then operates within a stable permission set. AI agents break that model because they can decide mid-task that they need access to a new system or dataset. That means the identity subject is no longer just a consumer of granted permissions, but a requester of new ones during execution. When over-privilege is already the default, the agent does not merely inherit risk. It amplifies it by reaching deeper into systems than the original provisioning decision anticipated.
Practical implication: Treat every mid-task access request as a governance event, not an ordinary workflow step.
Why local environments create a different identity problem
Cloud workload identity can rely on controlled signals such as account, VPC, issuer, and service account token state. Local environments lack those stable signals, which makes attestation much harder. An agent running on a laptop can inspect the file system, including downloads folders, dot files, and other locations where recovery codes or bearer tokens may exist. The technical issue is not simply endpoint exposure. It is that the identity boundary is far less observable, so secrets can be present in places the model can reach before any policy engine intervenes.
Practical implication: Assume local agent execution can see far more than the task needs unless the process boundary is explicitly constrained.
Why bearer tokens and LLM context should stay separated
Bearer tokens do not prove possession and do not carry meaningful provenance. If such a token enters the LLM context, it can be leaked accidentally in output or extracted through prompt injection. The safer pattern is short-lived OAuth access tokens delivered through a proxy or gateway so the credential never enters model context at all. That separation matters because the model can reason about the task without ever seeing the secret itself. The proxy becomes the policy enforcement point, while the model stays out of the credential path.
Practical implication: Place secrets outside model context and force all credential use through a controlled enforcement layer.
NHI Mgmt Group analysis
AI agents are not just another NHI class, because their reasoning changes the access model itself. The identity question is no longer only whether a workload has a secret, but whether it can decide that new access is required during task execution. That shifts the security problem from static provisioning to runtime governance. The implication is that agent identity must be treated as a behavioural control surface, not a one-time entitlement record.
Fixed-permission governance was designed for workloads that do not renegotiate access mid-task. That assumption fails when the actor is autonomous because the agent can request new tools, new data, and new privileges as part of the same execution chain. Access review cycles, provisioning approvals, and post-hoc revocation all assume a stable subject long enough to observe. The implication is that current governance cadences do not match agent timing.
Prompt injection is the agent-era equivalent of account takeover because it can redirect the identity’s effective behaviour without changing the underlying account. If the agent can be induced to process hostile content, it may change what it requests or reveals even though its credentials remain valid. That makes context integrity part of identity governance, not just model safety. The implication is that identity teams and AI teams now share the same attack surface.
Dynamic authorization becomes the only defensible pattern when access scope is discovered during execution. A grant-once-and-forget model cannot keep up with agents that may need different permissions for each subtask. The real control point is the policy decision step that validates intent, scope, and current context before issuing a short-lived token. The implication is that least privilege has to be expressed at runtime, not just at onboarding.
Local agent environments reveal an identity blast radius that cloud controls often hide. On a laptop, the agent can traverse file systems and encounter credentials that were never meant to be machine-readable in the first place. That creates a governance problem that combines endpoint exposure, secrets handling, and agent behaviour in one place. The implication is that local agent deployment needs stricter process and secret boundaries than most teams currently enforce.
From our research:
- 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, according to AI Agents: The New Attack Surface report.
- 92% agree governing AI agents is critical to enterprise security, yet only 44% have implemented any policies to do so, according to AI Agents: The New Attack Surface report.
- For a broader control lens, see OWASP NHI Top 10 for agentic application risk patterns and governance priorities.
What this signals
Identity blast radius: AI agents force security teams to think about how far a single delegated task can reach before governance detects the deviation. That is a different problem from classic workload hardening because the subject can request scope expansion while still appearing legitimate. The practical shift is toward runtime visibility and task-scoped enforcement rather than after-the-fact review.
The programme implication is straightforward: if secrets, files, and access requests all remain visible to the same executing process, the control boundary is too wide. Teams should align agent governance with the same discipline used for high-risk NHI access, then validate those controls against agent-specific patterns in the OWASP Agentic AI Top 10 and the NIST AI Risk Management Framework.
For practitioners
- Define runtime access request boundaries Map every point where an agent can request new access during a task and require policy approval before the request can proceed. Do not rely on the original provisioning decision to cover all downstream needs.
- Keep credentials out of model context Deliver secrets through a proxy or gateway so tokens never enter the LLM context window. Use short-lived OAuth access tokens with task-scoped permissions instead of reusable bearer tokens.
- Separate local agent execution from secret-bearing file paths Restrict what the process can read on developer laptops, especially downloads folders, dot files, and recovery-code locations. If the agent can browse the file system freely, it can reach secrets that were never intended for automation.
- Instrument prompt injection as an identity issue Treat hostile or malformed content that changes agent behaviour as a governance event, not only a model-safety issue. Log when an input causes the agent to request new permissions, reveal data, or deviate from expected task scope.
Key takeaways
- AI agents expose a permission model problem, not just a model safety problem, because they can request and use access mid-task.
- Static grants, bearer tokens, and post-hoc review all assume a stable subject long enough to govern, which agents do not guarantee.
- The control shift is toward runtime policy decisions, secret isolation, and tighter process boundaries in both cloud and local environments.
Standards & Framework Alignment
This section maps relevant standards and security frameworks to the operational risks and controls described in this guidance.
OWASP Agentic AI Top 10 and OWASP Non-Human Identity Top 10 address the attack and risk surface, while NIST AI RMF, NIST CSF 2.0 and NIST Zero Trust (SP 800-207) set the governance and control requirements practitioners need to meet.
| Framework | Control / Reference | Relevance |
|---|---|---|
| OWASP Agentic AI Top 10 | Agent permission drift and prompt injection are central risks in the article. | |
| OWASP Non-Human Identity Top 10 | NHI-01 | The article focuses on identity scope, secrets exposure, and over-privileged agent access. |
| NIST AI RMF | GOVERN | The post emphasises accountability and runtime oversight for AI agents. |
| NIST CSF 2.0 | PR.AC-4 | The article centres on access management and least-privilege enforcement. |
| NIST Zero Trust (SP 800-207) | section 2.1 | Runtime authorization and continuous verification align with zero trust principles. |
Map agent task boundaries and context exposure to the agentic application risk model before deployment.
Key terms
- AI Agent Identity: The digital identity used by an autonomous AI agent to authenticate to external systems, APIs, and services. Managing AI agent identities is an emerging and rapidly evolving area of NHI security.
- Runtime Authorisation: Runtime authorisation is the practice of deciding access while a task is in progress, rather than only at provisioning time. It matters for NHIs because credentials and entitlements can change risk mid-session, especially when automation or AI agents interact with sensitive systems.
- Prompt Injection (Agentic): An attack where malicious instructions are embedded in content that an AI agent reads — causing the agent to execute unintended actions using its own legitimate credentials. A primary vector for agent goal hijacking and identity abuse.
- Identity Blast Radius: The amount of damage a compromised identity can cause across systems, data, and infrastructure. In NHI environments, it is shaped by permissions, network reach, and administrative capability rather than by the credential alone. Reducing blast radius is a containment strategy that limits lateral movement and data exposure.
What's in the full article
Fiddler's full blog covers the operational detail this post intentionally leaves for the source:
- The identity-attestation approach for local agent processes, including kernel audits and code-signing trust chains.
- The proxy and hints pattern for keeping secrets out of LLM context while still allowing task completion.
- The runtime authorization sequence that separates policy decision from enforcement for agent requests.
- The discussion with 1Password's Jeff Malnick and the Agent Auth Protocol reference points.
Deepen your knowledge
NHI governance, agentic AI identity, and machine identity lifecycle are core topics in our NHI Foundation Level course, the industry's only accredited NHI security programme. If you are responsible for identity security strategy or NHI governance in your organisation, it is worth exploring.
Published by the NHIMG editorial team on August 19, 2026.
NHI Mgmt Group — the independent authority on Non-Human Identity, IAM, and Agentic AI security. nhimg.org