惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
GbyAI
GbyAI
博客园 - 司徒正美
美团技术团队
Vercel News
Vercel News
IT之家
IT之家
U
Unit 42
Y
Y Combinator Blog
罗磊的独立博客
Microsoft Security Blog
Microsoft Security Blog
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
V
Visual Studio Blog
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
MyScale Blog
MyScale Blog
博客园 - 叶小钗
A
About on SuperTechFans
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
B
Blog RSS Feed

Cerbos - All Posts

Authentik vs Keycloak: Self-hosted IdP comparison Mapping business requirements to authorization policy for automotive Fine-grained authorization for AI gateways EIC 2026: Stop counting agents, protect what they can touch Agent skill for writing authorization policies in Claude Desktop Identity security in 2026 EIC 2026 takeaways: the identity stack built for humans will not hold up for AI agents Already have authentication? Here's the authorization layer you still need. Tokens are authorization decisions: a guide to policy-driven token issuance What is a Runtime Authorization Platform It's a dimmer switch, not a kill switch. How CISOs are rethinking AI agent governance From maps to bitmaps (and from bitmaps to bitmaps) AuthZEN, Shared Signals, SCIM Events, IPSIE: Notes from the OpenID Enterprise Panel How do you update authorization policies without redeploying your application? IIW42 recap: Where agent authorization got real Cerbos PDP v0.52.0/v0.53.0: Engine performance, security hardening, and CEL path functions Authorization Management Platforms: what they do, how they work, and where they fit PocketOS AI coding agent deleted a production database in 9 seconds Non-Human Identity management still has a blind spot Supabase alternative in 2026: Best open source auth options Benefits of on-premise authorization: Why enterprises are moving toward self-hosted Authorization policies: How to write, test, and validate them (faster with AI) Agent skill for writing authorization policies How much does it cost to build authorization in-house? Why centralized authorization governance reduces incident response time OPA alternative Why AI agents make authorization a right now problem Modernizing legacy application authorization: why it’s your biggest security blind spot How to add authorization to legacy applications without code changes 5 authorization blind spots auditors find, and how to fix them
The Meta AI hack shows why agents shouldn't decide a...
Emre Baran · 2026-06-03 · via Cerbos - All Posts

Over the weekend someone talked Instagram's support chatbot into handing over accounts it had no business touching. No exploit chain, no zero-day. They opened a chat with Meta's AI support assistant, asked it to add a new email to an account they didn't own, spoofed their location with a VPN to dodge the automated checks, and the bot did it. Password reset, account gone. The hijacked accounts included the Obama-era White House handle and the account of a US Space Force chief master sergeant. (Coverage by TechCrunch, 404 Media.)

It's worth being precise about what actually broke, because the obvious lesson and the real lesson are not the same. The obvious lesson is that AI support tools are risky. True, but not useful. The real lesson is structural, and every team building with agents is about to run into it.

Two things failed. The first was authentication. The attacker asked the bot to add an email address they controlled, the bot sent a verification code to that attacker-supplied address, the attacker read it back, and the bot treated that as proof of ownership and offered a password reset. At no point did anything confirm the person on the other end actually owned the account. That's an identity verification problem, and it's a known one. Notice how it fell, too: the location check the attacker beat with a VPN is friction, not a barrier; the kind of control Anthropic's recent Zero Trust guidance warns degrades against an adversary who can grind through tedious steps at machine speed. Solve identity properly and you've closed this specific hole.

But the second failure is the one that should worry IAM leaders, because solving identity doesn't touch it. The agent was making the access decision itself.

When a human contacts support and asks to reset a password, somewhere a system decides whether that's allowed. Historically that decision lived in code, in a recovery flow with fixed rules. You could read it, test it, reason about it. Now the decision path is a conversation, and a language model can be argued with. It can be flattered, misdirected, or simply asked the right way. The control that used to be a code path is now a negotiation, and the attacker gets to negotiate.

This is the confused deputy problem, a decades-old idea. A privileged actor gets tricked by a less privileged one into misusing its authority, what the Zero Trust agent literature now calls unscoped privilege inheritance, an agent acting without verifying the original user's intent. What's new is that we've handed the deputy role to a system whose entire design is to be helpful and respond to natural language. We built a deputy that wants to say yes.

The fix is not a better prompt. Guardrails written in natural language can be dismantled in natural language,models cannot reliably tell an instruction from the data they're reading, a limitation Microsoft Research has confirmed and prompt-injection attacks exploit by design. The fix is architectural. The decision about whether an action is allowed has to live somewhere the agent can't talk its way around. The agent stops being the authority and becomes a requester. Before it resets a password, links an email, reads a record, or runs a tool, it asks a separate question. Is this principal allowed to perform this action on this resource, and are the conditions for it actually met? Something outside the agent answers, against policy the agent doesn't own and can't edit mid conversation. The agent enforces the answer. It doesn't get a vote.

This is the idea behind externalized authorization, and it's what we build at Cerbos. Access decisions are pulled out of the application, or in this case the agent, and made by a dedicated policy engine that evaluates each request against rules your security team controls. The agent only ever holds the authority your policy grants it, what OWASP now calls least agency: an agent gets only the powers its task requires, never standing permission to do whatever a caller asks. A sensitive action stays blocked unless the conditions for it are actually met, no matter how the request is phrased. The agent can be as persuadable as it likes. The policy doesn't negotiate.

There's a second gap worth naming. An agent acting on someone's behalf usually carries almost no identity context. It inherits the privileges of whoever spawned it, so it knows it is an agent and maybe who it is acting on behalf of, but not who it is actually working for or what that person is allowed to do.

Cerbos closes that gap, pulling real identity and relationship context from your existing systems at decision time so policy is evaluated against the actual human behind the request.

None of this replaces identity verification, which is its own job. The point is narrower and it matters. An agent should never hold the standing authority to take a sensitive action on anyone's account just because it was asked, and the call on whether an action is permitted should be made by policy the agent can't reason its way past.

The agent era doesn't remove the need for authorization. It makes it load bearing. As more systems get a natural language front door, the question stops being whether your agents are well behaved and becomes whether anything outside them is enforcing the rules. Agents will keep getting talked into things. That is what they are built to do. The question worth asking about every agent you deploy is a simple one. What can it do on its own authority, and who actually decides.


Try Cerbos to see how externalized authorization works for agents in practice, or book a call to talk through your architecture with the team.

Go deeper: