Subscribe to the Non-Human & AI Identity Journal

Why do agentic systems create a bigger lateral movement risk than ordinary automation?

Agentic systems create bigger lateral movement risk because they can combine read, reasoning, and write actions inside one runtime context. That lets malicious input influence a later action in another system, which turns normal access into cross-system propagation instead of a single isolated task.

Why This Matters for Security Teams

Agentic systems are different from ordinary automation because they do not just execute a fixed workflow. They can decide what to do next, chain tools, and carry state from one action to another. That creates a lateral movement path when a malicious prompt, poisoned input, or compromised tool response influences a later step in a separate system. Guidance from the OWASP Agentic AI Top 10 and NIST’s NIST AI Risk Management Framework both point to the same issue: autonomy changes the blast radius.

For non-human identities, the risk is not only stolen secrets. It is that an agent can use valid access in ways defenders did not pre-authorise, especially when its runtime is trusted across multiple APIs, queues, and data sources. NHIMG’s AI LLM hijack breach coverage and the 52 NHI Breaches Analysis show that identity compromise is rarely contained to one system once credentials or trust boundaries are reused. In practice, many security teams encounter lateral movement only after an agent has already chained actions across services, rather than through intentional design review.

How It Works in Practice

Ordinary automation typically follows a narrow, predictable path: a job starts, one credential is used, one system is updated, and the task ends. Agentic systems blur those steps. The agent can read untrusted content, infer a next action, call tools, and then use the output of one system as input to another. That means a single compromised prompt or document can become a bridge into email, ticketing, code repositories, cloud consoles, or data platforms.

Defenders should think in terms of runtime trust, not just initial access. Best practice is evolving toward context-aware authorization, just-in-time credential issuance, and short-lived workload identities. This aligns with the CSA MAESTRO agentic AI threat modeling framework, which emphasises understanding tool chains and decision points, and with NHIMG’s OWASP NHI Top 10, which highlights identity abuse as a primary control gap.

  • Use workload identity, such as OIDC-backed tokens or SPIFFE/SPIRE-style proof, so the agent is authenticated as the workload it is, not as a long-lived shared secret.
  • Issue ephemeral credentials per task, with tight TTLs and automatic revocation after completion.
  • Evaluate policy at request time using policy-as-code so access depends on task, destination, and data sensitivity.
  • Separate read, reasoning, and write privileges where possible so an agent cannot freely convert observation into action.

The practical objective is to prevent the agent from reusing one trust decision to cross into another domain. These controls tend to break down when the environment still depends on shared service accounts, broad API tokens, or connector sprawl because the agent can pivot through every place that token is trusted.

Common Variations and Edge Cases

Tighter agent controls often increase operational overhead, so organisations have to balance safety against throughput and developer friction. That tradeoff is real, especially in fast-moving environments where agents support incident response, software delivery, or customer operations.

There is no universal standard for this yet, but current guidance suggests the highest-risk cases are agents with write access, external tool use, and access to multiple trust domains. A read-only summariser is not the same as an agent that can create tickets, approve changes, or trigger infrastructure actions. The latter can propagate a malicious instruction much farther if the same identity is trusted in several systems. This is why NHIMG’s Analysis of Claude Code Security and the Ultimate Guide to NHIs — Key Challenges and Risks are useful references for understanding how trust assumptions collapse under autonomous execution.

Teams should be especially cautious in multi-agent pipelines, where one agent’s output becomes another agent’s instruction set, and in environments with legacy connectors that cannot enforce per-action authorization. The guidance also becomes weaker when logging, approvals, or human review happen after the write action instead of before it. In those cases, lateral movement is not just possible, it is structurally normal.

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 CSA MAESTRO address the attack and risk surface, while NIST AI RMF set the governance and control requirements practitioners need to meet.

Framework Control / Reference Relevance
OWASP Agentic AI Top 10 A1 Agent autonomy and tool chaining are the root of lateral movement risk.
CSA MAESTRO MAESTRO models agent workflows, trust boundaries, and escalation paths.
NIST AI RMF GOVERN AI RMF GOVERN addresses accountability for autonomous system behaviour.

Assign ownership, approvals, and monitoring for agent actions across the full runtime chain.