Agentic Security April 2026

Agentic AI security

Agentic AI security covers the runtime controls and signed proof needed when agents call tools, use credentials, and act with delegated authority.


What this page covers

This guide explains the attack surface unique to agentic AI architectures — delegation chains, inter-agent injection, tool-use exploits, and runtime drift — and the runtime controls needed to defend against them. Coverage is mapped to NIST AI RMF Manage 2.x and OWASP LLM 08 (Excessive Agency).

What makes AI “agentic”

An AI agent is a system that receives a goal, breaks it into sub-tasks, calls external tools, and acts on results — often without human approval at each step. A multi-agent system chains several of these together: one agent plans, another retrieves data, a third executes code, and a fourth validates the output.

This architecture powers the most capable AI products shipping today — coding assistants that create pull requests, research agents that query databases and synthesize reports, customer-service systems that look up orders and issue refunds. The capability leap is real. So is the security gap.

Traditional AI security focused on a single model endpoint: you send a prompt, you get a response, you evaluate that response. Agentic systems break this model. The “response” isn’t text — it’s a sequence of actions executed across tools, APIs, and other agents, sometimes spanning minutes or hours.

Why traditional AppSec doesn’t cover AI agents

Application security tools were built for deterministic software. They assume that code follows defined execution paths, that inputs map predictably to outputs, and that access controls are enforced by the application layer.

AI agents break every one of these assumptions:

Non-deterministic execution

The same user input can produce different action sequences depending on context, model state, and tool outputs. WAFs and static analysis can’t model an attack surface that changes with every request.

Natural-language control plane

The agent’s behavior is governed by natural language instructions, not compiled code. Prompt injection isn’t SQL injection — it targets the decision-making logic itself, not a data layer.

Implicit authorization

When an agent calls a tool, it acts on behalf of the user — but the tool sees the agent’s credentials, not the user’s intent. The mapping between “what the user asked for” and “what tools the agent calls” is mediated by a model, not enforced by code.

Action chains, not requests

A single user instruction can trigger dozens of API calls, file reads, and database queries. Security must evaluate the entire chain, not individual requests in isolation.

Four attack surfaces unique to agentic AI

01

Inter-agent communication

When Agent A passes instructions to Agent B, those messages become an attack vector. A compromised or manipulated upstream agent can inject instructions that downstream agents execute without question — a form of indirect prompt injection that propagates through the entire chain.

02

Tool-use exploits

Agents call APIs, execute code, read files, and write to databases. Each tool invocation is a privilege boundary. An attacker who controls what arguments an agent passes to a tool — through poisoned context or manipulated planning steps — can escalate from “read customer record” to “export all customer records.”

03

Delegation chains

Multi-step delegation creates confused-deputy problems. Agent A has permission to delegate to Agent B, which can invoke Tool C. But was Agent A’s original instruction legitimate? By the time Tool C executes, the provenance of the request is three layers removed from any human decision.

04

Emergent behavior

Individual agents pass unit tests. The composed system does something unexpected. Emergent failures aren’t bugs in any single component — they’re interaction effects that only appear when agents operate together in production with real data and real timing.

Why unit testing falls short

Standard AI testing validates a model’s responses to known inputs. You write a prompt, check the output, mark it pass or fail. This works for single-turn interactions. It breaks for agentic systems because:

This isn’t a shortcoming of testing teams. Predeployment testing alone misses some failures that emerge only in operation, so operational telemetry, incident signals, and scoped evidence are also needed.

Framework mapping: OWASP, NIST, MITRE ATLAS

Agentic attack surfaces map directly to established risk taxonomies — they’re extensions of known categories, not a wholly new domain.

Attack surface OWASP LLM Top 10 MITRE ATLAS NIST AI RMF
Inter-agent injection LLM01: Prompt Injection AML.T0051 MG-2.2
Tool-use escalation LLM07: Insecure Plugin Design AML.T0040 MG-3.1
Delegation-chain confusion LLM08: Excessive Agency AML.T0048 GV-1.3
Emergent behavior LLM09: Overreliance AML.T0043 MS-2.6

Cross-referenced to the OWASP Top 10 for LLM Applications 2026, the current MITRE ATLAS knowledge base, and NIST AI RMF 1.0. Mappings support navigation; they do not establish control effectiveness or compliance.

Runtime monitoring for agentic systems

Runtime monitoring watches configured agent paths as they operate. Instead of testing only what an agent might do, you can observe in-scope tool calls, inter-agent messages, and decisions in the delegation chain.

Three capabilities matter for agentic security:

Tool-call auditing

For instrumented paths, platform telemetry may record selected tool-call fields such as arguments, requesting identity, originating instruction, and returned data. Detecting or blocking an anomalous request before egress requires configured coverage, trusted collection, and tested enforcement; it is not inherent in logging.

Delegation-chain tracing

A configured multi-agent workflow can carry provenance metadata for covered requests—which human instruction originated the chain, which agents processed it, and which transformations were reported. A control may halt instructions that fail its configured provenance check; that behavior and coverage must be tested in the deployment.

Behavioral drift detection

Over long-running tasks, an agent’s actions are compared against its established behavioral baseline. Gradual context drift — where accumulated tool outputs or inter-agent messages shift an agent’s behavior toward unsafe territory — is flagged before the agent crosses a policy boundary.

How GLACIS approaches agentic security

GLACIS helps teams connect intended policy to selected control points in consequential agent workflows, then preserve signed records of what those configured paths reported. Scope, integration placement, and latency depend on the deployment; records do not establish complete coverage, safety, or compliance by themselves.

OVERT provides a vocabulary for describing operational-evidence claims and their limits; system owners still define the relevant controls, coverage, and assurance case.

Interactive

Agentic scan visualization

Discuss how to define a covered delegation path, supervise consequential tool calls, and preserve scoped evidence from user instruction through reported control decisions.

Talk to us

Explore further

Secure your agent fleet

Explore the open-source red-team tooling, or talk to us about supervision and signed operational records for a consequential agent workflow.

autoredteam on GitHub Talk to us