Is Your "OpenClaw" Running Naked? CertiK Test: How Vulnerable OpenClaw Skill Bypasses Audits, Takes Over Computers Without Authorization

marsbit2026-03-17 tarihinde yayınlandı2026-03-17 tarihinde güncellendi

Özet

OpenClaw, a popular open-source, self-hosted AI agent platform, has experienced rapid growth due to its flexibility and extensibility. Its ecosystem relies heavily on third-party “Skills” from the Clawhub marketplace, which can perform high-risk operations like system automation and crypto wallet transactions. However, security firm CertiK has identified critical vulnerabilities in the platform’s security model. CertiK’s research reveals that OpenClaw’s current security—primarily dependent on pre-publishing scans like VirusTotal, static code analysis, and AI logic checks—is fundamentally flawed. These measures can be easily bypassed through simple code obfuscation, and malicious Skills can be published even before scanning is complete. In a proof-of-concept, CertiK developed a seemingly benign Skill that contained a hidden remote code execution vulnerability. It passed all checks without warnings and, once installed, allowed full system control via a remote command. The core issue is not a specific bug but a industry-wide misconception: over-reliance on scanning instead of runtime isolation. Unlike systems like iOS, which enforce strict sandboxing, OpenClaw’s sandbox is optional and often disabled for functionality, leaving systems exposed. CertiK recommends that OpenClaw enforce mandatory sandboxing and granular permission controls for Skills. Users are advised to deploy OpenClaw on isolated devices and avoid exposing sensitive data or assets until stronger isolation is i...

Recently, the open-source self-hosted AI agent platform OpenClaw (colloquially known as "小龙虾" or "Little Crayfish") has rapidly gained popularity due to its flexible scalability and self-controlled deployment features, becoming a phenomenon in the personal AI agent space. Its core ecosystem, Clawhub, serves as an app marketplace, gathering a vast number of third-party Skill plugins that enable agents to unlock advanced capabilities with one click—from web search and content creation to encrypted wallet operations, on-chain interactions, and system automation—leading to explosive growth in both ecosystem scale and user base.

But for these third-party Skills running in high-privilege environments, where exactly are the platform's true security boundaries?

Recently, CertiK, the world's largest Web3 security company, released new research on Skill security. The report points out that the current market has a misperception of the security boundaries of AI agent ecosystems: the industry generally treats "Skill scanning" as the core security boundary, but this mechanism is almost useless against hacker attacks.

If OpenClaw is compared to an operating system for smart devices, Skills are the various APPs installed on the system. Unlike ordinary consumer-grade APPs, some Skills in OpenClaw run in high-privilege environments, directly accessing local files, calling system tools, connecting to external services, executing host environment commands, and even operating users' encrypted digital assets. Once security issues arise, they can directly lead to serious consequences such as sensitive information leakage, remote device takeover, and theft of digital assets.

The current universal security solution for third-party Skills across the industry is "pre-listing scanning and auditing." OpenClaw's Clawhub has also built a three-layer audit protection system: integrating VirusTotal code scanning, static code detection engines, and AI logic consistency checks, pushing security alerts to users through risk classification in an attempt to safeguard ecosystem security. However, CertiK's research and proof-of-concept attack tests confirm that this detection system has shortcomings in real attack and defense scenarios and cannot bear the core responsibility of security protection.

The research first breaks down the inherent limitations of the existing detection mechanisms:

Static detection rules are easily bypassed. The core of this engine relies on matching code features to identify risks, such as flagging the combination of "reading sensitive environmental information + sending network requests" as high-risk behavior. However, attackers only need to make slight syntactic modifications to the code to completely bypass feature matching while fully retaining malicious logic, akin to rephrasing dangerous content in synonymous terms, rendering the security scanner completely ineffective.

AI auditing has inherent detection blind spots. The core positioning of Clawhub's AI audit is a "logic consistency detector," which can only catch obvious malicious code where "declared functionality does not match actual behavior," but is helpless against exploitable vulnerabilities hidden within normal business logic, much like how it's difficult to find fatal traps buried deep in the clauses of a seemingly compliant contract.

More critically, the audit process has underlying design flaws: even when VirusTotal scan results are still in a "pending" state, Skills that have not completed the full "health check" process can be directly listed publicly, and users can install them without any warnings, leaving an opening for attackers.

To verify the real危害性 (harmfulness) of the risk, the CertiK research team completed a full test. The team developed a Skill named "test-web-searcher," which表面上 (superficially) appears to be a fully compliant web search tool with code logic that完全符合 (fully complies with)常规开发规范 (standard development norms), but actually implants a remote code execution vulnerability within the normal functional flow.

This Skill bypassed the detection of the static engine and AI audit, and was installed normally without any security warnings while the VirusTotal scan was still pending;最终 (Finally), by remotely sending an instruction via Telegram, the vulnerability was successfully triggered, achieving arbitrary command execution on the host device (in the demo, it directly controlled the system to launch the calculator).

CertiK clearly stated in the research that these issues are not unique product bugs of OpenClaw, but rather a common cognitive error across the entire AI agent industry: the industry普遍把 (generally treats) "audit scanning" as the core security防线 (defense line), but忽略了 (neglects) the true security foundation, which is runtime强制隔离 (mandatory isolation) and精细化的权限管控 (fine-grained permission control). This is就像 (just like) how the security core of Apple's iOS ecosystem has never been the strict review of the App Store, but rather the system's mandatory sandbox mechanism and fine-grained permission control, which allows each APP to run only in its dedicated "隔离舱" (isolation compartment), unable to arbitrarily obtain system permissions. However, OpenClaw's existing sandbox mechanism is optional rather than mandatory and highly relies on manual user configuration. The vast majority of users, to ensure Skill functionality and availability, choose to disable the sandbox, ultimately leaving the agent in a "裸奔" (running naked) state. Once a Skill with vulnerabilities or malicious code is installed, it can directly lead to catastrophic consequences.

Regarding the issues discovered, CertiK also provided security guidance:

● For developers of AI agents like OpenClaw, sandbox isolation must be set as the default mandatory configuration for third-party Skills, with a fine-grained permission control model for Skills, absolutely不允许 (not allowing) third-party code to inherit the host machine's high privileges by default.

● For ordinary users, Skills labeled "Safe" in the Skill marketplace merely indicate that no risks were detected, not that they are absolutely safe. Before the official implementation of underlying strong isolation mechanisms as the default configuration, it is recommended to deploy OpenClaw on non-critical idle devices or virtual machines, and never let it near sensitive files, password credentials, or high-value加密资产 (encrypted assets).

The AI agent赛道 (track) is currently on the eve of an explosion, and the speed of ecosystem expansion must not outpace the pace of security construction. Audit scanning can only block初级 (basic) malicious attacks but can never become the security boundary for high-privilege agents. Only by shifting from "pursuing perfect detection" to "assuming risk exists and containing damage," and by mandating isolation boundaries from the runtime底层 (bottom layer), can the security bottom line of AI agents truly be upheld, allowing this technological transformation to proceed steadily and go the distance.

İlgili Sorular

QWhat is the main security vulnerability identified by CertiK in the OpenClaw platform's Skill ecosystem?

AThe main vulnerability is the industry's misplaced reliance on pre-upload 'scanning and auditing' as the core security boundary. This system is easily bypassed, and the platform lacks a mandatory, default sandbox isolation and fine-grained permission control model for third-party Skills, leaving high-permission environments exposed.

QHow did CertiK's proof-of-concept Skill, 'test-web-searcher', demonstrate the security flaw?

AThe 'test-web-searcher' Skill, which appeared to be a compliant web search tool, contained a hidden remote code execution vulnerability. It bypassed all static and AI auditing checks, was installed without any security warnings, and was triggered via a remote Telegram command to execute arbitrary code on the host machine (e.g., launching the system calculator).

QWhat are the two key limitations of OpenClaw's current three-layer audit protection system (Clawhub) as outlined in the research?

A1. Static detection rules can be easily bypassed through minor syntactic changes to the code that preserve the malicious logic. 2. The AI audit has a fundamental blind spot; it can only detect a mismatch between declared and actual function but is ineffective against hidden vulnerabilities embedded within normal business logic.

QWhat core security principle does CertiK recommend that OpenClaw and similar AI agent platforms adopt, drawing a comparison to Apple's iOS?

ACertiK recommends adopting a mandatory sandbox isolation mechanism and a fine-grained permission control model as the default setting for third-party Skills. This is analogous to the iOS security model, where apps run in a enforced 'sandbox' and are strictly permission-controlled, rather than relying primarily on App Store review.

QWhat practical safety advice does the article give to ordinary users of OpenClaw until stronger security measures are implemented?

AUsers are advised not to trust the 'safe' label on Skills as it only means no risks were detected, not that it is absolutely safe. They should deploy OpenClaw on non-critical, idle devices or within a virtual machine, keeping it away from sensitive files, password credentials, and high-value crypto assets.

İlgili Okumalar

A 'Overlooked' Market Event: Joint US-Japan-South Korea Intervention, Rare US Treasury Involvement, and Bessent's Quiet 'Market Rescue'?

Summary: The United States, Japan, and South Korea executed their largest coordinated foreign exchange intervention in nearly 30 years. The action targeted depreciation pressure on the Japanese yen and South Korean won. This move is seen as a significant effort by the US to stabilize the financial markets of its key allies and prevent the spillover of risks. Key details: * Japan reportedly intervened on July 30 using approximately 8.45 trillion yen (about $52.8 billion). South Korean authorities also intervened that day, selling dollars to support the won. * Notably, the US Treasury Department intervened directly in yen markets for the first time in roughly 30 years. The New York Fed, reportedly acting on behalf of the Treasury, sold euros to buy yen via Goldman Sachs and Morgan Stanley on July 31. Analysts view the use of the euro-yen pair as a way to alleviate yen pressure without adding selling pressure to the US dollar. * Prior to the action, the New York Fed conducted "rate checks" on both USD/JPY and EUR/JPY, a newer signaling tool that falls between verbal and physical intervention. The intervention is interpreted as going beyond traditional currency stabilization. Analysts, such as Michael Hartnett of Bank of America, suggest it resembles a "Price Keeping Operation" for the AI era. The core US objectives are perceived to be: 1. Preventing rapid yen depreciation from triggering a sharp rise in Japanese government bond yields. 2. Containing financial stress from spreading across Asian markets like South Korea and Japan. 3. Reducing the risk of disorderly capital flows impacting the US bond market. This coordinated action underscores the importance of Japan and South Korea as critical partners in the US semiconductor and AI supply chain. Stabilizing their financial markets is seen as vital to mitigating risks to the broader tech industry and the US market itself. The intervention coincides with market pressures, including the KOSDAQ index hitting a low since October 2022. While seen as a move to control volatility, some analysts caution it may not fundamentally reverse existing market trends.

marsbit3 dk önce

A 'Overlooked' Market Event: Joint US-Japan-South Korea Intervention, Rare US Treasury Involvement, and Bessent's Quiet 'Market Rescue'?

marsbit3 dk önce

Will the Federal Reserve Definitely Raise Interest Rates in September? How Will Cryptocurrencies and US Stocks Bear the Pressure?

In early August 2024, market expectations for a September Federal Reserve rate hike surged dramatically, from below 50% to over 80%, driven by renewed inflation concerns. This shift followed a contentious July FOMC meeting where a 9-3 vote to hold rates revealed a growing hawkish faction advocating for an immediate hike, citing prolonged above-target inflation. The key catalyst is escalating conflict near the Strait of Hormuz, which has pushed oil prices up approximately 20% in July, threatening to reignite inflation. The next critical data point is the July CPI report on August 12th; a hot reading could solidify hike expectations. For crypto assets, particularly Bitcoin, this represents near-term pressure. Bitcoin continues to exhibit high-beta, risk-on characteristics, making it sensitive to tightening liquidity and higher opportunity costs. However, historical precedent suggests that if a hike is perceived as the cycle's end rather than its start, the negative impact may be brief, with markets quickly pivoting to anticipate future rate cuts. U.S. stocks, especially crypto-linked equities like Coinbase and high-valuation tech stocks, face amplified volatility. Higher rates increase discount rates in valuation models, pressuring growth stocks. This coincides with a pivotal tech earnings season where investor focus has shifted from massive AI capital expenditures to demonstrable revenue and cash flow generation. Companies with negative cash flows and weak growth narratives could see severe pressure if a September hike materializes, as financing costs would rise. Key indicators to watch include oil prices, upcoming inflation data, and Fed commentary at events like the Jackson Hole symposium.

Odaily星球日报3 dk önce

Will the Federal Reserve Definitely Raise Interest Rates in September? How Will Cryptocurrencies and US Stocks Bear the Pressure?

Odaily星球日报3 dk önce

From South Korea to the United States: Blue-Collar Jobs Are Becoming Increasingly Popular, Thanks to AI

AI is reshaping the labor market's value proposition. The traditional four-year college degree is losing its appeal as a guaranteed career path, while skilled blue-collar trades like electricians, welders, and plumbers are experiencing historic demand and wage premiums. This shift is driven by dual pressures: AI's displacement of certain white-collar roles and a booming need for physical infrastructure and data center construction. Data confirms the trend. In the U.S., vocational school revenue surged, and a significant portion of recent layoffs are AI-related. Surveys show a majority of Gen Z adults plan to pursue blue-collar work, citing better job security against AI automation. Vocational education interest has exploded recently. Experts cite a psychological shift as younger generations seek tangible, AI-resistant careers and avoid high student debt. In many cases, salaries for skilled trades now match or exceed those requiring a bachelor's degree. In South Korea, semiconductor vocational high schools boast near-total employment, with graduates securing high-paying roles at companies like Samsung. The shortage is structural, exacerbated by a retiring baby boomer workforce and massive infrastructure projects. Companies like JPMorgan Chase, Meta, and Lowe's are investing heavily in training programs. However, overcoming historical stigma and a "perception gap" around trade careers remains a key challenge to closing the talent gap.

marsbit1 saat önce

From South Korea to the United States: Blue-Collar Jobs Are Becoming Increasingly Popular, Thanks to AI

marsbit1 saat önce

İşlemler

Spot
活动图片