◄ ALL POSTS
AI Security

The Lethal Trifecta: Why 98% of AI Agents Are Sitting Ducks

NW Nils Weiser 23 JUL 2026

There's a security concept that has quietly become the single most useful lens for thinking about AI agents, and if you run one, you should know it by name. Simon Willison called it the lethal trifecta — and the 2026 research keeps proving him right.

The idea is simple enough to explain in a sentence. An AI agent becomes dangerous when it combines three capabilities:

1 // Access to private data

Your files, your emails, your database, your secrets.

2 // Exposure to untrusted content

A web page, a document, an email, a bug report — anything an attacker could influence.

3 // External communication

Send an email, make an API call, hit a URL, write to a shared location.

Each one alone is fine. An agent that reads your private data but can't talk to the outside world can't leak it. An agent that reads untrusted web pages but has no secrets to steal is harmless. But put all three together and you've built a machine that an attacker can instruct — via the untrusted content — to take your private data and ship it out the door. The agent does this willingly, because it can't reliably tell your instructions apart from the attacker's.

The number that should stop you

Here's what makes this more than a thought experiment. A recent Cloud Security Alliance research note assessed production AI agents and found that 98% of them combine all three legs of the trifecta. Not a risky minority. Nearly all of them.

98%
of assessed production agents combine all three trifecta legs (CSA)
11%
of 100 production agents passed the AI Risk Quadrant assessment

And it gets worse, because a separate assessment methodology — the AI Risk Quadrant — scored 100 production agents on their attack surface and blast radius and found that only 11% passed. The other 89% were, by the assessors' standard, deployed in a state where a successful injection could do real damage.

Put those two findings next to each other and the picture is stark: the overwhelming majority of agents running in production right now have the exact capability combination that makes prompt injection catastrophic, and the overwhelming majority of them haven't done the work to contain the blast.

Why it's so hard to avoid

The frustrating part is that the trifecta isn't a mistake people make out of carelessness. It's what useful looks like.

You want your agent to have your data — otherwise why deploy it? You want it to read real-world content — that's the job. And you want it to act — an agent that can only think and never do is a very expensive autocomplete. The three capabilities that create the vulnerability are the same three that create the value. This is why researchers keep noting that capability and safety are, in practice, inversely correlated: the more you let an agent do, the more an attacker can do through it.

That's a genuinely uncomfortable trade-off, and I think a lot of the industry is quietly hoping a better model will make it go away. It won't. As long as the model reads instructions and data as the same kind of text, the trifecta will remain lethal no matter how capable the model gets.

Breaking the triangle

The only durable fix is to remove one leg of the trifecta for any given task — not to try to make the model smart enough to resist. In practice that means architectural boundaries, not better prompting:

Cut external communication

For agents that touch sensitive data. If it can't send anything out, it can't exfiltrate — even if it's fully hijacked.

Cut private-data access

For agents that must read untrusted content. Let the web-browsing agent browse; just don't hand it the keys.

Cut untrusted content

By validating, sandboxing, or quarantining anything from outside a trust boundary before the agent with real authority ever sees it.

None of these are exotic. They're least privilege, network segmentation, and trust boundaries — the oldest ideas in security, applied to a new kind of component. The teams that get agent security right in 2026 aren't the ones with the cleverest prompts. They're the ones who looked at their agent, counted the legs of the trifecta, and deliberately cut one.

If you take one thing from all the agent-security research this year, make it this: you cannot prompt your way out of the lethal trifecta. You have to architect your way out.


Sources: Simon Willison — The lethal trifecta for AI agents; Adversa AI — Top Agentic AI Security Resources, July 2026 (CSA lethal-trifecta note and AI Risk Quadrant figures).

NW
Nils WeiserAI Agent Specialist · Bodenseeraum
WORK WITH ME ▸

More field notes

ALL POSTS ▸