Skip to content
Agentic AI Security in 2026: Why Autonomous Agents Are Becoming the Top Attack Surface
Technology51 min read

Agentic AI Security in 2026: Why Autonomous Agents Are Becoming the Top Attack Surface

Scult Team
51 min read

Agentic AI is now security leaders' top attack-vector concern for 2026, and most enterprises say they aren't ready to defend the agents they've already deployed.

Agentic AI Security in 2026: Why Autonomous Agents Are Becoming the Top Attack Surface

Direct answer: Agentic AI security is the practice of protecting autonomous AI agents — software that plans, decides, and acts across tools, APIs, and systems with little or no human approving each step — from being hijacked, over-permissioned, or manipulated into working against the organization that deployed them. It matters right now because cybersecurity professionals have named agentic AI and autonomous systems the top attack vector heading into 2026, while the large majority of enterprises admit their identity, monitoring, and access-control tooling was never built to see a non-human actor that holds its own credentials, calls its own tools, and sometimes talks to other agents without a person in the loop. The gap between how fast agents are being deployed and how ready security teams are to govern them is the defining cybersecurity story of the year.

The Attack Vector Security Leaders Are Naming First

For most of the last decade, "top cybersecurity threat" lists were dominated by ransomware, phishing, and supply-chain compromise. Heading into 2026, that ranking changed. Cisco's "State of AI Security 2026" survey found that 48% of cybersecurity professionals now name agentic AI and autonomous systems as the top attack vector they're bracing for — more than any single traditional category. That figure alone would be notable. What makes it urgent is the second number sitting next to it: only 29% of organizations feel prepared to secure the agentic AI deployments they are already rolling out, according to the same research, as covered by Help Net Security. Nearly half of the field sees this coming, and fewer than a third feel ready for it.

That gap between concern and readiness is the story trade press has been telling with increasing urgency. Dark Reading framed 2026 outright as the year agentic AI becomes the industry's "attack-surface poster child," and Kiteworks has gone further, calling the agentic AI attack surface the number-one cyber threat of the year in its own guidance for security teams. Aembit and Stellar Cyber, both of whom publish detailed threat taxonomies for this category, describe the same underlying dynamic from different angles: enterprises are adopting agentic AI faster than they are building the governance, identity, and monitoring layers that would make it safe to do so.

None of this is really about the AI being malicious. It's about scope. Enterprises are handing agents broad, often hardcoded credentials and standing tool access — database connections, API keys, email-send permissions, code-execution environments — because that's the fastest way to get an agent working. Every one of those credentials is a new non-human actor that legacy identity and monitoring tools were never built to see, because those tools were designed around the assumption that a login belongs to a person who can be asked "was that really you?" An agent can't answer that question the way a human can, and most organizations don't yet have a good substitute for asking it.

What Makes an Autonomous Agent a Fundamentally Different Kind of Risk

It helps to be precise about what "agentic" actually changes, because the word gets used loosely. A traditional automation script — a scheduled job, an RPA bot, a webhook-triggered function — follows a fixed, predetermined sequence of steps. Given the same input, it takes the same path every time, which means its risk can be reasoned about in advance: you can read the script and know exactly what it's capable of doing. An agentic AI system doesn't work that way. It's given a goal and a set of tools, and it decides at runtime — based on a language model's interpretation of context — which steps to take, in what order, and whether to call a given tool at all. That's the entire point of the technology: it can handle situations nobody explicitly programmed for. It's also exactly why its risk can't be fully mapped in advance the way a script's can.

This is where the concept of non-human identity becomes central to agentic AI security. Every time an agent connects to a database, calls an internal API, or authenticates to a SaaS tool, something has to represent it in that system's access model — typically an API key, a service account, or an OAuth token. Each of those is a non-human identity: a credential that isn't tied to a person who logs in, gets reviewed in a quarterly access audit, or gets automatically disabled when they leave the company. A single agent wired into a handful of systems can easily be represented by half a dozen or more of these credentials, most of them provisioned quickly during a build sprint and rarely revisited afterward. Identity and access management stacks built around "one human, one login, one access review cycle" simply don't have a natural place to put an actor that doesn't sleep, doesn't change roles, and might spin up new tool connections on its own as it's given new capabilities.

Layer autonomy and standing access on top of each other and you get the specific shape of risk security teams are worried about for 2026: an actor that can take real, consequential action, that often holds more access than any single task requires, and that a compromised prompt, a poisoned document, or a manipulated tool response can redirect without ever touching the credential itself. The credential doesn't need to be stolen for the attack to work — the attacker just needs to convince the agent, through whatever content it's allowed to read, to use the access it already legitimately has for a purpose nobody authorized.

This dynamic plays out differently depending on how mature an organization's engineering culture already is. Teams with strong platform engineering practices tend to at least centralize how credentials get issued, even if they haven't thought through agent-specific scoping yet, which gives them a starting point for retrofitting least privilege later. Teams without that discipline — often the ones moving fastest to ship agent-powered features — tend to have credentials scattered across whichever service or script needed one at the time, which means the first real security work is simply finding every place an agent-related credential lives before any scoping conversation can happen at all. Neither starting point is disqualifying, but they lead to very different first projects: one starts with a policy conversation about what least privilege should mean for a given agent, the other starts with an inventory exercise just to know what already exists.

It's worth being honest that none of this is really new territory in kind, only in scale and speed. Security teams have dealt with over-permissioned service accounts and unreviewed third-party integrations for years. What's different with agentic AI is the pace: a new agent with real tool access can go from an engineer's idea to running against production data within days, not the months a traditional system integration used to take, and the model deciding what to do with that access wasn't explicitly programmed step by step the way older service accounts' calling code was. That combination — a familiar risk shape, unfamiliar speed, and a decision-maker that isn't fully predictable in advance — is what's pushing this to the top of security priority lists faster than almost any previous technology shift.

Mapping the Autonomous Attack Surface

Vendors publishing agentic AI threat taxonomies in 2026 — Stellar Cyber and Aembit among the most detailed — tend to converge on a similar set of failure categories, even when they use different names for them. It's worth walking through the shape of each one, because "agentic AI risk" as a single phrase hides a fairly wide range of distinct mechanisms.

Risk category What it actually looks like Primary mitigation
Over-privileged agents An agent holds broader credentials or tool access than its actual task requires — read-write access to a whole database for a job that only needed to read one table Least-privilege scoping per task, not per agent's lifetime
Shadow AI Agents or AI-powered tools deployed by individual teams without security or IT review, often connected to real company data through personal API keys Discovery and inventory of every agent in use, sanctioned or not
MCP server exposure Internal systems and tools exposed to agents through a new integration layer that often skips the scrutiny a traditional API gateway would get Authentication, allow-listing, and logging on every MCP server, treated like any other API surface
Tool misuse An agent uses a legitimate tool for an unintended purpose, or chains two individually-safe tools together to achieve something neither would allow alone Constrain which tool combinations an agent can execute without a checkpoint
Memory poisoning False or malicious information gets written into an agent's persistent memory, corrupting its behavior in future sessions without any single interaction looking suspicious Validate and periodically audit what's actually stored in agent memory
Cascading failures A compromised or malfunctioning agent's output becomes another agent's trusted input, propagating an error or malicious instruction through a multi-agent chain Treat inter-agent messages as untrusted input, not as pre-verified fact
Supply chain exposure A compromise anywhere in the stack an agent depends on — an orchestration library, a third-party plugin, a pretrained model, a vendor-run MCP server — inherits into every agent built on it Vet and pin dependencies the same way you would for any production software supply chain
Identity impersonation An attacker who obtains an agent's leaked API key or session token can call the same tools the agent legitimately used, and downstream systems can't tell the difference Short-lived, scoped, rotated credentials instead of long-lived standing tokens

Different vendors label these categories slightly differently — what Aembit frames as an "over-privileged agent" risk, Stellar Cyber might fold into a broader identity-and-impersonation category, and Kiteworks tends to discuss the same underlying dynamics under the heading of governance gaps rather than named technical failure modes. That's worth knowing so the terminology doesn't feel like a moving target: the underlying mechanisms are consistent across this research even where the labels aren't, and a security program doesn't need to adopt any one vendor's exact taxonomy to address the actual risks underneath it. What matters in practice is coverage — making sure a security review actually walks through each mechanism in the table above, under whatever name a given team prefers to use for it, rather than assuming one tool or one taxonomy already captures the full picture.

Shadow AI deserves particular attention because it's the entry point for almost everything else on that list. It's the AI-era version of shadow IT: a team wires an agent into a CRM export or a shared drive because it solves a real problem quickly, nobody loops in security because the tool felt more like a productivity assistant than an infrastructure decision, and the organization now has a non-human identity with real data access that doesn't appear in any inventory. Multiply that across dozens of teams experimenting in parallel and you get exactly the visibility gap the Cisco survey's 29%-readiness figure is describing — you can't secure an agent's permissions if security doesn't know the agent exists.

Model Context Protocol (MCP) servers sit at a similarly important chokepoint. MCP has become one of the fastest-adopted standards for exposing internal tools, files, and data sources to AI agents and the models behind them, precisely because it makes integration fast — an agent can discover and call a new tool through a standardized interface rather than custom-coded plumbing for every system. That speed is also the risk: an MCP server is, functionally, a new API gateway into whatever it fronts, and because it was adopted as an AI-integration convenience rather than provisioned through the usual API-security review, it doesn't always get the authentication, rate limiting, and audit logging a traditional gateway would get by default. A malicious or compromised MCP server can also hand an agent tool descriptions that look legitimate but carry embedded instructions the agent will treat as trustworthy — turning the integration layer itself into an injection vector. If terms like this feel like new vocabulary to keep track of, our glossary defines this kind of infrastructure terminology in plain language rather than assuming it's already familiar.

Multi-agent systems compound several of these risks at once. Once one agent's output becomes another agent's input — a research agent handing findings to a drafting agent, a triage agent routing a case to a resolution agent — a single point of manipulation upstream doesn't stay contained to one agent's mistake. It becomes the trusted premise every downstream agent builds on, and because none of the individual handoffs necessarily looks wrong in isolation, cascading failures of this kind can be considerably harder to catch than a single agent misbehaving in a way a human reviewer would immediately flag.

The Business Stakes: Who's Already Being Hit

This isn't a hypothetical risk being debated ahead of any real-world evidence. Cisco's research, as covered by Help Net Security, points to a suspected Iran-linked cyberattack that disabled a power plant in the UK for multiple days — the kind of operational-technology impact that used to require sustained, hands-on-keyboard attacker effort and increasingly doesn't. The same research describes a shift already visible in how state-linked actors operate: Chinese state-linked groups have automated an estimated 80 to 90% of their cyberattack chains by jailbreaking AI coding assistants and directing them to perform vulnerability scanning and exploit development — tasks that used to consume the time of a skilled human operator now delegated to an AI tool with its safety guardrails deliberately stripped away.

That statistic matters beyond its shock value because of what it implies about attacker economics. When 80 to 90% of an attack chain can be automated by a jailbroken coding assistant, the bottleneck that used to protect organizations — the limited supply of skilled human attackers who could actually find and weaponize a vulnerability — stops being much of a bottleneck at all. Defenders who were sized around "how many serious attackers can realistically target us at once" now have to plan for volume they haven't had to plan for before, generated by tooling that doesn't get tired, doesn't need to sleep, and doesn't need a paycheck.

For the businesses deploying agents rather than defending against attackers using them, the stakes scale with exactly the two variables discussed above: how much access an agent has, and how autonomously it can act on that access. A customer support agent that can only read from a narrow FAQ knowledge base has a small blast radius if something goes wrong. An agent wired into billing, CRM, and internal ticketing with standing write access does exactly what its prompt, its tools, and its permissions allow — with none of the hesitation a human employee might feel before taking an action that can't be undone. That is precisely the profile the 48%-top-attack-vector finding is describing: not a distant, theoretical concern, but the category security professionals are watching real incidents accumulate in right now.

The Global Picture

Agentic AI security isn't developing evenly around the world. Some of that is genuine policy divergence; a lot of it is simply that public reporting on incidents and readiness is concentrated in a handful of places so far.

United States. The US is the source of the two statistics anchoring this entire conversation — the 48% top-attack-vector figure and the 29% readiness figure both come from Cisco's "State of AI Security 2026" survey. Kiteworks' guidance for US enterprises ties agentic AI compliance exposure directly to the frameworks already governing sensitive data and regulated industries there: FedRAMP for federal cloud deployments, HIPAA for healthcare data, CJIS for criminal justice information, CMMC for defense contractors, and the broader NIST framework underpinning most of them. Any agent an American enterprise deploys against data covered by one of those regimes inherits its obligations, whether or not the team that built the agent thought about compliance first.

United Kingdom. The UK is where the suspected Iran-linked attack on a power plant played out, per Cisco's research as covered by Help Net Security — a concrete illustration of agentic-AI-adjacent risk translating into physical-world disruption rather than staying confined to data theft. The UK is also a named signatory of the Five Eyes joint guidance on agentic AI issued in May 2026, putting it among the first governments to formally treat this as a national-security-relevant risk category rather than purely a private-sector concern.

UAE / Dubai. No distinct regional-specific reporting on agentic AI attack-surface incidents was found for the UAE specifically. The Middle East compliance frameworks that do appear in vendor guidance — Saudi Arabia's NDMO data-management standards, Qatar's PDPPL, and Oman's data protection regulations — aren't UAE-specific, and the UAE isn't separately named in the sources behind this piece. That's a gap in available public reporting, not evidence that the region is unaffected.

Australia. Australia is a named signatory of the same May 2026 Five Eyes joint guidance, alongside the US, UK, Canada, and New Zealand. APAC-focused compliance frameworks referenced in vendor material — CPS 234 (the prudential standard for regulated financial entities), IRAP (Australia's information security registered assessors program), and the Essential Eight baseline mitigation strategies — form the backdrop Australian organizations are expected to fit agentic AI deployments into, though no Australia-specific incident data specific to agentic AI has surfaced in the research behind this piece.

Germany. Public reporting specific to Germany on agentic AI attack-surface incidents is thin so far. What does apply is the general EMEA regulatory backdrop cited by Kiteworks: GDPR for personal data handling, NIS 2 for critical-infrastructure and essential-service cybersecurity, BSI C5 for cloud-service assurance, the EU AI Act for AI-specific obligations, and DORA for financial-sector digital operational resilience. Any German enterprise deploying agents into a regulated sector is already operating inside that framework regardless of how mature its agentic-AI-specific governance is.

Europe / France. The picture is essentially the same as Germany's: the same EMEA framework set (GDPR, NIS 2, EU AI Act, DORA) applies, and no France-specific agentic AI incident or survey data appears in the sources behind this piece. The regulatory scaffolding is continental rather than national in most of these cases, which is itself a useful signal — enterprises across the EU are converging on the same compliance obligations for agentic systems even where incident reporting hasn't caught up yet.

China. China is the one region in this list where the available data isn't about defensive readiness but about offensive capability. Cisco's findings, via Help Net Security, describe Chinese state-linked actors automating an estimated 80 to 90% of their cyberattack chains using jailbroken AI coding assistants for vulnerability scanning and exploit development — a data point about how agentic AI is already being weaponized rather than how a region is defending against it being weaponized against them.

The throughline across all seven regions is that policy and incident visibility haven't caught up with deployment anywhere yet. Even the US, UK, and Australia — the regions with the most concrete public data behind this trend — are working from a single joint guidance document issued in May 2026 rather than a mature, tested regulatory regime. Everywhere else, the compliance frameworks that will eventually govern agentic AI already exist in some form (GDPR, NIS 2, CPS 234, FedRAMP, and the rest), but none of them were written with agent-specific risks like memory poisoning or tool-call impersonation in mind. Compliance with the frameworks in force today is necessary and won't, by itself, be sufficient.

How to Respond: Zero Trust, Least Privilege, and the Autonomous SOC

The mitigations security teams are converging on for agentic AI aren't exotic — they're the same principles that have governed privileged access for years, applied deliberately to an actor that didn't exist when those principles were written. Zero-trust architecture is the right starting frame: never trust a call by default, verify identity and context on every request, and grant the minimum access needed for that specific action rather than a standing session with broad reach. An agent with tool access is functionally similar to a service account, and it should be treated like one — authenticating on every call, scoped narrowly to the task in front of it, and generating an audit trail distinct from the human user it's acting on behalf of, so "who did this, and under what instruction" stays answerable after the fact rather than becoming a forensic guessing game.

Least privilege is the operational discipline that makes zero trust real rather than aspirational. In practice, that means scoping access per task rather than provisioning an agent once with everything it might conceivably need across its lifetime; issuing short-lived, automatically expiring tokens instead of long-lived standing credentials; and requiring a human confirmation step before any high-value or irreversible action — a refund, a production data deletion, an externally sent email — regardless of how confident the agent's reasoning looked in the moment. None of this eliminates the need for agents to be genuinely useful; it just means usefulness and standing access get decoupled, so a compromised or misdirected agent can't do more damage than the specific task in front of it would ever justify.

The monitoring side of this is where "autonomous SOC" enters the conversation. As agent fleets grow past what any human team can review action-by-action, security organizations are increasingly using AI-driven monitoring to watch agent behavior for anomalies at a pace human analysts alone can't match — flagging a tool call that deviates from an agent's normal pattern, or a memory write that doesn't match its usual sources, faster than a quarterly access review ever would. That doesn't remove the human from the loop; it changes what the human is doing, shifting analyst attention toward validating what the autonomous layer flags and deciding what an agent should be allowed to act on independently versus what always needs to escalate.

Governance only holds if it's revisited on a cadence, not set once at launch and assumed to stay accurate. Agents get reconfigured, granted new tools, and redeployed into new workflows considerably more often than a human employee's role changes, which means a permission scope that was genuinely minimal on day one can drift wide within a few months without anyone having made an explicit decision that it should. The organizations handling this well tend to treat agent access reviews the way mature security teams already treat privileged-account reviews — a recurring item on a real calendar, owned by a specific person, rather than a best-effort check whenever someone remembers to run it. That discipline matters more than any single tool choice, because a monitoring platform watching an agent's behavior is only as useful as the baseline of "what this agent is actually supposed to be allowed to do" that it's checking behavior against — and that baseline is exactly what drifts without a deliberate review cadence holding it in place.

None of this is a project with a defined end date so much as an operating discipline that has to keep pace with how fast agent deployment itself is moving. Organizations building agent-driven systems from scratch have a real advantage here: it's considerably cheaper to design scoped, auditable access in from day one than to retrofit it onto an agent that's already been given broad standing credentials in production. That's the discipline we bring to AI agent and automation work specifically — scoping exactly what an agent can touch, and under what conditions, before it ever runs against real data — and it's the same rigor we apply across custom software development more broadly, where the question "what does this actually need access to" gets asked before a single credential is provisioned, not after an incident forces the question. If you want a clear-eyed look at what your own agent deployments can currently touch, our security practice can scope that against what your systems actually do rather than what the architecture diagram assumed.

Straight Answers to What Security Teams Are Asking About Agentic AI

Why is agentic AI considered the biggest cybersecurity threat in 2026?

It tops the list because it combines two things that make any risk category dangerous: broad reach and low visibility. Cisco's State of AI Security 2026 survey found 48% of cybersecurity professionals now name agentic AI and autonomous systems as their top attack-vector concern — more than any single traditional category like ransomware or phishing. That's because agents are typically granted real credentials and tool access across production systems, and unlike a human employee, an agent's exact behavior in any given situation isn't fully predictable in advance, since it's deciding its own next step based on a probabilistic model's read of context rather than following a fixed script. Combine standing access with unpredictable behavior and you get a risk that's both wide and hard to fully test for, which is exactly why it's displaced more familiar threats at the top of security leaders' list.

What is shadow AI and why is it dangerous for enterprise security?

Shadow AI is any AI tool or agent deployed and connected to real company systems or data without security or IT review — the AI-era version of shadow IT. It typically starts innocently: a team wires an AI assistant into a shared drive, a CRM export, or an internal API because it solves a real workflow problem quickly, and nobody loops in security because the tool feels more like a productivity aid than an infrastructure decision. The danger is that it creates a non-human identity with real data access that doesn't appear in any security inventory, which means nobody is reviewing its permissions, rotating its credentials, or watching what it does with the access it has. At scale, across dozens of teams experimenting independently, shadow AI is exactly why organizations can be running far more agents — and far more exposure — than their security team actually knows about.

How do non-human identities created by AI agents increase attack surfaces?

Every time an agent connects to a database, an internal API, or a SaaS platform, something has to represent it in that system's access model — usually an API key, a service account credential, or an OAuth token. Each one is a non-human identity, and unlike a human employee's login, it typically isn't tied to a person who can be asked to verify a suspicious action, doesn't naturally get swept into a quarterly access review, and doesn't get automatically disabled when a project ends. A single agent integrated into a handful of systems can generate half a dozen or more of these credentials, most provisioned quickly during development and rarely revisited. Identity and access tooling built around "one human, one login" doesn't have a natural home for this kind of actor, which is precisely why non-human identity sprawl is one of the fastest-growing and least-visible parts of the agentic AI attack surface.

What is an MCP server and why does it need to be secured?

An MCP (Model Context Protocol) server is a standardized way of exposing tools, files, and data sources to an AI agent or the model behind it, so the agent can discover and call them through a common interface instead of custom-coded integration for every system. It's become one of the fastest-adopted patterns for connecting agents to real infrastructure precisely because it makes integration fast. That speed is also the risk: an MCP server is functionally a new API gateway into whatever it fronts, and because it's often adopted as an AI-integration convenience rather than provisioned through a normal API-security review, it doesn't always get the authentication, rate limiting, and audit logging a traditional gateway gets by default. It needs to be secured with exactly that same rigor — strong authentication, scoped access, and logging — because a compromised or malicious MCP server can also hand an agent tool descriptions that carry hidden instructions the agent will treat as trustworthy.

How does zero-trust architecture protect against agentic AI threats?

Zero trust starts from the assumption that no request should be trusted by default, regardless of where it came from, and requires verifying identity and context on every call while granting only the minimum access a specific action needs. Applied to agentic AI, that means treating an agent the way you'd treat a service account rather than a trusted insider: it authenticates on every tool call rather than holding a standing broad session, its access is scoped to the specific task in front of it rather than everything it might ever need, and every action it takes generates an audit trail distinct from the human it's acting for. This model fits agentic AI unusually well because an agent's behavior isn't fully predictable in advance — zero trust doesn't need it to be, since it verifies at the point of action rather than assuming good behavior based on the agent having been approved once, earlier, for a broader purpose.

What should organizations do first to secure their agentic AI deployments?

Before adding controls, get visibility. The single most useful first step is a real inventory: every agent currently running, every credential and tool-access it holds, and who actually approved that scope. This matters because, per Cisco's research, only 29% of organizations feel prepared to secure the agentic AI they're already deploying — and a meaningful share of that gap is simply not knowing what's out there, especially where shadow AI has let teams stand up agents without a central review. Once that inventory exists, the prioritization becomes straightforward: agents with the broadest standing access to the most sensitive systems get scoped down first, using least-privilege principles, before any more exotic defense gets layered on top. Skipping straight to sophisticated monitoring tools without first knowing what you're monitoring tends to leave the biggest gaps exactly where they started.

What percentage of security professionals see agentic AI as the top attack vector in 2026?

48%, according to Cisco's "State of AI Security 2026" survey, as reported by Help Net Security in February 2026. That means nearly half of surveyed cybersecurity professionals now rank agentic AI and autonomous systems above every other single category — including more familiar threats like ransomware and phishing — as the attack vector they're most concerned about heading into the year. The figure is significant less because of its exact size and more because of what it represents: a genuine shift in professional consensus about where the next wave of serious risk is concentrated, driven by how quickly organizations have handed agents real credentials and tool access without an equivalent investment in the governance needed to secure them.

Why are only 29% of organizations prepared to secure their agentic AI deployments?

The readiness gap comes down to deployment outpacing governance. Agents got built and shipped by product and engineering teams moving fast to capture real productivity gains, while the identity, monitoring, and access-review tooling that would make those deployments safe was largely designed around human users and hasn't caught up. Many organizations also don't have a complete inventory of the agents already running against their systems — a consequence of shadow AI deployments that never went through a formal security review — so a meaningful part of the 71% that don't feel prepared likely includes teams that can't fully answer "what do our agents actually have access to" in the first place. Readiness, in other words, isn't just a tooling gap; it's frequently a visibility gap that has to be closed before any control can be applied with confidence.

What is memory poisoning in AI agent systems?

Memory poisoning targets agents that retain information across sessions rather than starting fresh each time. If an attacker can get false or manipulated information written into that persistent memory — through a manipulated document the agent processes, a poisoned conversation, or a compromised data source it trusts — every future session inherits the corruption, often without any single interaction looking suspicious on its own. That's what makes it particularly hard to catch: the damage isn't done in one dramatic moment a monitoring system would flag, but accumulates quietly until the poisoned memory eventually surfaces in a decision that causes real harm. Defending against it means treating what's actually stored in an agent's memory as something to periodically validate and audit, not as a trusted record simply because the agent itself wrote it there.

How can 250 poisoned documents backdoor a large language model?

Research cited via Help Net Security found that a fixed, surprisingly small number of poisoned documents — around 250 — was enough to implant a backdoor trigger into a model, essentially regardless of how large the overall training dataset was. That finding matters because it overturns an assumption a lot of organizations were relying on: that an attacker would need to control a meaningful share of a model's training or fine-tuning data to meaningfully corrupt it. If a small, fixed count is enough, then any pipeline that ingests external or lightly-vetted content into training or fine-tuning data — scraped web pages, user-submitted documents, unaudited third-party datasets — is a viable path to planting a backdoor, regardless of how much other, legitimate data surrounds those documents. It's a strong argument for treating data provenance and vetting as a security control, not just a data-quality one.

What is tool misuse and privilege escalation in agentic AI?

Tool misuse happens when an agent uses a legitimate capability for a purpose nobody intended — either because a manipulated instruction redirected it, or because the agent's own reasoning chose a technically-permitted but unintended path to its goal. Privilege escalation in this context often doesn't look like a classic exploit at all: it's an agent chaining two individually reasonable tool calls together to accomplish something neither one would be allowed to do alone, like using a document-read tool to gather sensitive data and a messaging tool to send it somewhere, when neither tool's access was designed with that combination in mind. This is why scoping agent permissions tool-by-tool isn't sufficient on its own — organizations increasingly need to think about which combinations of tools an agent can execute without a checkpoint, not just which individual tools it's allowed to touch.

How do cascading failures spread across multi-agent systems?

In a multi-agent system, one agent's output frequently becomes another agent's trusted input — a research agent hands findings to a drafting agent, a triage agent routes a case to a resolution agent, and so on. If the first agent in that chain is compromised, malfunctioning, or simply wrong, the error or malicious instruction doesn't stay contained; it propagates downstream as a premise every subsequent agent builds on, because the receiving agent typically has no reason to treat another agent's output as any less trustworthy than a verified fact. None of the individual handoffs necessarily looks wrong in isolation, which is exactly what makes cascading failures in multi-agent systems harder to catch than a single misbehaving agent — there's rarely one obvious alarm point, just a chain of individually plausible steps that add up to a bad outcome.

What is 'salami slicing' prompt manipulation of an AI agent?

Salami slicing is the practice of breaking a manipulative request into a series of small, individually innocuous-looking steps that add up to something an agent would refuse if asked directly in one shot. Rather than asking an agent outright to do something clearly against its instructions, an attacker walks it there gradually — each individual request looks like a reasonable extension of the last, and the agent's own prior responses become part of the context that makes the next step seem consistent rather than suspicious. It exploits exactly the kind of step-by-step contextual trust that makes agents useful in normal operation, which is what makes it difficult to defend against with a simple content filter: no single message in the sequence would necessarily trigger one on its own.

How do attackers impersonate AI agents using stolen credentials or session tokens?

If an agent's API key, OAuth token, or session token leaks — through exposed logs, misconfigured storage, or a compromised host the agent runs on — an attacker can use that credential to call the exact same tools and APIs the agent was legitimately authorized to use. The downstream systems receiving those calls generally have no way to distinguish the attacker from the legitimate agent, because authentication succeeds either way; the credential itself is what those systems trust, not some deeper signal of intent. This is a strong argument for short-lived, narrowly scoped, regularly rotated tokens instead of long-lived standing credentials: even if a token leaks, a short lifespan and narrow scope limit what an attacker can actually do with it before it expires or gets revoked.

What supply chain risks affect AI agent frameworks, models and dependencies?

Agentic AI systems typically depend on a longer chain of components than a simple application: open-source orchestration libraries that coordinate an agent's reasoning loop, third-party tool plugins and MCP servers built by outside vendors, pretrained or fine-tuned models sourced from a model hub, and the usual software dependencies underneath all of it. A compromise anywhere in that chain — a malicious package update, tampered model weights, a compromised plugin, or a vendor-run MCP server that gets breached — inherits into every agent built on top of it, often silently. This makes supply chain vetting for agentic systems a genuine security discipline in its own right: pinning dependency versions, auditing third-party tool integrations before granting them access, and being able to answer "where did this model actually come from" the same way a mature software team already answers that question for a code dependency.

What is an over-privileged AI agent and why is it risky?

An over-privileged agent holds broader credentials or tool access than its actual task requires — read-write access to an entire database when the job only ever needed to read one table, or the ability to send external email when the task was purely internal reporting. It's risky because the blast radius of any hijack, manipulation, or plain error scales with the agent's standing privilege, not with the complexity of the task it was actually built to do. An agent that's been over-provisioned "to be safe" or "in case it needs it later" turns every future prompt injection, memory-poisoning attempt, or credential leak into a much bigger incident than the agent's actual job ever justified. Least-privilege scoping — granting exactly what a task needs and nothing more — is the single most direct way to shrink that risk without reducing what the agent can legitimately accomplish.

How many non-human identities does a single AI agent typically create?

There's no single fixed number — it depends on how many distinct systems an agent touches, since each connection to a database, internal API, or SaaS tool typically provisions its own credential, whether that's an API key, a service account, or an OAuth grant. What's consistently true across enterprise environments is the direction of the trend: non-human identities are growing far faster than human ones, and agentic AI is one of the biggest accelerants of that growth, because a single agent deployment can spin up several distinct credentials across the systems it's connected to, often without a corresponding entry in whatever identity inventory the security team maintains. The practical implication matters more than the exact count: any organization deploying agents at scale should assume its non-human identity footprint is larger, and less visible, than its human one.

What is 'identity fluidity' between AI agents and human users?

Identity fluidity describes the blurring of who counts as "the actor" once a request passes through multiple hands — a human initiates a task, delegates it to an agent, which then calls another agent or tool on its behalf, and by the end of that chain it's genuinely unclear which identity should be held accountable for the outcome. Traditional audit logs and access-control systems were built around a clean one-human-to-one-identity mapping, and they don't cleanly capture a chain like that. The practical risk is accountability: when something goes wrong several hops into a delegated chain, "who actually did this, and under whose authority" can become a genuinely hard question to answer after the fact, which is exactly the kind of gap that needs to be closed with deliberate, chain-aware logging rather than assumed away.

How can security teams audit the permissions granted to AI agents?

Treat it the same way you would a review of privileged service accounts: enumerate every agent in the organization, every credential and token it holds, and every tool, API, and data source it can reach through those credentials. Then cross-reference that list against the agent's actual documented task — not what it might conceivably need someday, but what its current job requires — and flag anything broader than that scope for reduction. This has to be a recurring exercise rather than a one-time audit, because agents get reconfigured, redeployed, and granted new tool access far more frequently than a typical employee's role changes, and a scope that was appropriate at launch can drift wide within months without anyone deciding that it should.

What is the difference between agentic AI risk and traditional RPA/automation risk?

Traditional robotic process automation follows a fixed, deterministic script: given the same input, it takes the same steps every time, which means its behavior — and therefore its risk — can be fully mapped just by reading the script. You secure it primarily by securing the credentials it runs under and the systems it touches, because the logic itself isn't going to surprise you. Agentic AI risk is different because the agent decides its own next step at runtime, based on a probabilistic model's interpretation of context rather than a predetermined path — the same starting instruction can lead to different actions depending on what the agent encounters along the way. A traditional bot gets hijacked by tampering with its script or its credentials; an agent can be hijacked by manipulating its judgment through the content it's exposed to, which is a fundamentally harder thing to test for in advance.

How are state-sponsored actors using jailbroken AI coding assistants to automate attacks?

Cisco's research, via Help Net Security, found that Chinese state-linked actors have automated an estimated 80 to 90% of their cyberattack chains by jailbreaking AI coding assistants — deliberately bypassing the assistants' safety guardrails — and directing them to perform vulnerability scanning and exploit development. In practice, that means tasks that used to require a skilled human attacker's time, like finding a vulnerable code path and writing a working exploit for it, are increasingly delegated to an AI tool with its restrictions stripped away, dramatically compressing the time and expertise a state-linked group needs to mount an attack. This shifts attacker economics meaningfully: defenders who used to size their expectations around a limited supply of skilled human adversaries now have to plan for a volume of automated attack activity that scales with compute rather than headcount.

What is the OpenClaw case study in agentic AI attack-surface modeling?

OpenClaw is referenced in academic research — published as the MATRA framework for modeling the attack surface of agentic AI systems — as a representative case-study deployment used to demonstrate how that kind of systematic modeling actually works in practice. Frameworks like this map an agentic system's trust boundaries, tool calls, and data flows methodically, rather than relying on a general sense of "agents are risky," so that researchers and security teams can trace exactly how a narrow, seemingly low-risk entry point can chain into a broader compromise once an agent's tool access and decision-making are laid out formally. The value of this kind of academic work is less about any one finding and more about giving the field a rigorous, repeatable method for attack-surface analysis, in a space that's mostly relied on vendor threat taxonomies and incident anecdotes up to this point.

What does Five Eyes joint guidance on agentic AI recommend for enterprises?

In May 2026, the Five Eyes intelligence and cybersecurity agencies — the US, UK, Canada, Australia, and New Zealand — issued joint guidance naming agentic AI and prompt injection as a core national-security-relevant risk, marking one of the first times a coordinated government body has treated this as squarely within its remit rather than a purely private-sector security concern. Guidance of this kind, from agencies whose core mandate is defending critical infrastructure and national systems, generally pushes organizations toward governing agent permissions with the same discipline as any other privileged access, building monitoring and logging around agent actions rather than trusting them by default, and treating prompt injection as a risk with no single complete fix — meaning defense has to be layered rather than resting on one control. The involvement of five separate national security establishments in a single coordinated statement is itself a signal of how seriously this risk category is now being taken at a policy level.

How does prompt injection combine with agentic AI to create compounded risk?

On its own, prompt injection against a simple chatbot can make it say something wrong or reveal information it shouldn't — an unwelcome outcome, but typically a contained one. Combine the same technique with an agent that holds real tool access, and a successful injection doesn't just produce a bad answer; it produces a bad action, because the agent has the standing ability to actually do things in connected systems. An injected instruction hidden in a document the agent is asked to summarize, for instance, could redirect it into sending data somewhere it shouldn't, approving something it was never meant to approve, or calling a tool in a sequence that achieves something the injection's author wanted rather than what the legitimate user asked for. That's the compounding effect security researchers keep emphasizing: agentic capability turns every existing prompt injection risk into something with a real-world consequence attached, which is exactly why the May 2026 Five Eyes guidance names the two together rather than treating them as separate risk categories.

What are 'sleeper agent' scenarios in AI agent memory poisoning?

A sleeper-agent scenario is a form of memory poisoning where the planted instruction or corrupted information sits dormant, causing no visible problem, until a specific trigger condition or context appears later. In the interim, the agent behaves entirely normally — passing whatever testing or everyday use it encounters — precisely because the poisoned element was designed not to activate until the right circumstances arise, which the attacker controls or anticipates. That dormancy is what makes this category particularly hard to detect through routine monitoring: there's no ongoing suspicious behavior to flag, just a latent condition waiting for its trigger, which means detection has to focus on what's actually stored in an agent's memory and how it got there, rather than waiting for behavior that looks obviously wrong.

How can enterprises give AI agents least-privilege access without breaking functionality?

The practical answer is to scope access by task rather than by the agent's entire operating lifetime — an agent gets exactly the permissions its current job requires, issued as a short-lived, automatically expiring token rather than a standing broad credential it holds indefinitely. High-value or irreversible actions, like a refund, a production data deletion, or an externally sent message, get a human-confirmation checkpoint regardless of how confident the agent's reasoning appeared, which preserves the agent's usefulness for the vast majority of routine work while containing the cases where a mistake or manipulation would actually matter. The discipline that makes this work in practice is starting narrow and expanding deliberately as a real, demonstrated need arises, rather than starting broad because it's faster and hoping to narrow the scope down later — which is exactly the sequence that tends to never actually happen once an agent is already working in production. This is the kind of scoping work we build into every custom software development engagement involving agents, before any credential gets provisioned rather than after.

What tools exist to monitor and govern autonomous AI agent behavior?

The tooling landscape here spans a few distinct categories rather than one single product type: AI agent observability and tracing platforms that log and replay an agent's reasoning and tool-call chain step by step; non-human identity management platforms purpose-built to discover, own, and rotate the credentials agents hold; API and MCP gateways with policy enforcement designed specifically for agent traffic rather than generic API traffic; and increasingly, "autonomous SOC"-style monitoring that uses AI itself to watch agent behavior for anomalies at a scale human review alone can't match. Most mature security programs end up combining tools from more than one of these categories rather than relying on a single platform, because visibility, identity governance, and real-time behavioral monitoring are genuinely different problems that happen to all be necessary for the same underlying goal.

How is agentic AI security different for customer-facing chatbots versus internal automation agents?

Customer-facing chatbots are exposed to anonymous, adversarial input at genuine scale — anyone on the internet can try a prompt injection or jailbreak against them — and the stakes when something goes wrong tend to be reputational and compliance-related, since the bad output is often visible externally. They typically have narrower tool access, though, which limits how far a successful manipulation can actually go. Internal automation agents face a much smaller, more identifiable set of people who might try to manipulate them, but frequently carry far deeper access into real systems — CRM, billing, internal ticketing, infrastructure — so a successful compromise shifts from an embarrassing public exchange to genuine operational or financial damage. Security programs need to weight these differently: chatbots need robust input handling and content-moderation guardrails at the perimeter, while internal agents need much tighter scoping of what they can actually do once a request gets through.

What incident response steps apply when an AI agent is compromised?

The first move is to revoke or rotate the agent's credentials and tokens immediately and suspend its tool access, cutting off its ability to take further action while the investigation happens. From there, pull the agent's full action and decision log to reconstruct not just what triggered the alert, but everything it did in the surrounding window — agents can chain multiple tool calls together, so the triggering action is rarely the whole story. Every system the agent touched during the suspected compromise window needs to be checked, not just the one where the alert fired, and the agent's memory store, if it has persistent memory, should be treated as potentially poisoned until it's specifically verified clean rather than assumed fine because the credential issue has been resolved. This is meaningfully more involved than a typical compromised-account response precisely because an agent's actions can cascade across systems faster than a human's would in the same window of time.

How does an autonomous SOC change the skill requirements for security analysts?

As AI handles more first-line triage and detection work — the pattern Fortinet's Cybersecurity Trends coverage for 2026 has been describing — the value of a human security analyst shifts away from manually sifting alerts and toward the judgment calls the automated layer genuinely can't make confidently on its own. That means validating what an autonomous SOC flags rather than generating every flag by hand, deciding what categories of incident an autonomous system should be allowed to act on independently versus always escalate to a person, and developing enough familiarity with AI- and agent-specific failure modes — memory poisoning, tool misuse, cascading multi-agent errors — to actually investigate them when they surface. It's less a reduction in required skill and more a shift in what the skill is: less manual pattern-matching, more oversight of a system that's doing a lot of the pattern-matching itself.

What is the projected market size for agentic AI security tooling?

Concrete market-size forecasts for this category vary widely across different analyst firms, and no single, well-established figure is authoritative enough yet to state with confidence. What's clear directionally is that vendor activity in this space is expanding quickly, precisely because the gap this piece has been describing — enterprises deploying agents faster than existing identity and security tooling can cover them — is exactly the kind of unmet need that draws rapid investment and new product launches. Rather than anchoring a security decision to a specific market-size number, it's more useful for a security or procurement team to evaluate tools against the specific gaps in their own agent inventory, credential management, and monitoring, since the category is still consolidating and today's specific numbers are likely to look dated quickly either way.

How do insurers assess agentic AI risk when underwriting cyber policies?

Cyber insurers already ask applicants pointed questions about privileged-account hygiene — multi-factor authentication coverage, credential rotation practices, and how tightly access is scoped — as part of underwriting. The reasonable expectation is that the same logic extends to agentic AI: how many agents an organization runs, whether their credentials are scoped and rotated rather than standing and broad, whether agent actions are logged in enough detail to reconstruct an incident, and whether there's a real inventory of agents in production at all. An organization running an unscoped fleet of agents with broad, long-lived credentials looks, from an underwriting perspective, a lot like one running unmanaged privileged accounts — a factor that can plausibly affect premiums, coverage terms, or exclusions as insurers build agentic-AI-specific questions into their standard risk assessments.

What governance frameworks are emerging specifically for AI agent permissions?

Most of what's emerging so far is an extension of existing identity-governance discipline — least privilege, periodic access review, separation of duties — applied explicitly to non-human and agent identities rather than only to human accounts. On top of that foundation, organizations and vendors are starting to build agent-specific policy layers that define what an agent can do entirely on its own versus what always requires a human sign-off, which is a genuinely new category of control that didn't need to exist before agents could take independent action at scale. No single industry-wide standard has consolidated this yet as of 2026; different vendors, frameworks, and the emerging government guidance (like the May 2026 Five Eyes statement) are converging on similar principles from different directions, but a unified governance framework specific to agent permissions is still very much in formation rather than settled.

How should CISOs prioritize agentic AI risk versus other 2026 threats?

Prioritize based on access and autonomy already granted, not on how novel or headline-worthy a risk sounds. An agent that already holds broad, standing write-access to production systems is a more urgent problem today than a theoretical future risk, regardless of how much industry attention each one gets. The 48%-top-attack-vector and 29%-readiness figures from Cisco's research are useful precisely because they justify why this can't simply be queued behind more familiar threats: nearly half the field already sees this as the leading concern, and the readiness gap means the organizations that wait for a clearer mandate before acting are very likely already running unscoped agents against real systems right now. A reasonable prioritization exercise starts with the same inventory question raised earlier in this piece — what agents exist, what do they touch, and who approved that — because that answer determines how urgent the rest of the response actually needs to be.

What role does non-human identity management play in agentic AI security?

Non-human identity management is the identity layer built specifically for service accounts, API keys, and agents, rather than for the human logins most identity and access management tooling was originally designed around. Its core functions — discovering every non-human identity in the environment, assigning clear ownership to each one, rotating and expiring credentials on a schedule, and detecting anomalous behavior from a given identity — are foundational to agentic AI security because none of the more sophisticated defenses matter if the organization doesn't have a complete, current inventory of the agents and credentials it's actually running. Agents are one of the fastest-growing sources of new non-human identities in most enterprises today, which makes this discipline less a nice-to-have adjacent to agentic AI security and more a prerequisite for it.

Can AI agents be used defensively to detect attacks on other AI agents?

Yes, conceptually, and this is exactly the direction "autonomous SOC" tooling is heading — using AI-driven monitoring to watch agent behavior patterns for anomalies at a speed and scale human review alone can't sustain, flagging deviations in tool-call patterns or memory writes that would take a human analyst far longer to notice across a large agent fleet. The important caveat is that a defensive agent is still an agent, which means it inherits the same open questions the rest of this piece has raised: who audits the auditor, what happens if the defensive agent itself is manipulated or poisoned, and how much standing access it needs to do its monitoring job. It's a genuinely useful layer, not a silver bullet — using AI to watch AI reduces the scale problem without eliminating the need for the same governance principles applied to every other agent in the environment.

What certifications or training exist for securing agentic AI deployments?

As of 2026, a single, widely-recognized certification specifically for agentic AI security hasn't yet consolidated the way certifications exist for more established security disciplines. Practitioners currently build the relevant expertise by combining existing security credentials and training — cloud security, identity and access management, and general AI/LLM security or red-teaming courses — with vendor- and framework-specific training tied to whatever agent platforms and MCP tooling their organization actually runs. That's a reasonable state for a field this new; expect a more formal, dedicated certification track to mature over the next few years as the underlying practices this piece describes — agent inventory, non-human identity management, agent-specific incident response — settle into a more standardized body of knowledge the way cloud security did roughly a decade ago.

How do regulators plan to hold companies accountable for autonomous AI agent actions?

The general direction, visible in guidance like the May 2026 Five Eyes statement and in broader AI regulation trends, is toward treating an autonomous agent's actions as squarely the responsibility of the organization that deployed it — conceptually similar to how a company remains accountable for an employee acting within their apparent authority, rather than being able to point at the AI itself as an independent actor. Frameworks like the EU AI Act reinforce this from the transparency and robustness side, expecting organizations to be able to explain and defend how a system reached a given action rather than treating "the model decided" as a sufficient answer. The specifics of enforcement are still forming across most jurisdictions, but the direction of travel is consistent: accountability sits with the deploying organization, not with the software.

What is the realistic timeline for enterprises to close the agentic AI security readiness gap?

Given that Cisco's February 2026 survey put readiness at only 29%, the honest answer is that this gap closes over years for most organizations, not through a single project with a defined end date. Closing it for real requires building an accurate inventory of agents and their access (often starting from a position of not fully knowing what's already deployed), retrofitting identity and monitoring tooling that was built around human users, and shifting the internal culture around how a new agent gets approved for production access in the first place — all of which take sustained effort rather than a one-time fix. Organizations that start with inventory and least-privilege scoping now, rather than waiting for a specific regulatory mandate or a forcing incident, are the ones most likely to close this gap meaningfully faster than the 71% currently telling researchers they aren't ready.

Want results like this?

Keep reading