By NHI Mgmt Group Editorial TeamDomain: Agentic AI & NHIsSource: ArnicaPublished June 30, 2026

TL;DR: Agentic AI systems are expanding enterprise attack surfaces because agents can plan, call tools, and act across APIs with minimal oversight, according to Arnica's June 2026 guide. That shift makes least-privilege identities, scoped credentials, auditability, and runtime approval gates the baseline, not optional hardening.


At a glance

What this is: This is an independent analysis of agentic AI security, and its central finding is that AI agents should be governed as privileged identities with scoped access, not as ordinary application features.

Why it matters: It matters because IAM, PAM, and NHI programmes now need to control agent behaviour, tool access, and auditability across autonomous workflows, not just human and service-account access.

By the numbers:

👉 Read Arnica's guide to agentic AI security and identity governance


Context

Agentic AI security is the governance problem that appears when software can plan and execute across tools, APIs, and data sources with minimal human oversight. The first-order issue is not model quality but identity behaviour, because each agent can carry privileges into production systems, databases, and external services.

That changes the control model for NHI, IAM, and PAM teams. Existing approaches that treat access as a static entitlement, or assume human-paced review before risky actions, do not map cleanly to agents that can spawn sub-agents, reuse credentials, and trigger chained actions in a single workflow.

Arnica frames the topic through code-writing and production-access use cases, but the broader problem is industry-wide: once an agent can act on behalf of a user, it behaves like a governed identity and must be treated that way.


Key questions

Q: How should security teams govern AI agents that can choose tools at runtime?

A: Security teams should govern runtime agent choice as an access event, not as a simple application action. That means scoping permissions to the task, limiting token lifetime, logging every tool decision, and blocking the agent from reaching systems outside its approved context. Static roles alone are not enough when the execution path changes on each run.

Q: Why do AI agents create more risk than traditional automation?

A: AI agents create more risk because they can interpret context, choose actions, and invoke tools autonomously. Traditional automation follows fixed rules, but an agent can be manipulated into using its own authority in unintended ways. That makes permission scope, tool boundaries, and monitoring more important than model accuracy alone.

Q: What breaks when AI agents are given broad inherited permissions?

A: Broad inherited permissions break the assumption that access is tied to a narrow business need. The result is larger blast radius, weaker accountability, and faster propagation of mistakes or abuse across connected systems. A single compromised or misconfigured agent can then touch far more data and workflows than the original task required.

Q: Who is accountable when an AI agent takes an unsafe action?

A: Accountability should sit with the business owner of the agent, the team that provisioned the access, and the control owners responsible for monitoring and revocation. If no one can answer who approved the identity, the scope, and the oversight model, the governance framework is not complete enough for production.


Technical breakdown

Why agentic AI becomes an identity and access problem

An agentic system is not just a model that answers prompts. It is a runtime actor that can authenticate, request tools, read data, and trigger actions across systems. That means the security boundary shifts from input filtering to identity governance, because the real risk is what the agent can do after it is trusted. In practice, the dangerous patterns are broad permissions, shared credentials, and weak audit trails that make it impossible to prove what the agent accessed or changed. Once agents can delegate to sub-agents or chain multiple tools, the attack surface expands across the entire execution path, not just the first prompt.

Practical implication: Treat every agent as a first-class identity and remove any assumption that model access control alone is enough.

How prompt injection and tool misuse turn access into impact

Prompt injection works because the agent treats retrieved content, tool output, or embedded instructions as part of its reasoning loop. If that content is poisoned, the agent may follow attacker-supplied instructions without any traditional exploit against the host system. Tool misuse is the next stage: once an attacker steers the agent, the agent may call APIs, write to databases, or execute code in ways that exceed the original task. The same pattern appears in multi-agent systems, where one compromised step corrupts the context carried into later steps. This is why agentic AI risk is closer to credentialed abuse than to classic web application injection.

Practical implication: Validate tool outputs and constrain allowed actions before an agent can turn malicious context into downstream execution.

Why auditability and approval gates matter at runtime

Agentic systems can complete entire sequences before a human sees the result, which makes post-hoc review too late for high-impact actions. Audit logging therefore has to bind every action to a specific agent identity, every tool call to a clear authorization path, and every escalation point to an approval decision. Human-in-the-loop gates are not about slowing automation for its own sake. They are about ensuring irreversible actions still have a decision checkpoint when the workflow crosses a material risk threshold. Without that structure, the organisation inherits an opaque decision chain that is hard to investigate and harder to govern.

Practical implication: Place approval gates at irreversible steps and require end-to-end logging for every agent action and tool invocation.


Threat narrative

Attacker objective: The attacker aims to redirect a trusted agent into performing privileged actions that expose data, alter systems, or propagate malicious instructions across workflows.

  1. Entry occurs when a malicious prompt, poisoned document, or compromised tool response is accepted by the agent as trusted context.
  2. Escalation happens when the agent uses excessive permissions, inherited credentials, or weak inter-agent trust to expand beyond the original task.
  3. Impact follows when the agent performs unintended writes, data exposure, code changes, or external API actions before a human review step can intervene.

Read our 52 NHI Breaches Analysis report for a comprehensive view of breaches impacting Non-Human Identities including AI Agents.


NHI Mgmt Group analysis

Agentic AI turns every deployed assistant into a governed identity. That is the correct mental model for security teams because these systems authenticate, request access, and act across tools and APIs. The practical conclusion is that IAM, PAM, and NHI governance now have to cover runtime behaviour, not just provisioning.

Excessive agency is the agentic equivalent of privilege creep, but with a faster failure path. The article's core risk is not that agents exist, but that they are often allowed to do more than the task requires. When a workflow can chain tool calls and spawn sub-agents, over-privilege becomes an execution-time problem rather than a periodic review problem.

Prompt injection is a trust boundary failure, not a content problem. The agent acts on retrieved content as if it were instructions, which means the security issue sits in how context is trusted and consumed. That pushes teams toward runtime trust controls, scope restrictions, and output validation as the real control plane.

Agentic AI security exposes a runtime auditability gap that human IAM processes were never designed to close. Access reviews assume privileges persist long enough to be observed and recertified. In agentic workflows, the meaningful decision and the harmful action can happen inside one execution window, so the governance record has to exist at runtime or not at all.

Agentic AI security requires a distinct concept: identity blast radius. The article makes clear that a single agent can touch code, data, and external services in one flow, which means blast radius is determined by the combination of credentials, tool scopes, and delegation paths. Practitioners should measure and shrink that blast radius before scaling deployment.

From our research:

What this signals

Identity blast radius: the next governance question is not whether an agent is allowed to act, but how far that identity can reach before a human or policy boundary stops it. The combination of runtime monitoring, scoped credentials, and approval gates is becoming the practical minimum for safe scaling.

With 80% of organisations already reporting out-of-scope agent behaviour, the issue is no longer theoretical. Teams should expect agent inventory growth, stronger audit expectations, and more demand for evidence that each agent was constrained to the task it was given.


For practitioners

  • Define a unique identity for each agent Issue separate credentials for every agent, do not share tokens between agents, and expire access when the task ends. Map each identity to the exact repositories, databases, and APIs the agent needs.
  • Restrict tool scopes to task-level access Allow read-only access for read tasks, block write actions unless explicitly needed, and remove broad inherited permissions that would let an agent move beyond its intended workflow.
  • Log every agent action end to end Record the agent identity, tool call, input, output, and authorization decision for each step so investigators can reconstruct behaviour and auditors can prove accountability.
  • Insert approval gates at irreversible steps Pause workflows before code commits, database writes, external sharing, or other high-impact actions so a human reviewer can confirm the context before execution closes.

Key takeaways

  • Agentic AI security is an identity problem first, because agents execute real actions across tools, APIs, and data sources.
  • The evidence shows the governance gap is already material, with most organisations seeing out-of-scope agent behaviour and many unable to audit access fully.
  • Security teams need separate agent identities, narrow scopes, runtime logging, and approval gates at irreversible steps to keep autonomy within control.

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.

FrameworkControl / ReferenceRelevance
OWASP Agentic AI Top 10The article maps directly to OWASP agentic AI threats like prompt injection and excessive agency.
NIST AI RMFMANAGEAI RMF management applies to runtime governance and approval gates for agentic systems.
NIST CSF 2.0PR.AC-4Access control is central because agent identities need scoped, task-level permissions.
NIST Zero Trust (SP 800-207)Zero trust applies to agent-to-tool communication and runtime verification.
OWASP Non-Human Identity Top 10NHI-03Agent identities need credential lifecycle governance and rotation discipline.

Use MANAGE to define controls for authorization, monitoring, and escalation of agent behaviour.


Key terms

  • Agentic AI Security: Agentic AI security is the discipline of securing autonomous AI systems that can take actions, use tools, and chain decisions without direct human approval at each step. It covers identity and access management for AI agents, prompt injection defence, tool call governance, credential scoping, and runtime monitoring. As agentic systems acquire real-world authority — API access, file writes, workflow triggers — the security model must treat them as non-human identities with explicit lifecycle controls, not trusted processes.
  • Excessive agency: A condition where an AI system is given more operational authority than its task requires. The risk is not just poor output. It is that mistakes, manipulation, or compromise can produce destructive actions at machine speed across the systems the agent can reach.
  • 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

Arnica's full blog post covers the operational detail this analysis intentionally leaves for the source:

  • Detailed breakdown of agentic AI security risks, including prompt injection, excessive agency, memory poisoning, and tool misuse.
  • Framework discussion for the OWASP Agentic AI Top 10 and related scoping approaches used to map controls to agent capability.
  • Practical guidance on scoped credentials, audit logging, and human-in-the-loop gates for production deployments.
  • Testing approaches for indirect prompt injection, sub-agent abuse, and runtime regression checks.

👉 The full Arnica post covers frameworks, testing approaches, and governance strategies for agentic AI security.

Deepen your knowledge

NHI governance, agentic AI identity, and machine identity security are core topics in our NHI Foundation Level course, the industry's only accredited NHI security programme. If you are building or maturing an IAM or identity governance programme, it is worth exploring.
NHIMG Editorial Note
Published by the NHIMG editorial team on August 18, 2026.
NHI Mgmt Group — the independent authority on Non-Human Identity, IAM, and Agentic AI security. nhimg.org