> Fixed in OpenClaw 2026.3.24, the current shipping release.
Title
Non-owner command-authorized sender can change the owner-only /send session delivery policy
CWE
CWE-285 Improper Authorization
CVSS v3.1
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L
Base score: 5.4 (Medium)
Severity Assessment
Medium. This is a real owner-only authorization bypass, but the demonstrated impact is limited to persistent mutation of the current session’s delivery policy rather than direct code execution, sandbox escape, or cross-host compromise.
Impact
A non-owner sender who is allowed to run commands can invoke /send on|off|inherit and persistently change the current session’s sendPolicy, even though OpenClaw documents /send as owner-only.
That lets a lower-trust participant:
/send off), suppressing future replies in that chat;/send on) after the owner intentionally disabled it;/send inherit).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-session.ts:212-239
handleSendPolicyCommand(...) checks only params.command.isAuthorizedSender.params.sessionEntry.sendPolicy and persists the session entry.Authorization behavior that makes this reachable:
src/auto-reply/command-auth.ts:401-407
senderIsOwner is computed separately from general command authorization.src/auto-reply/command-auth.ts:420-429
senderIsOwner === false.src/auto-reply/command-auth.owner-default.test.ts:10-47
Documented owner-only contract:
docs/tools/slash-commands.md:112
/send on|off|inherit is documented as owner-only.docs/concepts/session-tool.md:156
sendPolicy is documented as settable via sessions.patch or owner-only /send on|off|inherit.Related privilege model:
src/gateway/method-scopes.ts:131-133
sessions.patch is admin-scoped, which reinforces that session-delivery-policy mutation is treated as privileged state.Version history:
ea018a68ccb92dbc735bc1df9880d5c95c63ca35 (refactor(auto-reply): split reply pipeline).v2026.1.14-1v2026.3.23Technical Reproduction
v2026.3.23.commands.allowFrom;commands.ownerAllowFrom.sessionEntry and sessionStore./send off as the non-owner but command-authorized sender.isAuthorizedSender === truesenderIsOwner === falsesessionEntry.sendPolicy, and persists the session entry.Demonstrated Impact
The vulnerable handler performs a real persistent session-state change:
src/auto-reply/reply/commands-session.ts:232-238
/send inherit deletes sessionEntry.sendPolicysessionEntry.sendPolicy = sendPolicyCommand.modepersistSessionEntry(params)The mutation is not gated by owner status, only by general command authorization.
That changes subsequent delivery behavior for the current session, which matches the documented meaning of sendPolicy.
Environment
v2026.3.23ccfeecb6887cd97937e33a71877ad512741e82b22026-03-23T23:15:50Z2026-03-24Duplicate Check
Upon inspection there is no preexisting GHSA for /send.
This is distinct from:
GHSA-r7vr-gr74-94p8
/config and /debug, not /send.This is the same authorization class, but a different privileged command surface that still lacks the owner check.
In Scope Check
This report is in scope under SECURITY.md because:
SECURITY.md:151-152 explicitly says non-owner sender status matters for owner-only tools and commands;/send is explicitly documented as owner-only, so this is a direct owner-only authorization bypass, not a complaint about normal shared-agent steering.This is therefore a concrete authorization flaw against a documented product boundary.
Remediation Advice
/send to require owner status, not just command authorization./config, /debug, and owner-only /plugins writes./send must still be rejected unless senderIsOwner === true./send on|off|inherit normally.| 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.