CVE-2026-33579: OpenClaw: scope bypass escalates low-priv to admin
CRITICALA CVSS 9.9 authorization flaw in OpenClaw (CVE-2026-33579) allows any user with device pairing privileges to approve pending device requests at admin scope by exploiting missing caller-scope forwarding in the /pair approve command path — no admin credentials required. With a network attack vector, low complexity, and no user interaction, the CVSS Scope:Changed modifier reflects that a single compromised pairing account can cascade into full admin control over everything the agent orchestrates, including connected AI tools, configuration surfaces, and restricted data sources. EPSS places this in the top 55% for exploitation likelihood, and the public patch commit (e403decb) is trivially reversible into a working PoC; OpenClaw's ecosystem has already been abused for credential theft at scale (AIID #1368), making rapid weaponization plausible. Upgrade to OpenClaw ≥ 2026.3.28 immediately, audit /pair approve logs for any approvals executed by non-admin accounts, and revoke affected device pairs.
What is the risk?
Critical risk. CVSS 9.9 with AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H sits at the highest practical severity band for a privilege escalation — network-reachable, trivially exploitable with any low-privilege account, and producing full admin impact with scope change across dependent components. EPSS 0.00624 (top 55%) combined with a public, human-readable patch diff narrows the window before PoC code surfaces. No CISA KEV entry yet, but the low attack complexity and severity of impact make this a strong candidate for near-term weaponization. AI agent orchestration platforms are especially high-value targets because admin access unlocks tool invocation, configuration modification, and lateral movement across every system the agent connects to.
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?
6 steps-
Patch immediately: upgrade to OpenClaw ≥ 2026.3.28 (commit e403decb).
-
Audit device pairing logs: identify all /pair approve events executed by accounts without admin scope — treat any match as a confirmed compromise indicator.
-
Revoke suspect device pairs: revoke and re-issue any device credentials approved by non-admin accounts since the last known-good state.
-
Restrict pairing privileges: apply least-privilege — only accounts that genuinely require device approval should hold pairing permissions.
-
Detection: add SIEM/EDR rule alerting on /pair approve calls from non-admin principals.
-
If patching is delayed, temporarily disable device pairing functionality or restrict it to admin-only accounts as a compensating control.
How is it classified?
Which compliance frameworks are affected?
This CVE is relevant to:
Frequently Asked Questions
What is CVE-2026-33579?
A CVSS 9.9 authorization flaw in OpenClaw (CVE-2026-33579) allows any user with device pairing privileges to approve pending device requests at admin scope by exploiting missing caller-scope forwarding in the /pair approve command path — no admin credentials required. With a network attack vector, low complexity, and no user interaction, the CVSS Scope:Changed modifier reflects that a single compromised pairing account can cascade into full admin control over everything the agent orchestrates, including connected AI tools, configuration surfaces, and restricted data sources. EPSS places this in the top 55% for exploitation likelihood, and the public patch commit (e403decb) is trivially reversible into a working PoC; OpenClaw's ecosystem has already been abused for credential theft at scale (AIID #1368), making rapid weaponization plausible. Upgrade to OpenClaw ≥ 2026.3.28 immediately, audit /pair approve logs for any approvals executed by non-admin accounts, and revoke affected device pairs.
Is CVE-2026-33579 actively exploited?
No confirmed active exploitation of CVE-2026-33579 has been reported, but organizations should still patch proactively.
How to fix CVE-2026-33579?
1. Patch immediately: upgrade to OpenClaw ≥ 2026.3.28 (commit e403decb). 2. Audit device pairing logs: identify all /pair approve events executed by accounts without admin scope — treat any match as a confirmed compromise indicator. 3. Revoke suspect device pairs: revoke and re-issue any device credentials approved by non-admin accounts since the last known-good state. 4. Restrict pairing privileges: apply least-privilege — only accounts that genuinely require device approval should hold pairing permissions. 5. Detection: add SIEM/EDR rule alerting on /pair approve calls from non-admin principals. 6. If patching is delayed, temporarily disable device pairing functionality or restrict it to admin-only accounts as a compensating control.
What systems are affected by CVE-2026-33579?
This vulnerability affects the following AI/ML architecture patterns: agent frameworks, AI orchestration platforms, multi-user AI agent deployments, enterprise AI assistant platforms.
What is the CVSS score for CVE-2026-33579?
CVE-2026-33579 has a CVSS v3.1 base score of 9.9 (CRITICAL). The EPSS exploitation probability is 0.62%.
What is the AI security impact?
Affected AI Architectures
MITRE ATLAS Techniques
AML.T0012 Valid Accounts AML.T0049 Exploit Public-Facing Application AML.T0053 AI Agent Tool Invocation AML.T0081 Modify AI Agent Configuration Compliance Controls Affected
What are the technical details?
Original Advisory
OpenClaw before 2026.3.28 contains a privilege escalation vulnerability in the /pair approve command path that fails to forward caller scopes into the core approval check. A caller with pairing privileges but without admin privileges can approve pending device requests asking for broader scopes including admin access by exploiting the missing scope validation in extensions/device-pair/index.ts and src/infra/device-pairing.ts.
Exploitation Scenario
An attacker with a low-privilege OpenClaw account (e.g., a developer or CI service account holding pairing but not admin role) creates or identifies a pending device pair request that specifies admin-level scopes. They call POST /pair approve with that request ID. Because extensions/device-pair/index.ts fails to forward the caller's scope into the core approval check in src/infra/device-pairing.ts, the authorization gate evaluates the requested scope (admin) rather than the caller's scope (pairing-only) and approves the request. The device is issued admin credentials. The attacker then uses the admin device to modify OpenClaw agent configurations, invoke privileged tools such as file system or API integrations, or extract credentials from connected services — all without ever obtaining a legitimate admin account.
Weaknesses (CWE)
CWE-863 — Incorrect Authorization: The product performs an authorization check when an actor attempts to access a resource or perform an action, but it does not correctly perform the check.
- [Architecture and Design] Divide the product into anonymous, normal, privileged, and administrative areas. Reduce the attack surface by carefully mapping roles with data and functionality. Use role-based access control (RBAC) [REF-229] to enforce the roles at the appropriate boundaries. Note that this approach may not protect against horizontal authorization, i.e., it will not protect a user from attacking others with the same role.
- [Architecture and Design] Ensure that access control checks are performed related to the business logic. These checks may be different than the access control checks that are applied to more generic resources such as files, connections, processes, memory, and database records. For example, a database may restrict access for medical records to a specific database user, but each record might only be intended to be accessible to the patient and the patient's doctor [REF-7].
Source: MITRE CWE corpus.
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H References
- github.com/openclaw/openclaw/commit/e403decb6e20091b5402780a7ccd2085f98aa3cd patch
- github.com/openclaw/openclaw/security/advisories/GHSA-hc5h-pmr3-3497 vendor-advisory
- vulncheck.com/advisories/openclaw-privilege-escalation-via-missing-caller-scope-validation-in-device-pair-approval third-party-advisory
Timeline
Related Vulnerabilities
CVE-2026-32922 9.9 OpenClaw: privilege escalation to RCE via token scope bypass
Same package: openclaw 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-32038 9.8 OpenClaw: sandbox bypass enables container lateral movement
Same package: openclaw CVE-2026-32917 9.8 OpenClaw: RCE via unsanitized iMessage SCP paths
Same package: openclaw