{"id":10327,"date":"2026-02-02T10:03:47","date_gmt":"2026-02-02T10:03:47","guid":{"rendered":"https:\/\/serisec.com\/index.php\/2026\/02\/02\/1-click-clawdbot-vulnerability-enable-malicious-remote-code-execution-attacks\/"},"modified":"2026-02-02T10:03:47","modified_gmt":"2026-02-02T10:03:47","slug":"1-click-clawdbot-vulnerability-enable-malicious-remote-code-execution-attacks","status":"publish","type":"post","link":"https:\/\/serisec.com\/index.php\/2026\/02\/02\/1-click-clawdbot-vulnerability-enable-malicious-remote-code-execution-attacks\/","title":{"rendered":"1-Click Clawdbot Vulnerability Enable Malicious Remote Code Execution Attacks"},"content":{"rendered":"<p>    1-Click Clawdbot Vulnerability Enable Malicious Remote Code Execution Attacks<br \/>\n \t<BR><br \/>\n<BR><\/BR><br \/>\n    <!-- no image --><br \/>\n \t<BR><br \/>\n<BR><\/BR><\/p>\n<div>\n<p>A critical vulnerability in OpenClaw, the open-source AI personal assistant trusted by over 100,000 developers, has been discovered and weaponized into a devastating <a href=\"https:\/\/cybersecuritynews.com\/critical-idis-ip-cameras-one-click-vulnerability\/\" target=\"_blank\" rel=\"noreferrer noopener\">one-click<\/a> remote code execution exploit.<\/p>\n<p>Security researchers at depthfirst General Security Intelligence uncovered a logic flaw that, when combined with other vulnerabilities, could trigger a chain reaction.<\/p>\n<p>Allows attackers to gain complete control <span style=\"box-sizing: border-box; margin: 0px; padding: 0px;\">of victim systems via a single\u00a0<a href=\"https:\/\/cybersecuritynews.com\/clicking-malicious-link\/\" target=\"_blank\" rel=\"noopener\">malicious link<\/a>, requiring no user interaction<\/span>.<\/p>\n<h2 class=\"wp-block-heading\" id=\"h-vulnerability-overview-technical-attack-mechanics\"><strong>Vulnerability Overview: Technical Attack Mechanics<\/strong><\/h2>\n<p>OpenClaw\u2019s architecture grants AI agents \u201cgod mode\u201d <span style=\"box-sizing: border-box; margin: 0px; padding: 0px;\">access to messaging apps,\u00a0API keys, and unrestricted control of the local computer<\/span>.<\/p>\n<p>While community enthusiasm surrounding the platform has driven rapid adoption, the security margin for error in such a high-privilege environment becomes razor-thin.<\/p>\n<figure class=\"wp-block-table is-style-stripes\">\n<table class=\"has-fixed-layout\">\n<thead>\n<tr>\n<th class=\"has-text-align-left\" data-align=\"left\"><strong>Attribute<\/strong><\/th>\n<th class=\"has-text-align-left\" data-align=\"left\"><strong>Details<\/strong><\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><strong>Product<\/strong><\/td>\n<td>OpenClaw (formerly ClawdBot\/Moltbot)<\/td>\n<\/tr>\n<tr>\n<td><strong>Vulnerability Type<\/strong><\/td>\n<td>Unsafe URL Parameter Handling + Cross-Site WebSocket Hijacking<\/td>\n<\/tr>\n<tr>\n<td><strong>Impact<\/strong><\/td>\n<td>Unauthenticated Remote Code Execution with System-Level Access<\/td>\n<\/tr>\n<tr>\n<td><strong>CVSS Score<\/strong><\/td>\n<td>Critical (9.8+)<\/td>\n<\/tr>\n<tr>\n<td><strong>Attack Vector<\/strong><\/td>\n<td>Network (Single Malicious Link)<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/figure>\n<p>The newly disclosed vulnerability exploits three distinct components working in sequence: unsafe URL parameter ingestion, immediate gateway connection without validation, and automatic transmission of authentication tokens.<\/p>\n<p>The exploitation chain begins with three seemingly benign operations occurring independently across the codebase.<\/p>\n<p>The app-settings.ts module blindly accepts the\u00a0gatewayUrl\u00a0query parameter from the URL without validation, then stores it directly in localStorage.<\/p>\n<p>Upon setting the application, the app-lifecycle.ts immediately triggers\u00a0connectGateway(), which automatically bundles the security-sensitive authToken into the connection handshake to the attacker-controlled gateway server.<\/p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/blogger.googleusercontent.com\/img\/b\/R29vZ2xl\/AVvXsEhfPlj5_C0nvYVvDwOvc1NMVYNNLzyZjPM54FAPX7ZSQGFjJn0WpWtwZGrAQPLQPdnO0bedmE8FnYTdbtGEzCXWYNYdtQwm_dahnS-T-sTWpSNrcwmHn2OIR_fxooNd0fGzCYCDgEuzlI49pGSdoRSmdTmPnNWC3ABu-UpnH8iF0zbR4UKVkNTcPTAM_8U\/s1600\/Screenshot%25202026-02-02%2520111436%2520%25281%2529.webp?ssl=1\" alt=\"1-Click RCE Exploit Kill Chain  source: depthfirst)\"><figcaption class=\"wp-element-caption\">1-Click RCE Exploit Kill Chain  source: depthfirst)<\/figcaption><\/figure>\n<p>This pattern creates a critical information disclosure vulnerability. The kill chain exploits an additional WebSocket origin validation flaw.<\/p>\n<figure class=\"wp-block-table is-style-stripes\">\n<table class=\"has-fixed-layout\">\n<thead>\n<tr>\n<th>Stage<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Visit<\/td>\n<td>User lands on malicious site.<\/td>\n<\/tr>\n<tr>\n<td>Load<\/td>\n<td>JS loads OpenClaw with malicious <code>gatewayUrl<\/code>.<\/td>\n<\/tr>\n<tr>\n<td>Leak<\/td>\n<td>\n<code>authToken<\/code> sent to attacker.<\/td>\n<\/tr>\n<tr>\n<td>Connect<\/td>\n<td>WebSocket opened to <code>localhost<\/code>.<\/td>\n<\/tr>\n<tr>\n<td>Bypass<\/td>\n<td>Safety guardrails disabled.<\/td>\n<\/tr>\n<tr>\n<td>Execute<\/td>\n<td>Attacker runs arbitrary commands.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/figure>\n<p>When victims visit a malicious webpage, attacker-injected JavaScript executes within their browser context, establishing a local connection to the victim\u2019s OpenClaw instance running on localhost:18789.<\/p>\n<p>Unlike standard HTTP connections, browser WebSocket implementations do not enforce Same-Origin Policy protections; instead, they rely on server-side origin header validation, which OpenClaw omits entirely.<\/p>\n<p>This Cross-Site WebSocket <a href=\"https:\/\/cybersecuritynews.com\/hackers-hijacking-snap-domains\/\" target=\"_blank\" rel=\"noreferrer noopener\">Hijacking <\/a>(CSWSH) enables the attacker to pivot through the victim\u2019s browser as a proxy.<\/p>\n<p>Once authenticated via the stolen token, the attacker leverages the operator. admin and operator roles. approvals, and scopes to turn off safety mechanisms.<\/p>\n<p>An\u00a0exec. approvals.set\u00a0request turns off user confirmation prompts, while a\u00a0config. patch\u00a0request sets\u00a0tools.exec.host\u00a0to \u201cgateway,\u201d forcing command execution directly on the host machine rather than within containerized <a href=\"https:\/\/cybersecuritynews.com\/simplify-malware-sandbox-config\/\" target=\"_blank\" rel=\"noreferrer noopener\">sandboxes<\/a>.<\/p>\n<p>The final payload invokes\u00a0node. invoke\u00a0with arbitrary bash commands, achieving complete system compromise.<\/p>\n<h2 class=\"wp-block-heading\" id=\"h-mitigations\"><strong>Mitigations<\/strong><\/h2>\n<p>The OpenClaw development team rapidly addressed the vulnerability by implementing a gateway URL confirmation modal, eliminating the auto-connect without prompt behavior that enabled the attack.<\/p>\n<p>DepthFirst <a href=\"https:\/\/depthfirst.com\/post\/1-click-rce-to-steal-your-moltbot-data-and-keys\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">advises<\/a> all users running versions before v2026.1.24-1 remain vulnerable and should upgrade immediately.<\/p>\n<p>Administrators should rotate <a href=\"https:\/\/cybersecuritynews.com\/authentication\/\" target=\"_blank\" rel=\"noreferrer noopener\">authentication<\/a> tokens and audit command execution logs for suspicious activity.<\/p>\n<p>This incident underscores the security risks inherent in granting AI agents unrestricted system access without robust validation of configuration changes and network connections.<\/p>\n<p>Organizations deploying OpenClaw should implement additional network segmentation, restrict outbound WebSocket connections from AI agent processes, and maintain strict audit logging for authentication token usage and privilege modifications.<\/p>\n<p class=\"has-text-align-center has-background\" style=\"background:linear-gradient(180deg,rgb(238,238,238) 94%,rgb(169,184,195) 100%)\"><strong>Follow us on <a href=\"https:\/\/news.google.com\/publications\/CAAqMggKIixDQklTR3dnTWFoY0tGV041WW1WeWMyVmpkWEpwZEhsdVpYZHpMbU52YlNnQVAB?hl=en-IN&amp;gl=IN&amp;ceid=IN:en\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Google News<\/a>, <a href=\"https:\/\/www.linkedin.com\/company\/cybersecurity-news\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">LinkedIn<\/a>, and <a href=\"https:\/\/x.com\/cyber_press_org\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">X<\/a> for daily cybersecurity updates. <a href=\"https:\/\/cybersecuritynews.com\/contact-us\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Contact us<\/a> to feature your stories.<\/strong><\/p>\n<p>The post <a href=\"https:\/\/cybersecuritynews.com\/1-click-clawdbot-vulnerability-enable-malicious-remote-code-execution-attacks\/\">1-Click Clawdbot Vulnerability Enable Malicious Remote Code Execution Attacks<\/a> appeared first on <a href=\"https:\/\/cybersecuritynews.com\/\">Cyber Security News<\/a>.<\/p>\n<\/div>\n<p> \t<BR><br \/>\n <BR><\/BR><br \/>\n    Abinaya<br \/>\n \t<BR><br \/>\n<BR><\/BR><br \/>\n<a href=\"https:\/\/cybersecuritynews.com\/1-click-clawdbot-vulnerability-enable-malicious-remote-code-execution-attacks\/\">Go to cyber-security-news<\/a><br \/>\n \t<BR><br \/>\n <BR><\/BR><\/p>\n","protected":false},"excerpt":{"rendered":"<p>1-Click Clawdbot Vulnerability Enable Malicious Remote Code Execution Attacks A critical vulnerability in OpenClaw, the open-source AI personal assistant trusted by over 100,000 developers, has been discovered and weaponized into a devastating one-click remote code execution exploit. Security researchers at depthfirst General Security Intelligence uncovered a logic flaw that, when combined with other vulnerabilities, could [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[167,129,63,648],"tags":[130],"class_list":["post-10327","post","type-post","status-publish","format-standard","hentry","category-ai","category-cyber-security","category-cyber-security-news","category-vulnerability-news","tag-cyber-security-news"],"_links":{"self":[{"href":"https:\/\/serisec.com\/index.php\/wp-json\/wp\/v2\/posts\/10327"}],"collection":[{"href":"https:\/\/serisec.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/serisec.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/serisec.com\/index.php\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/serisec.com\/index.php\/wp-json\/wp\/v2\/comments?post=10327"}],"version-history":[{"count":0,"href":"https:\/\/serisec.com\/index.php\/wp-json\/wp\/v2\/posts\/10327\/revisions"}],"wp:attachment":[{"href":"https:\/\/serisec.com\/index.php\/wp-json\/wp\/v2\/media?parent=10327"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/serisec.com\/index.php\/wp-json\/wp\/v2\/categories?post=10327"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/serisec.com\/index.php\/wp-json\/wp\/v2\/tags?post=10327"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}