UK’s trusted IT infrastructure partner since 2003
Servnet
FinanceToolsConfiguratorGet in Touch
Cyber security

AI Agent Framework Vulnerability Risks for UK Buyers 2026

London · Servnet News Desk · IT infrastructure analysis5 min read
Share

Check Point researchers spent a year attacking the frameworks enterprises use to build AI agents and found 11 vulnerabilities that have nothing to do with prompt wording. For UK buyers, the finding reframes agentic AI risk as a cyber security problem in the deployment stack, not a filtering problem at the chatbox.

Bug bounty rewards paid per framework vendor
$10000$7500$5000$2500$0$10000Microsoft$3133.7GoogleBounty paid
View the data behind this chart
Bug bounty rewards paid per framework vendor
MicrosoftGoogle
Bounty paid$10000$3133.7

The bug isn't in the prompt — it's in the plumbing

The research, presented at a Black Hat talk this week and shared with The Register, tested six widely used agent frameworks: LangChain, LangGraph, CrewAI, AutoGen, Microsoft Agent Framework, and Google ADK. Across a year of testing, Check Point's Yarden Porat and Shahar Tal disclosed 11 vulnerabilities, several rated critical.

Their core finding is uncomfortable for anyone who has treated prompt injection defences as the whole job. "Our research shows a deeper failure: in many agentic frameworks, prompt-controlled content can cross the boundary into trusted framework logic itself," the pair wrote. In practice, that means content an attacker plants in a document, email or chat message doesn't just fool the model — it can reach orchestration, memory, state and system instructions that were supposed to be off-limits to user input.

Old bugs, new blast radius

What makes this notable isn't novelty. Tal was blunt about the bug classes involved: insecure deserialization, server-side request forgery, path traversal, use-after-free — the kind of defects the industry has known how to fix for two decades. The difference now is what sits on top of them.

"We're building this layer faster than we know how to defend it," Tal told The Register, describing how these familiar flaws now underpin agents with access to inboxes, databases and internal tooling. Critically, the researchers note the agent doesn't need dangerous tools connected to be exploited — reading the wrong document can be enough to trigger a chain reaction inside the framework itself.

Microsoft and Google: two very different responses

The most striking example is a critical checkpoint deserialization flaw in Microsoft Agent Framework that led to remote code execution. Agents save checkpoints — snapshots of state used to resume work after a failure — and Check Point found that untrusted checkpoint data loaded via prompt injection could let an attacker plant a payload that fires when a completely different user later rewinds their own session, handing the attacker a shell on the server.

Microsoft paid a $10,000 bounty, fixed the issue and hardened the framework, telling The Register it had updated the checkpoint file "to define the security boundary." No CVE was issued, because the framework wasn't yet generally available when the flaw was reported.

Google's response to flaws in its Agent Development Kit was less complete. Porat described a built-in development assistant in ADK that stays reachable over its HTTP API even when hidden from the app listing, with no authentication by default — including on default Cloud Run deployments. An attacker could get the assistant to write and execute arbitrary Python, reaching environment API keys and the container's Google Cloud service account. Google initially treated this as a non-issue before ultimately paying a $3,133.70 bounty and shipping a partial fix. Total rewards across all findings: $17,133.70.

Illustration: AI Agent Framework Vulnerability Risks for UK Buyers 2026

Why UK infrastructure teams should stop treating this as a filtering problem

The instinct in many UK security teams has been to bolt prompt-injection filters onto agent deployments and call it done. Check Point's finding — that the same bug classes turned up across every framework tested — suggests that's treating a symptom while the underlying trust-boundary design goes unexamined.

This aligns with UK government guidance. The NCSC's advice on adopting agentic AI stresses least privilege, limiting scope, avoiding long-lived credentials, secure defaults and active monitoring of agent behaviour, while its July 2026 Cyber Shield report treats agentic AI as an operational security and governance matter rather than a pure application-layer concern. NVIDIA's own hardening guidance points the same way: sandboxed execution for any tool that can run commands, strict allowlisting, and blocking writes outside a non-executable workspace.

Buyers evaluating or already running agent frameworks should ask vendors directly how checkpoint data, session state and tool-calling APIs are authenticated and isolated — not just how well the model resists jailbreak prompts. Reviewing this properly is a task for vulnerability management services that understand agentic architectures, not a one-off model evaluation.

The governance gap is real — and it's showing up in the market

Recent Computer Weekly reporting on Salesforce research found that governance is lagging adoption of agentic AI across UK organisations — many teams can name the agents they approved but far fewer can verify what those agents are actually doing in production, a gap TechRadar's enterprise coverage flags as a live operational risk rather than a theoretical one.

That gap matters more given how the attack surface extends beyond the model wrapper. A separate 2026 case saw a critical flaw in Starlette/FastAPI-adjacent tooling expose millions of AI agents, a reminder that the ecosystem around agents — web frameworks, proxies, dashboards, model-management UIs — is part of the security perimeter too. It's also why Five Eyes agencies have previously warned that rapid, ungoverned rollout of agentic AI carries risks organisations aren't ready to manage.

Where the trust boundary actually breaks
3User-facing inputPrompts, documents, messages attackers control2Framework orchestration & stateCheckpoints, memory, routing — meant to stay trusted1System executionCode execution, secrets, cloud service accounts
View the data behind this chart
Where the trust boundary actually breaks
LayerDetail
User-facing inputPrompts, documents, messages attackers control
Framework orchestration & stateCheckpoints, memory, routing — meant to stay trusted
System executionCode execution, secrets, cloud service accounts

What to do before your next agent deployment

For UK infrastructure buyers, the practical response is to treat every agent framework as a privileged system with its own identity, network exposure and permission set — reviewed with the same rigour as any other production service. That starts with mapping trust boundaries and checking whether your teams can even answer what an agent is authorised to touch.

Concrete steps worth prioritising now: enforce least-privilege service accounts for every agent, disable or authenticate any hidden developer APIs before deployment, sandbox tool-calling execution paths, and build audit trails covering action logs, reasoning chains and human oversight points. Framing this within a Zero Trust model, and pairing it with managed detection & response tuned to agent behaviour, closes much of the gap Check Point exposed — and gives buyers evidence-based answers when a board asks what's actually running inside the business's AI stack. Teams wanting the wider threat picture should also look at more on AI agent attacks already hitting production systems.

Share
Key takeaways
  • Check Point disclosed 11 vulnerabilities across six major agent frameworks after a year of testing — the flaws are old bug classes (deserialization, SSRF, path traversal, use-after-free) in new agentic plumbing.
  • A critical Microsoft Agent Framework checkpoint deserialization bug allowed remote code execution triggered when one user's session rewind loaded another's planted payload; Microsoft fixed it and paid $10,000.
  • Google ADK exposed an unauthenticated development assistant reachable by default on Cloud Run, giving attackers a path to API keys and cloud service accounts; Google issued only a partial fix after initially disputing the severity.
  • UK buyers should audit trust boundaries, checkpoint/session handling, and tool-calling authentication in agent frameworks — not rely solely on prompt-injection filtering — in line with NCSC and NVIDIA hardening guidance.
Frequently asked

FAQs — AI Agent Framework Vulnerability Risks for UK Buyers 2026

Is prompt injection the main risk in AI agent frameworks?

No. Check Point's research found prompt injection is the entry point, but the real damage happens when attacker-controlled content crosses from user input into trusted framework logic such as orchestration, memory and checkpoints — a design flaw, not just an input-filtering gap.

Which AI agent frameworks were affected by these vulnerabilities?

Check Point tested LangChain, LangGraph, CrewAI, AutoGen, Microsoft Agent Framework, and Google ADK, disclosing 11 vulnerabilities in total across these widely used enterprise agent-building tools.

Did any AI agent framework vendor get a CVE for these flaws?

Microsoft did not issue a CVE for its critical checkpoint deserialization bug because the framework wasn't generally available when reported, though it paid a $10,000 bounty and shipped hardening fixes.

What should UK infrastructure teams do differently now?

Review trust boundaries around checkpoints, session state and tool-calling APIs, enforce least privilege and sandboxed execution, and treat agents as privileged systems — steps consistent with NCSC guidance and covered by cyber security services built for agentic deployments.

Related

Turning this into a buying decision?

One conversation with an engineer who's specced this before. No sales script.

Talk to Servnet →

Talk to a UK specialist

Get expert advice or a no-obligation quote — servers, storage, networking, maintenance, finance and cloud. We reply the same working day.

or call 0800 987 4111