By NHI Mgmt Group Editorial TeamDomain: AI SecuritySource: ARMOPublished May 30, 2026

TL;DR: AI agent attacks should be classified by detectability, not origin, because point-, sequence-, and state-detectable attacks demand different control classes and budgets, according to ARMO. The key operational shift is that many agent risks are only visible through per-agent baselines, cross-layer correlation, or posture controls that runtime tooling cannot replace.


At a glance

What this is: This is a taxonomy of AI agent attacks that sorts them by whether they leave point, sequence, or state evidence, and it concludes that detectability determines the control model.

Why it matters: It matters because IAM, NHI, and AI governance teams need to know which agent behaviours runtime detection can catch, which need correlation, and which belong to posture and build-time controls.

By the numbers:

👉 Read ARMO's analysis of AI agent attack detectability and runtime blind spots


Context

AI agent attack detection fails when teams assume that the place an attack enters tells them how to catch it. In practice, the security problem is evidence shape, not origin: some attacks surface as a single event, some only as a sequence of legitimate actions, and some never appear in runtime telemetry at all. For AI agent security, that distinction is central to how detection, governance, and response are designed.

This matters for IAM and NHI programmes because AI agents behave like governed identities with tools, permissions, and persistence, but not all risk is identity risk in the same way. When an agent misuses credentials, reads data in the wrong sequence, or carries poisoned state across sessions, traditional access control alone is not enough. Teams need to separate runtime observability from posture and lifecycle control instead of assuming one control plane covers all three.


Key questions

Q: How should security teams classify AI agent attacks for detection planning?

A: Classify them by evidence, not by source. If one event is enough to prove compromise, the attack is point-detectable. If the attack only becomes visible across a sequence of legitimate actions, it is sequence-detectable. If nothing is observable at runtime and the problem sits in standing configuration or slowly changing state, it is state-detectable and needs posture or build-time control.

Q: Why do AI agents create detection problems that normal runtime tools miss?

A: AI agents often abuse authorized capabilities rather than breaking policy in a single step. That means the dangerous behaviour may look normal until you examine the order, scope, or rate of actions across time. Runtime tools that evaluate isolated events will miss those chains unless they also maintain per-agent baselines and correlation across layers.

Q: What do security teams get wrong about AI memory and context?

A: Teams often assume built-in memory is equivalent to managed knowledge, but it is usually just product-specific storage. The mistake is relying on vendor-held session data for persistent work instead of creating a governed source of truth that can survive outages, migrations, and tool changes.

Q: Who should own risk when an AI agent triggers privileged actions?

A: Ownership should sit with the team that governs the identity, tools, and downstream systems the agent can affect. Security, IAM, platform, and application teams all share pieces of the risk, but one named owner must be accountable for the full delegation chain. Without that, audit and response become fragmented.


Technical breakdown

Point-detectable AI agent attacks

Point-detectable attacks reveal themselves in one abnormal event. A process that should never execute, an unapproved network destination, or a privileged call outside policy can be caught by standard runtime rules because the signal is local and immediate. This class is familiar to container, endpoint, and network tooling, which is why it is the least architecturally interesting category. The important distinction is that the agent itself does not make the attack hard to see, the evidence format does. When one event is enough, conventional detection can usually do the job.

Practical implication: keep signature and policy enforcement focused on single-event anomalies, but do not assume they cover multi-step agent abuse.

Sequence-detectable attacks and per-agent baselines

Sequence-detectable attacks are the hard middle case. Each action is authorized on its own, but the order, scope, or rate of actions reveals compromise. An agent may read a sensitive record, call an allowed tool, and then transmit data externally without any single step looking suspicious. This is where per-agent baselines matter, because generic workload rules cannot distinguish normal variation from a malicious chain. The detection problem becomes one of correlation across inputs, tool calls, permissions, and timing, not just one of event filtering. For agentic AI, this is the primary runtime blind spot.

Practical implication: build per-agent behavioural baselines and correlation logic that can reconstruct intent from normal-looking events.

State-detectable risk in AI agents and NHI governance

State-detectable attacks never produce a runtime signal at the moment compromise occurs. The problem exists as standing configuration, overprivilege, exposed model state, or slow conditioning such as memory poisoning and RAG contamination. Because the evidence lives in posture or build-time inputs, a SOC stack cannot reliably detect it after the fact. This is where AI governance meets NHI governance: the agent may be treated as a runtime identity, but its risk also depends on how memory, retrieval, and permissions were provisioned before execution began. Runtime coverage cannot substitute for lifecycle and posture control.

Practical implication: move standing privilege, memory integrity, and retrieval hygiene into posture and build-time governance rather than detection-only workflows.


NHI Mgmt Group analysis

Detectability is the more useful taxonomy for AI agent security than origin. Origin-based taxonomies help teams map where attacks enter, but they do not tell practitioners whether existing controls will catch them. Detectability answers the operational question that budgets depend on: can a control observe the compromise at runtime, or must the issue be handled elsewhere? For identity programmes, that means separating agent behaviour monitoring from identity lifecycle and posture management.

Sequence-detectable abuse is the dominant AI agent failure mode. Most dangerous agent activity is not a forbidden action, but a legitimate action taken in the wrong order, scope, or rate. That makes this class hard for rules engines and container tools, and it is why per-agent baselines become a core control pattern. Practitioners should treat cross-layer correlation as a detection requirement, not a premium add-on.

State-detectable exposure creates the strongest boundary between SOC and governance. If the evidence is standing misconfiguration or slow conditioning, runtime detection is the wrong control plane. This is the named concept that matters here: state-detectable drift, meaning conditions that are dangerous before execution and invisible to alerting when they are introduced. The practical consequence is that NHI governance, AI governance, and posture management have to own the risk before the SOC ever sees it.

AI agents should be governed as identities, but not only as identities. The article’s main contribution to the field is that it connects agent behaviour, permission state, and persistent context into one security problem. That reinforces the need to align IAM, NHI, and AI governance around evidence type rather than team boundaries. Practitioners should use the taxonomy to decide which controls belong in access management, which belong in runtime telemetry, and which belong in build-time assurance.

This taxonomy validates a layered control model for agentic AI security. No single control class covers point, sequence, and state risk. That means the market should stop presenting runtime detection as a complete answer to agentic AI security. Teams should use the taxonomy to shape control coverage, procurement criteria, and incident triage around what evidence actually exists.

What this signals

The programme implication is straightforward: teams that treat AI agents as ordinary workloads will underbuild detection and overtrust runtime telemetry. The better operating model is to separate event-level detection from state-level governance, then map each agent control to the evidence it can actually observe.

State-detectable drift: standing privilege, poisoned context, and exposed retrieval state can exist long before any alert fires, so the control objective is prevention and assurance, not only detection. That is why governance teams should align agent access reviews with identity lifecycle controls and posture checks, not leave them in a SOC queue.

For practitioners, the next step is to align agent risk reviews with the controls described in OWASP Agentic AI Top 10 and the NIST AI Risk Management Framework. That gives security, IAM, and AI teams a shared language for deciding which risks belong in runtime monitoring and which belong in lifecycle governance.


For practitioners

  • Map agent attacks to evidence classes Classify every plausible AI agent attack in your environment as point-detectable, sequence-detectable, or state-detectable before choosing controls. Use that mapping to decide whether the right answer is runtime policy, per-agent correlation, or posture and build-time assurance.
  • Build per-agent behavioural baselines Define normal order, scope, and rate of action for each production agent, then correlate tool calls, input sources, and downstream effects against that baseline. This is the minimum control pattern for catching legitimate-looking sequences that become malicious only in context.
  • Shift standing-state risk into posture controls Treat overprivileged identities, exposed context stores, retrieval poisoning, and similar standing conditions as pre-execution governance problems. Put them into build-time review, access lifecycle management, and configuration drift checks instead of waiting for the SOC to infer compromise.
  • Separate detection budgets by control class Allocate runtime detection spend to point and sequence classes, and reserve posture and governance investment for state-detectable issues. That prevents false confidence from tools that watch the wrong evidence type and makes coverage gaps easier to explain to leadership.

Key takeaways

  • AI agent attacks are easier to manage when you classify them by evidence shape rather than by where they enter the system.
  • Most agent compromise is sequence-based or state-based, which means runtime-only controls will always leave material gaps.
  • Identity, posture, and AI governance teams need to own standing privilege and persistent state before the SOC can meaningfully detect abuse.

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 MITRE ATT&CK address the attack and risk surface, while NIST AI RMF, NIST CSF 2.0 and NIST SP 800-53 Rev 5 set the governance and control requirements practitioners need to meet.

FrameworkControl / ReferenceRelevance
OWASP Agentic AI Top 10The article maps agent attacks to common agentic AI threat classes.
NIST AI RMFMANAGEThe piece is about governing AI risk by control class and evidence type.
NIST CSF 2.0DE.CM-1Detection coverage is the core topic of the taxonomy.
NIST SP 800-53 Rev 5SI-4The article focuses on runtime monitoring and correlation across agent actions.
MITRE ATT&CKTA0006 , Credential Access; TA0008 , Lateral MovementAgent misuse, credential abuse, and chained action patterns mirror ATT&CK behaviours.

Map agent abuse chains to ATT&CK tactics to prioritize detections and response playbooks.


Key terms

  • Point-Detectable Attack: An attack that is visible in a single abnormal event, such as an unexpected process, destination, or privilege action. The alert can usually be raised from one observation without needing context from other telemetry.
  • Sequence-Detectable Attack: An attack that appears normal event by event but becomes suspicious when the order, scope, or rate of actions is considered together. It usually requires baselines and correlation to reveal intent across multiple legitimate-looking steps.
  • State-Detectable Risk: A risk that exists as standing configuration, persistent context, or slow conditioning rather than as a runtime event. It must be handled through posture, lifecycle, or build-time controls because alerting systems cannot reliably see it at the moment it is introduced.
  • Per-Agent Baseline: A runtime profile of normal tool use, destinations, and state changes for one specific agent deployment. It allows security teams to distinguish expected behaviour from coercion or drift, and it becomes the basis for moving from audit mode to enforced controls.

What's in the full article

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

  • Detailed examples of prompt injection, memory poisoning, tool abuse, model tampering, and agent-to-agent coercion
  • The Application Profile DNA baseline model that ARMO uses to represent normal agent behaviour
  • How CADR correlates application, container, Kubernetes, and cloud signals into a single incident story
  • The isolation test ARMO recommends for deciding whether an attack is point-, sequence-, or state-detectable

👉 The full ARMO blog explains the taxonomy, baseline model, and correlation layer in operational detail.

Deepen your knowledge

The NHI Foundation Level course, the industry's only accredited NHI security programme, covers NHI governance, agentic AI identity, machine identity security, IAM, and secrets management. It helps security, identity, and cloud teams align control ownership across runtime, posture, and lifecycle risk.
NHIMG Editorial Note
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