CVEReports
CVEReports

Automated vulnerability intelligence platform. Comprehensive reports for high-severity CVEs generated by AI.

Product

  • Home
  • Sitemap
  • RSS Feed

Company

  • About
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CVEReports. All rights reserved.

Made with love by Amit Schendel & Alon Barad



CVE-2026-28472

CVE-2026-28472: Device Identity Verification Bypass in OpenClaw Gateway WebSocket Handshake

Alon Barad
Alon Barad
Software Engineer

Mar 11, 2026·6 min read·118 visits

Executive Summary (TL;DR)

A logic flaw in OpenClaw < 2026.2.2 allows attackers to bypass device identity checks during the WebSocket handshake by providing an unvalidated dummy token, potentially leading to unauthorized operator access.

CVE-2026-28472 is a critical security vulnerability in the OpenClaw automation platform affecting all versions prior to 2026.2.2. The vulnerability resides in the gateway's WebSocket connection handshake logic, where a flaw in authentication sequence allows unauthenticated attackers to bypass device identity verification. In environments utilizing secondary authentication providers, this can result in unauthorized operator access to the gateway.

Vulnerability Overview

OpenClaw operates as an automation platform relying on a centralized gateway component for device management and operator access. The gateway utilizes a WebSocket connection to handle real-time communication between paired devices and the control plane. CVE-2026-28472 identifies a critical authentication bypass vulnerability within this specific WebSocket handshake mechanism. All versions of the software prior to 2026.2.2 contain this structural flaw.

The vulnerability is formally classified as CWE-306: Missing Authentication for Critical Function. The flaw allows an unauthenticated, remote attacker to bypass mandatory device identity verification steps during the initial connection phase. This bypass occurs because the gateway improperly evaluates the presence of authentication tokens before validating their cryptographic integrity or correctness against a known state.

Exploiting this vulnerability requires specific environmental configurations to achieve full operator access. Specifically, the vulnerability manifests as a critical threat in deployments utilizing secondary identity providers, such as Tailscale, for network-level authentication. When combined with these proxy configurations, the logic flaw grants unauthorized operators full administrative access to the OpenClaw gateway infrastructure.

Root Cause Analysis

The root cause of CVE-2026-28472 is a classic "check-before-validation" logic flaw located within the src/gateway/server/ws-connection/message-handler.ts component. The OpenClaw gateway implements a mechanism to occasionally skip strict device identity checks, such as cryptographic pairing and registration validation. This bypass functionality was intended strictly for authorized administrators possessing a valid shared secret or authentication token.

In vulnerable versions, the application determined eligibility for this bypass by checking the boolean presence of the auth.token field in the incoming request structure. The connection handler evaluated a hasTokenAuth variable, which simply returned true if the token field existed in the incoming JSON payload. The system completely failed to validate the contents of this token before granting the bypass authorization.

Consequently, an attacker could supply an arbitrary, invalid string such as "dummy" in the auth.token field. The hasTokenAuth condition would evaluate to true, incorrectly setting the canSkipDevice flag to true. The actual cryptographic validation of the token was deferred until later in the execution flow, at which point the device identity check had already been successfully and permanently bypassed.

Code Analysis and Patch Review

The logic flaw is evident when examining the state of src/gateway/server/ws-connection/message-handler.ts prior to the patch. The codebase relied on insecure conditional checks to establish the canSkipDevice state. The variable assignment directly trusted unvalidated input state from the client payload.

// Vulnerable implementation snippet
const hasTokenAuth = !!request.auth?.token;
const hasSharedAuth = !!request.auth?.password;
const canSkipDevice = allowControlUiBypass ? hasSharedAuth : hasTokenAuth;

Commit fe81b1d7125a014b8280da461f34efbf5f761575 resolves this vulnerability by completely restructuring the authentication execution flow. The patch forces the gateway to fully evaluate and validate the shared secret before assigning the bypass flag. The developers introduced a sharedAuthOk state variable that strictly requires successful cryptographic validation via an asynchronous call.

// Patched implementation snippet
const sharedAuthResult = await authorizeGatewayConnect(request.auth);
const sharedAuthOk = sharedAuthResult?.ok === true && /* additional strict checks */;
const canSkipDevice = sharedAuthOk;

This structural change ensures that identity provided by third parties cannot be used to bypass device requirements unless a valid administrative shared secret is also present. The authorizeGatewayConnect function now serves as a mandatory gatekeeper, preventing the authorization leap that previously allowed exploitation.

Exploitation Methodology

The exploitation methodology for CVE-2026-28472 requires standard network access to the OpenClaw gateway's WebSocket endpoint. The attacker begins by initiating a standard HTTP GET request with the Upgrade: websocket header to the gateway server. Within the initial connection parameters or the first JSON frame, the attacker injects an auth.token field containing an arbitrary string value.

Upon receiving the request, the gateway parses the payload and sets the internal canSkipDevice flag to true. This action skips the mandatory check for a registered device identity or public key exchange. The connection successfully circumvents the primary access control mechanism designed to restrict gateway access to explicitly paired devices.

To achieve full operator access, the attacker relies on the target environment utilizing a secondary authentication method. If the gateway operates behind an identity-aware proxy that injects authorization headers, the system misinterprets the bypassed device check as a fully authorized session. The attacker gains the ability to execute operator commands against the gateway without possessing a valid device identity.

Impact Assessment

The security impact of CVE-2026-28472 is severe for environments matching the required configuration profile. Successful exploitation grants the attacker unauthorized operator-level access to the OpenClaw gateway. This access level permits the execution of administrative commands, manipulation of paired devices, and potential lateral movement into the broader managed infrastructure.

The CVSS v3.1 vector CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H results in a base score of 8.1. The High Attack Complexity (AC:H) correctly reflects the dependency on specific environmental configurations, namely the presence of a secondary identity provider like Tailscale. Without this secondary authorization mechanism, the dummy token bypass does not immediately yield full system compromise.

Despite the high complexity, the vulnerability requires no privileges (PR:N) and no user interaction (UI:N) to trigger. The resulting impact on confidentiality, integrity, and availability is total. The CVSS v4.0 score evaluates this combination at a 9.2 (Critical), emphasizing the severity of the unauthenticated access granted by the logic flaw.

Remediation and Mitigation

The primary remediation for CVE-2026-28472 is an immediate upgrade to OpenClaw version 2026.2.2 or later. This release contains the complete logical fix implemented in commit fe81b1d7125a014b8280da461f34efbf5f761575. Administrators should prioritize patching systems exposed to untrusted networks or those utilizing identity-aware proxies for gateway access.

For environments where immediate patching is unfeasible, administrators must review the gateway configuration file. The dangerouslyDisableDeviceAuth parameter must be explicitly set to false, which is the default state. While this does not patch the underlying logic flaw, it enforces strict device authentication paths that mitigate the primary exploitation vector.

Additionally, network security controls should be implemented to restrict access to the WebSocket port. Access should be limited to known, trusted IP addresses or explicitly managed through a strictly configured Virtual Private Network (VPN). Continuous monitoring of gateway logs for anomalous unauthorized conn messages can help detect active exploitation attempts.

Official Patches

OpenClawGitHub Security Advisory GHSA-rv39-79c4-7459

Fix Analysis (1)

Technical Appendix

CVSS Score
8.1/ 10
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
EPSS Probability
0.04%
Top 88% most exploited

Affected Systems

OpenClaw Gateway server componentOpenClaw WebSocket connection handler

Affected Versions Detail

Product
Affected Versions
Fixed Version
OpenClaw
OpenClaw
< 2026.2.22026.2.2
AttributeDetail
CWE IDCWE-306
Attack VectorNetwork
CVSS v3.18.1 (High)
EPSS Score0.00041 (12.29%)
ImpactUnauthorized Operator Access
Exploit StatusProof of Concept
CISA KEVNot Listed

MITRE ATT&CK Mapping

T1190Exploit Public-Facing Application
Initial Access
CWE-306
Missing Authentication for Critical Function

Missing Authentication for Critical Function

Vulnerability Timeline

Fix commit fe81b1d pushed to GitHub.
2026-02-03
CVE-2026-28472 published by NVD.
2026-03-05
GitHub Security Advisory GHSA-rv39-79c4-7459 released.
2026-03-05
Last modification of NVD record.
2026-03-09

References & Sources

  • [1]GitHub Security Advisory
  • [2]Fix Commit
  • [3]VulnCheck Advisory
  • [4]NVD Detail

Attack Flow Diagram

Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.
Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.

More Reports

•about 5 hours ago•CVE-2024-29203
4.3

CVE-2024-29203: Client-Side Cross-Site Scripting via Unsandboxed Iframes and Legacy Embed Elements in TinyMCE

CVE-2024-29203 identifies a cross-site scripting (XSS) vulnerability in the content ingestion and parsing mechanics of TinyMCE rich text editor. Due to a failure to enforce sandbox attributes on dynamic iframe elements and safely handle legacy embed objects, unauthenticated attackers can inject malicious elements that execute scripts within the context of the parent application session.

Amit Schendel
Amit Schendel
5 views•5 min read
•about 7 hours ago•CVE-2026-9277
8.1

CVE-2026-9277: OS Command Injection in shell-quote via Object-Token Line Terminator Parsing Defect

A technical breakdown of the OS command injection vulnerability in the shell-quote NPM package (CVE-2026-9277 / GHSA-w7jw-789q-3m8p). The bug resides in the character-by-character backslash-escaping logic applied to the .op field of object-tokens within the quote() function, which fails to match and escape line terminators due to a regex matching oversight in JavaScript. This allows unauthenticated remote attackers to execute arbitrary shell commands if they can control inputs processed by this library.

Alon Barad
Alon Barad
10 views•6 min read
•about 8 hours ago•CVE-2026-11645
8.8

CVE-2026-11645: Out-of-Bounds Memory Access in Google Chrome V8 Engine

A high-severity memory corruption vulnerability exists in the V8 JavaScript engine of Google Chrome before versions 149.0.7827.102/103. The flaw arises from an incorrect bounds-check elimination during JIT compilation by the TurboFan optimizer, allowing remote attackers to achieve out-of-bounds read and write access inside the sandboxed renderer process.

Amit Schendel
Amit Schendel
24 views•6 min read
•about 16 hours ago•CVE-2026-50751
9.3

CVE-2026-50751: Authentication Bypass in Check Point Security Gateway IKEv1 Legacy Validation

An improper authentication vulnerability (CWE-287) exists in the legacy, deprecated Internet Key Exchange version 1 (IKEv1) key exchange protocol implementation in Check Point Security Gateways. The vulnerability is caused by a logic flow weakness during the certificate validation process for Remote Access VPN and Mobile Access (SSL VPN) connections. An unauthenticated remote attacker can exploit this weakness to bypass user authentication entirely, establishing a fully functional Remote Access VPN connection without a valid password.

Alon Barad
Alon Barad
69 views•6 min read
•1 day ago•CVE-2026-39922
6.3

CVE-2026-39922: Server-Side Request Forgery in GeoNode Service Registration Endpoint

GeoNode versions prior to 4.4.5 and 5.0.2 are vulnerable to Server-Side Request Forgery (SSRF) in the service registration endpoint. Authenticated attackers with low privileges can exploit insufficient input validation in the Web Map Service (WMS) registration module to force the application server to make outbound network queries to loopback addresses, private RFC1918 subnets, link-local scopes, and cloud metadata endpoints. This technical report details the mechanics of the vulnerability, the underlying architectural flaw, and how to effectively remediate and mitigate the associated security risks.

Alon Barad
Alon Barad
4 views•7 min read
•1 day ago•CVE-2022-0492
7.8

CVE-2022-0492: Privilege Escalation and Container Escape via cgroups v1 release_agent

CVE-2022-0492 is a high-severity missing authorization vulnerability in the Linux kernel's Control Groups (cgroups) v1 implementation. The flaw resides within the cgroup_release_agent_write function in kernel/cgroup/cgroup-v1.c, where the kernel fails to validate if the process writing to the release_agent file possesses administrative capabilities in the initial user namespace. This allows a local attacker inside a container with root privileges (UID 0) to abuse user namespaces, mount a cgroups v1 directory, modify the release_agent parameter, and execute arbitrary commands on the host system as host root, effectively achieving a complete container escape.

Amit Schendel
Amit Schendel
12 views•7 min read