If you have spent any time on LinkedIn or Twitter over the past couple of months, you have seen the wave. Claude Mythos is finding thousands of zero-day vulnerabilities across critical infrastructure. Project Glasswing partners are scanning their own codebases and surfacing high-severity flaws in every major operating system and web browser.
The discourse has been loud, and the signal is real. AI models have crossed a threshold in offensive cybersecurity capability, and the gap between what attackers can now do and what most defenders are equipped to handle has widened fast.
But through all of that noise, a practical question has gone largely unanswered. You now know that AI can find and exploit vulnerabilities faster than your team can patch them. So what do you actually do about it?
That is where Anthropic’s Zero Trust for AI Agents comes in. Released alongside the Glasswing updates, it is a 35-page framework that moves past the threat headlines and into implementation specifics. This piece walks through what the framework says, where it challenges conventional thinking, and what you should do before your next planning cycle.
Before you go deeper, it is worth asking where your organization stands today. Our AI Maturity Calculator helps security leaders benchmark their current AI security posture, identify gaps across identity, access, governance, and response, and prioritize the next steps.

The premise on which everything else rests
Anthropic’s Zero Trust for AI agents framework is built on a single thesis, and everything that follows is a consequence of it. Frontier AI models have compressed the timeline between vulnerability discovery and exploit creation from months to hours, at a marginal cost measured in dollars.
That compression changes everything for every control and every architectural decision in your security program. Friction-based defenses that worked against human attackers stop working when the adversary can grind through tedious steps at machine speed with near-zero cost. And it means the floor for what counts as acceptable security has already moved.
The framework says it directly. Controls whose value comes from friction rather than a hard barrier no longer qualify, even at the Foundation tier. The minimum viable security posture is now higher than what many organizations currently have in place.
| The framework’s entire architecture rests on one thesis. Frontier AI models have compressed the attack-to-exploit window from months to hours, and that single fact changes the calculus for every security control and every maturity tier that follows. |
And the framework’s design philosophy starts from a specific consequence of that compression. Assume breach. Not as a rhetorical device, but as a literal architectural principle. Design every system expecting compromise, and work backward to contain the damage. Segment by identity, constrain blast radius, and build recovery in from day one.
Everything else in the framework is the practical application of that principle.
What makes agents compound the problem
Agents sit right on top of this already-shifted landscape and make it harder. They interpret goals, select tools, execute multi-step operations, and coordinate with other agents. A compromised agent does not need extra permissions or firewall access. It can misuse the access it already has after being manipulated into pursuing the wrong goals.
Anthropic is clear that this is a structural problem. LLMs are inherently somewhat insecure, and that is a property of how these systems work rather than a temporary limitation.
The framework responds to this with two organizing concepts.
Blast radius measures the total potential damage if a specific agent is compromised. An agent with read-only access to one database has a small blast radius. An agent with admin credentials to the cloud infrastructure has an enormous one. Your security investment should be proportional to that answer.
Least agency, coined by OWASP, extends least privilege to constrain what each agent tool can do, how often, and where. The goal is to keep the blast radius as small as the task allows. Together, these give you a concrete way to prioritize. Map your agents by blast radius, and apply the least agency from the top of that list down.
And the blast radius problem is often larger than it looks on paper. I am sure you have been in conversations where an engineer or product owner says the tool access is scoped, so the risk is contained. But agents can chain tools together in sequences that produce outcomes no single tool would enable alone. Because every command executes through trusted binaries under valid credentials, host-centric monitoring sees no malware. The misuse looks like normal operations.
That is exactly why blast radius needs to be measured by what an agent can reach through its full chain of tool access, not just what any single permission grants.
The design test that should filter every control decision
This is the part of the framework that ties back directly to the central premise.
Anthropic proposes a single question to apply to every security control. Does this make the attack impossible, or just tedious?
In a world where the attack-to-exploit window was measured in weeks, friction-based controls bought you time. Rate limits, non-standard ports, SMS-based MFA. But in a world where that window has collapsed to hours, and the adversary has unlimited patience, friction buys you almost nothing. The cost to an AI-assisted attacker of performing 10,000 attempts is not meaningfully greater than performing 10.
Controls that survive this test share a pattern. Hardware-bound credentials, expiring tokens, cryptographic identity verification, and network paths that simply do not exist, rather than paths that are merely inconvenient.
| The “impossible vs tedious” test. Apply it to every control in your agent security stack. If the control’s value comes from friction rather than a hard barrier, it will not hold against an adversary operating at machine speed. |
The control framework, grouped by what matters
Anthropic’s Zero Trust for AI agents framework organizes controls across seven domains at three maturity tiers.
- Foundation: the entry point, covering the baseline that every organization deploying agents should meet today.
- Enterprise: where most organizations at a meaningful scale should aim, with stronger identity controls, automated detection, and governance processes in place.
- Advanced: designed for high-stakes regulated environments where the cost of a breach is highest.
But the tiers are explicitly a moving target. Today’s Advanced becomes tomorrow’s Enterprise standard, and today’s Enterprise becomes Foundation.
Rather than walking through all seven domains sequentially, here is what matters grouped by theme.
Identity and access
If you have agents running in production today, there is a good chance at least some of them authenticate using static API keys or shared service accounts. The framework calls that out as a known gap, and the reasoning is straightforward.
A static API key is a credential that can be found by scanning a config file or a lockfile. Once an attacker has it, they have durable, silent access with no expiration and no way for you to know the key was copied. So the baseline has moved. Every agent needs its own cryptographic identity, and the credentials it uses should be short-lived tokens that expire in minutes and cannot be reused. At Enterprise, that means mutual TLS, where both sides of a connection verify each other’s identity before anything happens.
Access control follows the same logic. If an agent has standing permissions that persist whether or not it is actively doing anything, those permissions are sitting exposure.
The framework gives agents extra access only when they need it, and removes it right after. Network walls are not enough because agents move across them during normal work. The real control point is each service: it should only accept trusted callers and reject everyone else.
Detection and response at AI speed
This probably sounds familiar. Your team has detection tooling, which generates alerts, and a portion of those alerts gets investigated. The framework asks you to be honest about two specific numbers before investing in anything new. How long between an anomaly occurring and a human becoming aware of it? And what fraction of your alerts actually get looked at? These are the two metrics where AI-assisted automation moves the needle the most, and they matter more than ever precisely because exploit windows are shrinking.
The framework also introduces what it calls agentic SOAR, which is essentially security orchestration that can operate at the same speed as AI-accelerated attackers. But it draws a clear line on what should and should not be automated.
Let models handle the repetitive work during an incident. Capturing artifacts, running parallel investigation threads, and drafting the postmortem. But keep humans on the decisions that carry real consequences. Containment, disclosure, and external communications. The speed gain from automation is valuable, but removing humans from those calls creates an accountability gap most organizations are not ready for.
Integrity and governance
Here is a question that catches even well-run programs off guard. If an attacker modified one of your agents’ configuration files right now, how quickly would you know? Agent configs control behavior in the same way application code does, but they rarely get the same treatment. The framework says they should. Version control, code review, and cryptographic signing before deployment. The same rigor you apply to a production code change.
And then there is the policy side. Technical controls only enforce what governance defines, and most organizations will discover during an incident that their existing policies simply do not say anything useful about agents.
If you run access reviews today, ask yourself whether the last one included every LLM tool and agent your teams are actually using. For most organizations, the honest answer is no, and the framework treats that as a known failure mode. Shadow AI, where employees adopt LLM tools without IT awareness, bypasses every technical control in the stack.
Your identity governance needs to distinguish between human users, service accounts, and autonomous agents. Your audit trails need to cover agent reasoning, not just system-level actions. And your vendor risk process needs AI-BOM(Artificial Intelligence Bill of Materials) alongside traditional software composition analysis.
Six things to do before your next planning cycle
No team has all of this figured out yet. The goal is structure and progress. But these are the highest-leverage moves you can make now.
- Run every current agent security control through the “impossible vs tedious” test. If the answer is tedious, flag it for replacement.
- Inventory every agent and LLM tool in production, including shadow deployments. Map each to the systems it accesses and the credentials it holds.
- Replace static API keys and shared service accounts with short-lived, narrowly scoped tokens. This is now the Foundation floor.
- Define blast radius per agent. Document the maximum damage each could cause if compromised, and prioritize tighter controls for the largest blast radii first.
- Write agent-specific acceptable use and incident response policies. General IT policies will not cover agentic systems adequately.
- Add AI-BOM(Artificial Intelligence Bill of Materials) to your vendor risk assessments. Ask AI suppliers about model provenance, dependency health, and readiness for accelerated exploit timelines.
The entire Anthropic framework is worth reading end to end. Parts I and II cover the threat landscape and compliance context. Parts III through V are implementation guidance that your architects can work through directly.
The reason this framework matters is not that it introduces novel security concepts. Most of the building blocks, such as OAuth, short-lived tokens, version control, deny-by-default, and immutable audit trails, already exist in mature security programs. The reason it matters is the thesis underneath it all. The timeline between vulnerability and exploit has collapsed, and that single shift changes what “good enough” means for every organization deploying agents.
If you have been in security for any stretch, you know that the hardest part is rarely the technical implementation. It is getting the organization to move before the incident that forces it to. Frameworks like this one help because they give you a shared vocabulary and a maturity rubric you can point to when you are making the case internally. Blast radius, least agency, the impossible-vs-tedious test. These are not just useful concepts. They are the kind of concrete, defensible language that makes it easier to secure budget, gain buy-in, and make architectural decisions before the window closes.
Author
Srikar Sai
As a Senior Content Marketer at Sprinto, Srikar Sai believes good content should be bookmark-worthy by default. He writes about cybersecurity and GRC, aiming to move the needle with every piece. He’s also an ISO 27001-certified Lead Auditor.Explore more
research & insights curated to help you earn a seat at the table.




















