TL;DR: Cyera’s research on four OpenClaw CVEs shows how filesystem escapes, privilege escalation, and allowlist bypasses can turn an AI agent into an execution layer, with 65K+ exposed instances on Shodan and 180K+ on Zoomeye as of May 2026, according to Cyera. The security problem is no longer agent capability alone, but whether identity, isolation, and runtime controls can survive agent automation.
NHIMG editorial — based on content published by Cyera: Four New OpenClaw Vulnerabilities and the security implications for AI agents
By the numbers:
- Shodan shows over 65K publicly accessible OpenClaw instances as of May 2026.
- Zoomeye shows over 180K publicly accessible OpenClaw instances as of May 2026.
Questions worth separating out
Q: How should security teams govern AI agents that have filesystem and shell access?
A: Treat the agent as a privileged non-human identity and define hard boundaries for what it can read, write, and execute.
Q: Why do AI agents create more risk than ordinary service accounts?
A: AI agents combine identity, decision-making, and execution authority in one runtime, so a compromise can become both an access problem and an action problem.
Q: What breaks when sandbox validation is separated from file access?
A: A TOCTOU gap lets an attacker change the object after it was approved but before it is used, often with a symbolic link swap.
Practitioner guidance
- Inventory every agent as a privileged NHI Map each OpenClaw or similar agent to the credentials, filesystems, APIs, and management functions it can reach.
- Eliminate client-controlled ownership signals Review MCP or loopback authorization paths for headers, flags, or environment variables that influence privilege.
- Test sandbox boundaries for TOCTOU exposure Probe read and write paths for symbolic-link swaps, path canonicalization gaps, and any delay between validation and use.
The practical signal is simple: if a task can be redirected by shell expansion, path swapping, or client-supplied ownership, the control model is already behind the deployment model?
👉 Read Cyera's analysis of four OpenClaw vulnerabilities and agent runtime risk →
Explore further
AI agents are now identity-bearing execution layers, not passive applications. Once an agent can read files, write files, invoke tools, and manage workflows, compromise is no longer limited to a single process. The OpenClaw findings show that the security model has to follow the agent’s authority, not the user interface that started the session. Practitioners should govern agents as privileged NHI with explicit boundaries.
A few things that frame the scale:
- The average estimated time to remediate a leaked secret is 27 days, despite 75% of organisations expressing strong confidence in their secrets management capabilities, according to The State of Secrets in AppSec.
- Only 44% of developers are reported to follow security best practices for secrets management, exposing a significant behaviour gap across modern application pipelines.
A question worth separating out:
Q: What should teams do first after an AI agent privilege escalation flaw is found?
A: Contain the agent workload, revoke or rotate any secrets the runtime could reach, and inspect control paths for owner spoofing or similar authorization flaws. Then verify whether the agent altered files, scheduled jobs, or policy settings that could survive a restart. The first 24 to 72 hours should focus on stopping further agent actions and confirming whether persistence exists.
👉 Read our full editorial: OpenClaw vulnerabilities show how agents become the attack layer