CVE-2026-53863: OpenClaw: access control bypass via unvalidated group ID
HIGHOpenClaw's tool group policy resolver accepts caller-supplied group IDs without validating actual group membership, allowing any low-privileged network user to substitute a high-privilege group ID and receive an incorrect policy approval for tool invocations they should never be authorized to make. For AI agent deployments, tool-level access controls are the primary guardrail separating roles from sensitive capabilities such as file writes, external API calls, and data store operations—a bypass here translates directly to the CVSS Integrity High impact rating. No public exploit code or Nuclei template exists yet and the CVE is absent from CISA KEV, but the combination of network reachability, low attack complexity, and low privilege bar makes opportunistic exploitation realistic for any attacker with API-level access to an exposed OpenClaw instance. Patch to OpenClaw 2026.4.25 or later immediately; as a temporary workaround, enforce group ID validation at the API gateway and restrict the policy resolver endpoint to trusted internal networks only.
What is the risk?
High severity (CVSS 7.1) with a network-accessible attack surface, low complexity, and low privilege requirement—no user interaction needed. The vulnerability class (CWE-639: Authorization Through User-Controlled Key) is well-understood and straightforward to weaponize once an attacker identifies the group ID parameter. No KEV listing and absent EPSS data reduce near-term probability, but the attack requires only knowledge of a valid high-privilege group ID, which is often enumerable or derivable from documentation. In multi-tenant or enterprise agentic platforms where OpenClaw enforces role separation across tool sets, successful exploitation could grant lateral movement across policy tiers.
How does the attack unfold?
What systems are affected?
| Package | Ecosystem | Vulnerable Range | Patched |
|---|---|---|---|
| OpenClaw | pip | — | No patch |
Do you use OpenClaw? You're affected.
How severe is it?
What is the attack surface?
What should I do?
5 steps-
Patch immediately: upgrade OpenClaw to version 2026.4.25 or later, which validates group IDs server-side before passing them to the policy resolver.
-
Immediate workaround if patching is blocked: enforce group ID validation at the API gateway or application boundary layer; reject any group ID not present in a server-side allowlist before the request reaches the policy resolver.
-
Network controls: restrict the OpenClaw policy resolver endpoint to trusted internal networks only and block public internet exposure.
-
Detection: audit tool invocation logs for group IDs that don't match the invoking user's enrolled groups; alert on group ID values appearing in requests that are absent from the configured group registry.
-
Least-privilege audit: review current tool group policy configurations and confirm that high-impact tools (write operations, external API integrations, data exfiltration-capable tools) are scoped to the minimal required groups.
How is it classified?
Which compliance frameworks are affected?
This CVE is relevant to:
Frequently Asked Questions
What is CVE-2026-53863?
OpenClaw's tool group policy resolver accepts caller-supplied group IDs without validating actual group membership, allowing any low-privileged network user to substitute a high-privilege group ID and receive an incorrect policy approval for tool invocations they should never be authorized to make. For AI agent deployments, tool-level access controls are the primary guardrail separating roles from sensitive capabilities such as file writes, external API calls, and data store operations—a bypass here translates directly to the CVSS Integrity High impact rating. No public exploit code or Nuclei template exists yet and the CVE is absent from CISA KEV, but the combination of network reachability, low attack complexity, and low privilege bar makes opportunistic exploitation realistic for any attacker with API-level access to an exposed OpenClaw instance. Patch to OpenClaw 2026.4.25 or later immediately; as a temporary workaround, enforce group ID validation at the API gateway and restrict the policy resolver endpoint to trusted internal networks only.
Is CVE-2026-53863 actively exploited?
No confirmed active exploitation of CVE-2026-53863 has been reported, but organizations should still patch proactively.
How to fix CVE-2026-53863?
1. Patch immediately: upgrade OpenClaw to version 2026.4.25 or later, which validates group IDs server-side before passing them to the policy resolver. 2. Immediate workaround if patching is blocked: enforce group ID validation at the API gateway or application boundary layer; reject any group ID not present in a server-side allowlist before the request reaches the policy resolver. 3. Network controls: restrict the OpenClaw policy resolver endpoint to trusted internal networks only and block public internet exposure. 4. Detection: audit tool invocation logs for group IDs that don't match the invoking user's enrolled groups; alert on group ID values appearing in requests that are absent from the configured group registry. 5. Least-privilege audit: review current tool group policy configurations and confirm that high-impact tools (write operations, external API integrations, data exfiltration-capable tools) are scoped to the minimal required groups.
What systems are affected by CVE-2026-53863?
This vulnerability affects the following AI/ML architecture patterns: Agent frameworks, AI orchestration platforms, Multi-tenant agentic pipelines, Tool-augmented LLM deployments, Enterprise AI automation workflows.
What is the CVSS score for CVE-2026-53863?
CVE-2026-53863 has a CVSS v3.1 base score of 7.1 (HIGH).
What is the AI security impact?
Affected AI Architectures
MITRE ATLAS Techniques
AML.T0049 Exploit Public-Facing Application AML.T0053 AI Agent Tool Invocation AML.T0107 Exploitation for Defense Evasion Compliance Controls Affected
What are the technical details?
Original Advisory
OpenClaw before 2026.4.25 contains an input validation vulnerability in tool group policy callers that accept unvalidated group IDs. Attackers who can supply a group ID to the policy resolver could trigger incorrect group-policy decisions for tool invocations, potentially bypassing intended access controls.
Exploitation Scenario
An attacker with a low-privileged OpenClaw account assigned to group 'viewers' crafts an API request to the tool invocation endpoint, substituting their legitimate group ID with the ID of the 'admins' group—obtained by enumerating group names from documentation, API responses, or error messages. Because the policy resolver does not validate whether the caller actually belongs to the supplied group, it evaluates tool access permissions as if the attacker were an admin. The resolver returns an approval decision for a restricted tool—such as a database write tool or an external API integration—that the attacker's actual role should never access. The attacker invokes that tool to exfiltrate records, modify agent state, or trigger operations in connected downstream systems. All activity appears in logs as a group-authorized action, complicating detection.
Weaknesses (CWE)
CWE-639 — Authorization Bypass Through User-Controlled Key: The system's authorization functionality does not prevent one user from gaining access to another user's data or record by modifying the key value identifying the data.
- [Architecture and Design] For each and every data access, ensure that the user has sufficient privilege to access the record that is being requested.
- [Architecture and Design, Implementation] Make sure that the key that is used in the lookup of a specific user's record is not controllable externally by the user or that any tampering can be detected.
Source: MITRE CWE corpus.
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:H/A:N References
Timeline
Related Vulnerabilities
CVE-2026-30741 9.8 OpenClaw: RCE via request-side prompt injection
Same package: openclaw CVE-2026-53838 9.8 OpenClaw: approval scope bypass via reconnection state
Same package: openclaw CVE-2026-28451 9.3 OpenClaw: SSRF via Feishu extension exposes internal services
Same package: openclaw GHSA-cwj3-vqpp-pmxr 8.8 openclaw: Model bypasses authz to persist unsafe config
Same package: openclaw CVE-2026-35674 8.8 OpenClaw: scope bypass enables full agent admin takeover
Same package: openclaw