OpenClaw Security Breach: CEO's Agent Sold for $25K, 135K Instances Exposed

Critical OpenClaw Security Vulnerabilities
A UK CEO's OpenClaw instance was listed on BreachForums on February 22 under the handle "fluffyduck" and sold for $25,000 in Monero or Litecoin. The buyer gained access to the CEO's fully trained personal AI assistant, including every conversation, the company's production database, Telegram tokens, Trading 212 API keys, and personal family details disclosed to the assistant. All data was stored in plain-text Markdown files under ~/.openclaw/workspace/ with zero encryption at rest.
Cato Networks VP of Threat Intelligence Etay Maor stated at RSAC 2026: "Your AI? It's my AI now." SecurityScorecard has identified 135,000 OpenClaw instances exposed on the public internet with insecure defaults.
5-Minute Security Check
Check 1: Gateway Exposure (30 seconds)
Run: openclaw config get | grep -E "host|bind"
If you see 0.0.0.0 or nothing at all, your agent is reachable by anyone who finds your IP and port. CVE-2026-25253 (CVSS 8.8) allowed JavaScript on attacker-controlled webpages to silently open WebSocket connections to local OpenClaw gateways, stealing auth tokens and granting full control. Patched in version 2026.1.29.
Fix:
{ "gateway": { "host": "127.0.0.1" } }Access remotely through SSH tunnel only: ssh -L 18789:localhost:18789 user@your-vps
Check 2: Authentication Status (30 seconds)
Run: openclaw config get | grep -E "auth|token"
Researcher fmdz387 found nearly a thousand publicly accessible OpenClaw instances with zero authentication in late January. He could access API keys, Telegram tokens, Slack accounts, full chat histories, and execute admin commands.
Fix: Generate a token with openssl rand -hex 24 and put it under gateway.auth.token. Store in .env, not hardcoded JSON.
Check 3: Plaintext API Keys (30 seconds)
Run: cat ~/.openclaw/openclaw.json | grep -i "key\|token\|secret"
OpenClaw stores everything in plain-text Markdown and JSON. If your Anthropic key, OpenAI key, or any credentials are visible, they're one breach away from being compromised.
Fix: Move credentials to .env and lock permissions: chmod 700 ~/.openclaw/credentials chmod 600 ~/.openclaw/openclaw.json
Rotate your API keys today if they were ever exposed.
Check 4: Installed Skills (60 seconds)
Run: openclaw skills list
820+ malicious skills have been confirmed on ClawHub. The ClawHavoc campaign planted hundreds of professional-looking skills that silently exfiltrated .env files to external servers. At peak, roughly 1 in 12 skills on ClawHub was compromised.
For every skill you haven't personally reviewed the source code of: read it now or remove it with openclaw skills uninstall <skill-name>
Restrict installs:
{ "skills": { "allowSources": ["clawhub:verified"] } }Check 5: Version Status (30 seconds)
Run: openclaw --version
OpenClaw has no automatic update mechanism. 255+ security advisories have been published to the GitHub GHSA page as of mid-March.
Update: npm install -g openclaw@latest openclaw doctor --deep
Read the output carefully.
📖 Read the full source: r/openclaw
👀 See Also

5 Malicious OpenClaw Skills That Passed ClawScan + VirusTotal: Unit 42 Analysis
Unit 42 found 5 malicious OpenClaw skills that bypassed ClawScan and VirusTotal. Techniques included runtime referral swapping, SOL pooling for pump-and-dump, and 22MB README padding to hide an AMOS dropper.

Cisco source code stolen via Trivy supply chain attack
Cisco's internal development environment was breached using stolen credentials from the Trivy supply chain attack, resulting in the theft of source code from over 300 GitHub repositories including AI-powered products and customer code.

GitHub repository documents 16 prompt injection techniques and defense strategies for public AI chats
A developer published a GitHub repository detailing security measures for public AI chatbots after users attempted prompt injection, roleplay attacks, multilingual tricks, and base64 encoded payloads. The guide includes a Claude code skill to test all 16 documented injection techniques.

Rules of the Claw: Open Source Security Rule Set for OpenClaw Agents
An open source JSON rule set with 139 security rules that blocks destructive commands, protects credential files, and guards instruction files from unauthorized agent edits. It operates with zero LLM dependency using regex patterns at the tool layer.