> Fixed in OpenClaw 2026.3.24, the current shipping release.
Title
Mutating internal /allowlist chat commands missed operator.admin scope enforcement
CWE
CWE-862 Missing Authorization
CVSS v3.1
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N
Base score: 6.5 (Medium)
Severity Assessment
Medium. This is a real authorization flaw in OpenClaw’s internal control plane. The issue does not require host access, trusted local state tampering, or multi-tenant assumptions, but exploitation does require an already authenticated internal Gateway caller with operator.write.
Impact
An authenticated internal Gateway caller limited to operator.write can perform state-changing /allowlist actions without operator.admin, even though comparable mutating internal chat commands already require operator.admin. The reachable effects are persistent changes to config-backed allowFrom entries and pairing-store-backed allowlist entries.
This is not a semantic-modeling complaint and not a generic “trusted operator can do things” claim. It is a missing authorization check inside OpenClaw’s own internal scope model, where peer mutating command surfaces already distinguish operator.write from operator.admin.
Affected Component
Verified against the latest published GitHub release tag v2026.3.23 (ccfeecb6887cd97937e33a71877ad512741e82b2), published 2026-03-23T23:15:50Z.
Exact vulnerable path on the shipped tag:
src/auto-reply/reply/commands-allowlist.ts:251-254
/allowlist authorization uses only rejectUnauthorizedCommand(...).src/auto-reply/reply/commands-allowlist.ts:386-524
requireGatewayClientScopeForInternalChannel(..., operator.admin, ...).Reachability and scope model:
src/gateway/method-scopes.ts:94-109
chat.send is a write-scoped method.src/gateway/server.chat.gateway-server-chat.test.ts:539-559
chat.send routes slash commands without an agent run.src/auto-reply/command-auth.ts:574-577
senderIsOwner only when GatewayClientScopes includes operator.admin.Comparable internal mutating command paths already enforce operator.admin:
src/auto-reply/reply/commands-config.ts:64-73src/auto-reply/reply/commands-mcp.ts:89-96src/auto-reply/reply/commands-plugins.ts:387-394src/auto-reply/reply/commands-acp.ts:98-106Version history:
555b2578a8cc6e1b93f717496935ead97bfbed8b (feat: add /allowlist command)v2026.1.20v2026.3.23Technical Reproduction
v2026.3.23.Provider = "webchat"Surface = "webchat"GatewayClientScopes = ["operator.write"]params.command.channel = "webchat"chat.send./allowlist add dm channel=telegram 789/allowlist add dm --store channel=telegram 789isAuthorizedSender === truesenderIsOwner === falseDemonstrated Impact
The vulnerable handler performs real state mutation for a low-scope internal caller:
src/auto-reply/reply/commands-allowlist.ts:398-503src/auto-reply/reply/commands-allowlist.ts:479-485src/auto-reply/reply/commands-allowlist.ts:513-518The result is successful persistence, not just a misleading success message.
Environment
v2026.3.23ccfeecb6887cd97937e33a71877ad512741e82b22026-03-23T23:15:50Z2026-03-24Duplicate Check
This is not a duplicate of:
GHSA-pjvx-rx66-r3fg
/allowlist ... --store, not missing internal operator.admin enforcement.GHSA-hfpr-jhpq-x4rm
/config writes through chat.send, not /allowlist.GHSA-3w6x-gv34-mqpf
/acp, not /allowlist).In Scope Check
This report is in scope under SECURITY.md because:
SECURITY.md explicitly treats as full operator-access surfaces;operator.write vs operator.admin);operator.admin, so this is not a request for a new boundary but a missing check on an existing one.This is therefore a concrete authorization bug, not a trusted-operator hardening suggestion.
Remediation Advice
requireGatewayClientScopeForInternalChannel(..., allowedScopes: ["operator.admin"], ...) to the mutating internal /allowlist paths.operator.write must be rejected;operator.admin must be allowed.| Software | From | Fixed in |
|---|---|---|
openclaw
|
- | 2026.3.24 |
A security vulnerability is a weakness in software, hardware, or configuration that can be exploited to compromise confidentiality, integrity, or availability. Many vulnerabilities are tracked as CVEs (Common Vulnerabilities and Exposures), which provide a standardized identifier so teams can coordinate patching, mitigation, and risk assessment across tools and vendors.
CVSS (Common Vulnerability Scoring System) estimates technical severity, but it doesn't automatically equal business risk. Prioritize using context like internet exposure, affected asset criticality, known exploitation (proof-of-concept or in-the-wild), and whether compensating controls exist. A "Medium" CVSS on an exposed, production system can be more urgent than a "Critical" on an isolated, non-production host.
A vulnerability is the underlying weakness. An exploit is the method or code used to take advantage of it. A zero-day is a vulnerability that is unknown to the vendor or has no publicly available fix when attackers begin using it. In practice, risk increases sharply when exploitation becomes reliable or widespread.
Recurring findings usually come from incomplete Asset Discovery, inconsistent patch management, inherited images, and configuration drift. In modern environments, you also need to watch the software supply chain: dependencies, containers, build pipelines, and third-party services can reintroduce the same weakness even after you patch a single host. Unknown or unmanaged assets (often called Shadow IT) are a common reason the same issues resurface.
Use a simple, repeatable triage model: focus first on externally exposed assets, high-value systems (identity, VPN, email, production), vulnerabilities with known exploits, and issues that enable remote code execution or privilege escalation. Then enforce patch SLAs and track progress using consistent metrics so remediation is steady, not reactive.
SynScan combines attack surface monitoring and continuous security auditing to keep your inventory current, flag high-impact vulnerabilities early, and help you turn raw findings into a practical remediation plan.