Your RSA-2048 keys break in 2030. Find every one of them before attackers do.
📦 npm
Not in CISA KEV

CVE-2026-35653 openclaw

Fix: openclaw/openclaw@4dcc39c

CVE-2026-35653 is a CWE-863 vulnerability in openclaw. A fix is available for openclaw — see the affected versions and patch details below.

OpenClaw < 2026.3.24 - Incorrect Authorization in POST /reset-profile via browser.request

Also known asGHSA-xp9r-prpg-373r
Published
Apr 10, 2026
Updated
Aug 12, 2026
Affected
1 pkg
Patched
1 / 1
Exploits
None indexed
Exploitation data as of Sep 22, 2026 · OSV.dev, NVD, FIRST.org (EPSS)

Exploitation Status

Proof-of-concept exploit code exists

  • CISA’s SSVC triage found public proof-of-concept exploit code for this CVE, though no confirmed active exploitation.
  • A successful exploit gives an attacker total control of the affected component, not partial access.

Exploitation and automatability from CISA’s SSVC triage for CVE-2026-35653.

EPSS Exploitation Probability

via FIRST.org ↗
0.6%probability of exploitation in next 30 days
Lower Risk0.00%
Lower risk than most CVEs47th percentile — riskier than 47% of all scored CVEsHighest risk

EPSS (Exploit Prediction Scoring System) is a daily probability model maintained by FIRST.org. It estimates the likelihood a CVE will be exploited in production environments within the next 30 days, derived from real-world threat intelligence signals.

Real-World Exposure

1 pkg affected

How broadly this vulnerability is actually deployed: weekly install volume shows current usage, and reverse-dependency count shows how many other packages break if it stays unpatched.

133other npm packages depend on this — each one inherits the vulnerability until it's patched upstream
openclawnpm
2.5Mdownloads / week

Description

Fixed in OpenClaw 2026.3.24, the current shipping release.

Title

browser.request still allows POST /reset-profile through the operator.write surface in OpenClaw v2026.3.22 after GHSA-vmhq-cqm9-6p7q

Severity Assessment

High

CWE:

  • CWE-863: Incorrect Authorization

Proposed CVSS v3.1:

  • 8.1 (CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:H)

An authenticated caller who only has access to the scoped Gateway method browser.request on the operator.write surface can still reach a destructive persistent-profile management route.

Likely related advisory family:

  • GHSA-vmhq-cqm9-6p7q

This should be treated as a later-version residual or incomplete fix. The earlier fix blocked POST /profiles/create and profile deletion, but the latest released v2026.3.22 code still omits POST /reset-profile from the same mutation gate.

Impact

A caller with operator.write access to browser.request can still trigger persistent profile reset via POST /reset-profile.

This crosses the intended privilege boundary for browser profile management because the release already attempts to block adjacent persistent profile mutations on this same surface.

In practice, the allowed route reaches destructive behavior that can:

  • stop the running browser for that profile
  • close the Playwright browser connection for that profile
  • move the profile's local userDataDir to Trash when it exists

This is a real integrity and availability impact on persistent browser state, not a route-classification mismatch with no side effects.

Affected Component

Product:

  • openclaw

Tested latest released version:

  • release tag: v2026.3.22
  • release tag target commit (peeled tag): e7d11f6c33e223a0dd8a21cfe01076bd76cef87a

Published artifact for that release:

  • package: openclaw-2026.3.22.tgz
  • package build-info commit: 4dcc39c25c6cc63fedfd004f52d173716576fcf0
  • package build-info timestamp: 2026-03-23T10:56:05.946Z

Exact vulnerable paths on the shipped tag:

  • src/gateway/method-scopes.ts:114
    • browser.request is placed on the operator.write surface
  • src/gateway/server-methods/browser.ts:155-165
    • requests are only denied when isPersistentBrowserProfileMutation(method, path) returns true
  • src/browser/request-policy.ts:19-25
    • the mutation classifier recognizes POST /profiles/create and DELETE /profiles/:name, but not POST /reset-profile
  • src/browser/routes/basic.ts:161-170
    • the browser server exposes POST /reset-profile
  • src/browser/server-context.reset.ts:37-63
    • resetProfile() stops the browser, closes the connection, and moves the local profile directory to Trash when present
  • src/node-host/invoke-browser.ts:240-243
    • the same route-classification helper is reused in the browser proxy path when profile restrictions are active

Relevant regression coverage gap on the shipped tag:

  • src/gateway/server-methods/browser.profile-from-body.test.ts:104-140
    • tests only block POST /profiles/create and DELETE /profiles/:name
    • there is no equivalent deny case for POST /reset-profile

Published artifact evidence for the exact released package:

  • openclaw-2026.3.22.tgz::package/dist/build-info.json
  • openclaw-2026.3.22.tgz::package/dist/gateway-cli-Cxz4pSoJ.js:11469-11525
  • openclaw-2026.3.22.tgz::package/dist/gateway-cli-Cxz4pSoJ.js:11484-11485
  • openclaw-2026.3.22.tgz::package/dist/request-policy-nIRryZwZ.js:9-12
  • openclaw-2026.3.22.tgz::package/dist/routes-CdaHRCET.js:6874-6889

Important release note:

  • the published package build-info commit differs from the release tag target commit
  • for this issue, the relevant authorization and route behavior was cross-checked in both the shipped tag source and the published package bundle, and it matches semantically on the vulnerable path

Technical Reproduction

A direct control/exploit pair can be reproduced against the latest released version.

Preconditions:

  • use [email protected]
  • authenticate as a caller that has access to the scoped Gateway method browser.request
  • keep that caller on operator.write, not operator.admin
  • ensure the target local browser profile exists

Reproduction steps:

  1. Call browser.request with:
    • method: "POST"
    • path: "/profiles/create"
    • body: { "name": "poc-profile" }
  2. Observe the control case is rejected with:
    • browser.request cannot create or delete persistent browser profiles
  3. Call browser.request again with:
    • method: "POST"
    • path: "/reset-profile"
    • body: { "profile": "poc-profile", "name": "poc-profile" }
  4. Observe that the exploit case is not rejected by the same handler.
  5. Observe that the request is forwarded to the browser route/dispatcher, rather than being denied by the mutation classifier.
  6. Observe that the reset route succeeds and applies profile reset behavior.

Why this happens in the released code:

  • the release tries to gate persistent profile mutation using isPersistentBrowserProfileMutation(...)
  • that helper does not classify POST /reset-profile as a protected mutation
  • the exposed browser server route still maps /reset-profile to profileCtx.resetProfile()
  • resetProfile() performs state-changing behavior on the selected local profile

Demonstrated Impact

The shipped release shows the following behavior difference:

Control case:

  • POST /profiles/create
  • rejected before the request is dispatched to the browser control path

Exploit case:

  • POST /reset-profile
  • not classified as a blocked mutation
  • remains reachable through the browser.request surface
  • reaches resetProfile(), which performs destructive profile-management operations

The reached route has concrete side effects:

  • stops the running browser if active
  • closes the Playwright browser connection
  • moves the profile's local userDataDir to Trash if it exists

This is therefore a concrete authorization and policy gap on a real destructive profile-management route. It is not a complaint about the existence of browser.request by itself.

Environment

Environment used for validation:

  • product: openclaw
  • latest released version: 2026.3.22
  • release tag: v2026.3.22
  • release tag target commit (peeled tag): e7d11f6c33e223a0dd8a21cfe01076bd76cef87a
  • published package: openclaw-2026.3.22.tgz
  • published package build-info commit: 4dcc39c25c6cc63fedfd004f52d173716576fcf0

Explicit trust-model statement:

  • this report does not rely on adversarial or mutually untrusted operators sharing one gateway host or config

Scope check:

  • this is not a complaint about the existence of the explicit browser.request surface by itself
  • this is not a prompt-injection-only report
  • this is not a multi-tenant shared-gateway claim
  • this is not an attack on the unscoped HTTP compatibility endpoints
  • this is a concrete missed route inside an intended privilege gate on a real scoped Gateway method
  • the control case proves the policy is intended to exist on this surface, and the exploit case proves POST /reset-profile remains outside that gate in the shipped release

Remediation Advice

Recommended fix:

  1. Extend the persistent-profile mutation classifier to include POST /reset-profile.
  2. Reuse the same centralized route classification everywhere the release currently relies on isPersistentBrowserProfileMutation(...), including:
    • src/gateway/server-methods/browser.ts
    • src/node-host/invoke-browser.ts
  3. Add regression coverage with both:
    • a deny control for POST /reset-profile on the lower-privilege browser.request surface
    • an allow control for non-mutating browser profile reads
  4. Review nearby profile-management routes for any other state-changing endpoints that are still omitted from the mutation classifier.
  5. Treat GHSA-vmhq-cqm9-6p7q as the prior family and close the remaining residual route in the same policy surface.

Affected Packages

1 total 1 fixed
EcosystemPackageVulnerable rangeFix
📦npmopenclawall versions2026.3.24npm install openclaw@2026.3.24

Detection & mitigation playbook

Open-source dependency
  1. Detect

    Scan your dependency tree (package-lock.json, pnpm-lock.yaml, requirements.txt, go.sum, etc.) for openclaw, including transitive dependencies — a direct dependency you never call can still pull in a vulnerable version.

  2. Fix

    Update openclaw to 2026.3.24 or later, then make sure no transitive (indirect) dependency still pins the vulnerable range — O3 confirms CVE-2026-35653 is resolved across your whole dependency graph.

  3. Workarounds

    If you can't upgrade right away: gate or disable the affected feature, validate untrusted input at the boundary, and avoid passing attacker-controlled data into the vulnerable path. O3's runtime protection blocks exploitation in production as an interim safeguard until the upgrade lands.

  4. How O3 protects you

    O3 Security's impact-aware SCA analyses which vulnerable code paths your application actually calls, so a match like CVE-2026-35653 can be triaged on real exposure rather than presence alone.

Tailored to CVE-2026-35653. Runtime protection reduces exposure until a permanent patch is applied and verified — it complements patching, it doesn't replace it.

Frequently Asked Questions

> Fixed in OpenClaw 2026.3.24, the current shipping release. # Title `browser.request` still allows `POST /reset-profile` through the `operator.write` surface in OpenClaw `v2026.3.22` after `GHSA-vmhq-cqm9-6p7q` ## Severity Assessment High CWE: - `CWE-863: Incorrect Authorization` Proposed CVSS v3.1: - `8.1` (`CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:H`) An authenticated caller who only has access to the scoped Gateway method `browser.request` on the `operator.write` surface can still reach a destructive persistent-profile management route. Likely related advisory family: - `GHSA-
O3 Security · Impact-Aware SCA

Is CVE-2026-35653 in your dependencies?

O3 Security finds CVE-2026-35653 across npm dependencies, including transitive ones, and its impact-aware SCA ranks findings by whether your code actually calls the vulnerable path.

CVE-2026-35653: openclaw | O3 Security