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

推荐订阅源

云风的 BLOG
云风的 BLOG
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
博客园 - 三生石上(FineUI控件)
T
The Blog of Author Tim Ferriss
宝玉的分享
宝玉的分享
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
V
Visual Studio Blog
小众软件
小众软件
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MongoDB | Blog
MongoDB | Blog
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
The Cloudflare Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Engineering at Meta
Engineering at Meta
L
LangChain Blog
Martin Fowler
Martin Fowler
GbyAI
GbyAI
博客园 - 司徒正美

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Agency Is the New Risk
Bridget Aman · 2026-04-26 · via DEV Community

This is a submission for the OpenClaw Writing Challenge

For years, the AI safety conversation lived in a specific place. The worry was the answer on the screen: hallucinations, bias, misinformation, bad output from a model you had asked a question. The implied solution was always some version of human oversight. You read what it said, you decided what to do with it, and the worst case was usually that you acted on something that turned out to be wrong.

OpenClaw moved that conversation somewhere harder. Not by being smarter than other AI, but by being the first AI tool to reach consumer scale while making agency the default.

When your assistant can read your email, book a flight, run shell commands, and send messages on your behalf, the question is no longer whether the AI said something wrong. It is whether the AI did something wrong. And those are not the same problem at all. One is a content moderation issue, the other is an authorization problem, an access control problem, a governance problem.

OpenClaw did not create this problem. It just made it impossible for anyone to pretend it was still theoretical.

What changed

A chatbot that produces a wrong answer sits behind glass. You read it, interpret it, and act on it or not. The error is yours to catch. An agent that acts for you removes that buffer. It does not wait for your interpretation. It decides what your instruction means, picks a course of action, and executes. The gap between what you intended and what the agent understood becomes consequential in a way it never was when AI was only generating text.
James Nguyen, writing for TNGlobal in April 2026, framed the shift precisely: "The concern is no longer what models produce. It is authority: who is acting, under whose permissions, inside which trust boundary, with what safeguards."
OpenClaw makes this concrete. It connects to your email, your files, your calendar, your messaging apps. Every thirty minutes, a heartbeat process wakes the agent, checks a list of things it has been asked to monitor, and decides whether to act without prompting from you. Every permission you grant the agent is also a permission that anyone who compromises the agent now has. That is not a flaw in OpenClaw specifically. It is the nature of delegated authority.

What happened when it spread

The security picture that emerged after OpenClaw went viral in January 2026 was not a single incident. It was an entire category of problems arriving at once, and it is worth going through them, because each one points at a different dimension of the same underlying challenge.

The most technically acute was CVE-2026-25253, rated 8.8 out of 10 on the CVSS severity scale. A vulnerability in the gateway's WebSocket handling meant that a single unvalidated URL parameter could trigger a one-click remote code execution chain. Critically, binding the gateway to localhost was not enough protection. The exploit pivoted through the victim's browser, meaning you did not need to be internet-facing to be compromised. Censys tracked publicly exposed instances growing from roughly 1,000 to over 21,000 in a single week. An independent researcher found over 42,000 exposed instances, of which 93% showed authentication bypass conditions.

At the same time, ClawHub, the public skill registry, became a distribution channel for malware. By mid-February 2026, 341 confirmed malicious skills had been discovered in the registry, roughly 12% of it. Some delivered Atomic macOS Stealer. One posed as a cryptocurrency trading tool and harvested wallet credentials silently. Later scans put the number above 800, closer to 20% of the registry. Cisco's AI security research team documented a skill performing silent data exfiltration without the user's awareness and noted the core issue: the registry lacked adequate vetting to prevent malicious submissions.

The harder version of the vetting problem is structural. Reviewing an AI skill is not like reviewing a software package. It requires understanding what the skill will instruct the LLM to do, not just what code it contains. There is no automated scanner that does that reliably yet.
Then there was prompt injection, which is the attack class that most people outside security had not heard of before OpenClaw made it legible to a general audience, and it deserves the most attention because it is the one that does not get patched out.

Contabo's security guide documents one real incident: someone embedded malicious instructions in an email signature. When the OpenClaw agent processed that email to generate a summary, it followed the hidden instructions instead of the user's. PromptArmor demonstrated separately that link preview features in Telegram and Discord could be turned into data exfiltration pathways, causing the agent to transmit confidential data to an attacker's domain automatically, without the user clicking anything.
What makes this different from a conventional bug is architectural. As Penligent's security research puts it: "In LLM-driven agents, instructions and data occupy the same token stream. There is no firewall between data the agent reads and instructions the agent follows." When a chatbot gets prompt-injected, the worst outcome is bad text. When an agent gets prompt-injected, the worst outcome is shell execution, file modification, and outbound messages sent through real accounts. The blast radius is the difference between a chatbot and an agent, which is exactly the distinction that makes agentic AI compelling in the first place.

The standard response to software security problems is to patch the bugs, improve the defaults, and educate the users. OpenClaw has done all three. CVE-2026-25253 was patched within days. ClawHub added VirusTotal scanning. The community has produced a serious body of hardening guidance in a short time. But prompt injection is not a bug. It is a consequence of how language models process text, and there is no patch for it. You can reduce the blast radius. You cannot eliminate the attack surface.

The governance gap

China's response to OpenClaw is usually framed as Beijing being restrictive about foreign technology. That framing misses what is actually interesting about it.

In March 2026, Chinese authorities issued notices to state-run enterprises and the country's largest banks warning against installing OpenClaw on office devices. Some employees were banned from installing it on personal phones connected to company networks. The restrictions extended to families of military personnel. China's National Vulnerability Database published security guidelines. The People's Bank of China issued a separate warning for the financial sector.

At the same time, local governments in Shenzhen and Wuxi were offering multimillion-yuan subsidies to companies building on the same platform. Tencent, Alibaba, Baidu, and MiniMax had all shipped OpenClaw-based products. MiniMax shares rose 640% in two months.
Kendra Schaefer, partner at Trivium China, told Bloomberg: "Chinese regulators typically respond with extraordinary speed to threats from emerging technologies, but the rate of adoption of OpenClaw and other agentic tools is still outpacing them."

China, which has some of the most developed state capacity for technology regulation anywhere in the world, could not form a coherent position fast enough. The national government was restricting it while local governments were subsidizing it, simultaneously. The rest of the world is in the same position, just without the bans.
There is no established liability standard for when an agent acts outside a user's intent. There is no certification requirement before an AI system holds OAuth tokens for your inbox. There is no equivalent of PCI-DSS for agents handling personal data. NIST has an AI Agent Standards Initiative in early stages. OWASP has classified prompt injection as LLM01. The UK's NCSC has framed it as a "confused deputy" problem. None of this is implemented anywhere at the scale OpenClaw is already operating.

The question that matters

There is a version of this story where OpenClaw matures, the security ecosystem catches up, and it becomes what it was always meant to be: a genuinely useful assistant that handles the tedious parts of digital life. That is plausible.
But something has already happened that will not un-happen. Millions of people installed an AI agent with broad system access, most without understanding the threat model, and the world got a clear view of what happens when agentic AI spreads before the governance does.

The window we have now, where agentic AI is still mostly used by technically adventurous people who understand at least part of the risk, will not stay open. The tools are getting easier to install. The demos are getting more compelling.

OpenClaw did not create the agentic AI era. It just arrived early enough that we could watch, in real time, what it looks like when capability outpaces the systems meant to govern it.