[{"data":1,"prerenderedAt":1680},["ShallowReactive",2],{"blog-post-openclaw-skill-audit":3,"related-posts-openclaw-skill-audit":372},{"id":4,"title":5,"author":6,"body":10,"category":350,"date":351,"description":352,"extension":353,"featured":354,"image":355,"meta":356,"navigation":357,"path":358,"readingTime":359,"seo":360,"seoTitle":361,"stem":362,"tags":363,"updatedDate":351,"__hash__":371},"blog/blog/openclaw-skill-audit.md","OpenClaw Skill Audit: How to Check What You've Actually Installed",{"name":7,"role":8,"avatar":9},"Shabnam Katoch","Growth Head","/img/avatars/shabnam-profile.jpeg",{"type":11,"value":12,"toc":337},"minimark",[13,20,23,26,29,34,37,41,44,47,50,59,66,70,73,80,86,97,103,109,113,116,125,128,138,141,147,151,154,161,164,167,174,177,183,187,190,196,202,210,214,220,226,232,235,242,249,253,258,261,266,269,274,280,285,288,293,296,300],[14,15,16],"p",{},[17,18,19],"em",{},"You installed 15 skills in week one. You don't remember what half of them do. Here's how to find out before one of them does something you didn't authorize.",[14,21,22],{},"I found a skill in my OpenClaw install that I had no memory of adding. It was called something generic like \"productivity-helper.\" It had been sitting there for three weeks, running alongside every conversation, with access to my file system.",[14,24,25],{},"When I read the source code, I found network calls to an external server that had nothing to do with the skill's stated purpose. The skill was doing what it promised (managing task lists) while quietly sending my config data somewhere else.",[14,27,28],{},"This is the OpenClaw skill audit process I now run monthly. It takes 20 minutes. It's the 20 minutes that keeps me from being one of the 14,285 people who downloaded the most popular malicious ClawHub skill before it was pulled.",[30,31,33],"h2",{"id":32},"why-this-matters-one-paragraph-then-we-move-on","Why this matters (one paragraph, then we move on)",[14,35,36],{},"ClawHub has over 13,000 skills. The ClawHavoc campaign identified 824+ of them as malicious, roughly 20% of the entire registry. Cisco independently found a third-party skill performing data exfiltration without user awareness. The skill worked as advertised while simultaneously sending API keys and config data to an external server. If you installed skills enthusiastically in your first week (most people do), some of them might be doing things you didn't authorize. Here's how to check.",[30,38,40],{"id":39},"step-1-list-every-skill-you-have-installed","Step 1: List every skill you have installed",[14,42,43],{},"Start by seeing what's actually on your system. OpenClaw stores skills in specific directories: globally installed skills, workspace-level skills, and any skills the agent created itself during conversations.",[14,45,46],{},"Check all three locations. The global skills directory contains skills you installed for all workspaces. The workspace-level skills directory contains skills installed for a specific project. And the agent's self-created skills (if you gave it permission to write code) live in the workspace's skill folder.",[14,48,49],{},"Write down every skill name, where it's installed, and whether you recognize it. If you see a skill name you don't remember installing, flag it immediately. That's your first priority for investigation.",[14,51,52,53,58],{},"For the ",[54,55,57],"a",{"href":56},"/blog/openclaw-skills-install-guide","complete skill installation and vetting process",", our skills guide covers the safe installation workflow from the beginning.",[14,60,61],{},[62,63],"img",{"alt":64,"src":65},"OpenClaw skill audit step 1 showing how to list global, workspace, and agent-created skills across all installation directories","/img/blog/openclaw-skill-audit-list.jpg",[30,67,69],{"id":68},"step-2-check-each-skill-against-these-four-questions","Step 2: Check each skill against these four questions",[14,71,72],{},"For every skill on your list, ask these four things.",[14,74,75,79],{},[76,77,78],"strong",{},"When was it last updated?"," Skills that haven't been updated in months may have unpatched vulnerabilities. More importantly, skills that were updated after you installed them might contain code you never reviewed. Check the ClawHub page for the skill's update history.",[14,81,82,85],{},[76,83,84],{},"Who maintains it?"," Check the publisher's profile on ClawHub. Do they maintain other skills? Do they have a GitHub presence? A skill from an anonymous account with no other contributions deserves more scrutiny than one from a known community member with a history of contributions.",[14,87,88,91,92,96],{},[76,89,90],{},"Does it request permissions it doesn't need?"," A task management skill that accesses your file system makes sense. A weather skill that reads your config file doesn't. Open the skill's ",[93,94,95],"code",{},"SKILL.md"," and check what tools and permissions it declares. If the declared permissions seem excessive for what the skill does, investigate the source code.",[14,98,99,102],{},[76,100,101],{},"Is it on any verified or curated list?"," Some community members and platforms maintain curated skill lists that have undergone basic vetting. If your skill isn't on any curated list, it hasn't been reviewed by anyone except the person who published it.",[14,104,105],{},[62,106],{"alt":107,"src":108},"OpenClaw skill audit four-question checklist showing update history, maintainer reputation, permission scope, and curated list verification","/img/blog/openclaw-skill-audit-checklist.jpg",[30,110,112],{"id":111},"step-3-run-suspicious-skills-through-virustotal","Step 3: Run suspicious skills through VirusTotal",[14,114,115],{},"For any skill that raised questions in step 2, run the source code through VirusTotal.",[14,117,118,119,121,122,124],{},"Navigate to the skill's directory on your system. Each skill is a folder containing a ",[93,120,95],{}," file and any associated code files (typically JavaScript or TypeScript). The ",[93,123,95],{}," defines the skill's metadata and instructions. The code files contain the actual logic.",[14,126,127],{},"Go to virustotal.com and upload the code files. VirusTotal scans them against 70+ antivirus engines and reports any detections. A clean scan doesn't guarantee safety (custom exfiltration code often passes signature-based scanning), but a flagged scan is a definitive signal to remove the skill immediately.",[14,129,130,133,134,137],{},[76,131,132],{},"For deeper inspection beyond VirusTotal:"," Read the code yourself. Look for network calls to external URLs that aren't related to the skill's purpose. Look for file reads targeting config files, credential files, or directories outside the skill's workspace. Look for obfuscated code (base64 encoded strings, ",[93,135,136],{},"eval()"," calls, minified code in a skill that should be readable).",[14,139,140],{},"If the code does anything you can't explain or anything that accesses data outside its stated function, remove it.",[14,142,143],{},[62,144],{"alt":145,"src":146},"OpenClaw skill audit VirusTotal scan workflow showing code upload, signature detection, and manual code review steps","/img/blog/openclaw-skill-audit-virustotal.jpg",[30,148,150],{"id":149},"step-4-remove-skills-you-dont-recognize-or-dont-use","Step 4: Remove skills you don't recognize or don't use",[14,152,153],{},"If a skill fails your checks or you simply don't use it anymore, remove it.",[14,155,156,157,160],{},"Removing a skill from OpenClaw deletes the skill folder from the installation directory. It does not affect your memory files, your config, your ",[93,158,159],{},"SOUL.md",", or your conversation history. The only thing that changes is the agent loses the ability to perform the actions that skill provided.",[14,162,163],{},"If you're not sure whether you use a skill, remove it and see if anything breaks. If your agent can't perform a task it used to handle, you'll know which skill was responsible. Reinstall it after proper vetting if you need it.",[14,165,166],{},"The rule: if you can't explain what a skill does, it shouldn't be on your system. Unknown skills are the highest-risk items in your OpenClaw setup because they run with whatever permissions your agent has.",[14,168,52,169,173],{},[54,170,172],{"href":171},"/blog/openclaw-security-checklist","broader security considerations including gateway hardening and credential protection",", our security checklist covers the full stack beyond just skills.",[14,175,176],{},"Your agent is only as trustworthy as the least-trusted skill it has installed. One compromised skill has access to everything your agent has access to: files, API keys, connected platforms, conversation history.",[14,178,179],{},[62,180],{"alt":181,"src":182},"OpenClaw skill audit removal flow showing the decision tree for keeping vs deleting skills based on the four checks","/img/blog/openclaw-skill-audit-remove.jpg",[30,184,186],{"id":185},"skills-worth-keeping-skills-worth-questioning","Skills worth keeping, skills worth questioning",[14,188,189],{},"Without naming specific skills as malicious (that's a legal minefield), here are the patterns that separate trustworthy skills from questionable ones.",[14,191,192,195],{},[76,193,194],{},"Skills worth keeping typically:"," come from known publishers with multiple maintained skills, have readable source code with clear logic, request only permissions relevant to their function, have been updated within the last 60 days, and have community reviews or appear on curated lists.",[14,197,198,201],{},[76,199,200],{},"Skills worth questioning typically:"," come from accounts created recently with only one published skill, have obfuscated or minified code that's difficult to read, request file system or network access beyond their stated purpose, haven't been updated since initial publication, and have high download counts but no community discussion (potentially inflated).",[14,203,204,205,209],{},"If you want a pre-vetted starting point, ",[54,206,208],{"href":207},"/skills","BetterClaw's curated skills library"," filters skills through a vetting process before making them available. You still own the audit for any custom skills you add, but the baseline library starts from a reviewed foundation rather than the unfiltered ClawHub registry.",[30,211,213],{"id":212},"how-often-should-you-do-this","How often should you do this?",[14,215,216,219],{},[76,217,218],{},"After every bulk install:"," If you add three or more skills in a session, audit all of them before your next work session.",[14,221,222,225],{},[76,223,224],{},"Once a month:"," Even skills that were clean at installation can be updated by their maintainers with new code. A monthly audit catches skills that changed after you installed them.",[14,227,228,231],{},[76,229,230],{},"After reading about a new security incident:"," When the next ClawHavoc-style campaign is discovered (and it will be, the ClawHub moderation is still catching up), run an immediate audit of every installed skill.",[14,233,234],{},"The 20 minutes this takes is trivial compared to the hours of damage control after a compromised skill exfiltrates your API keys. Rotate all your provider credentials if you find anything suspicious. The cost of a false alarm is five minutes of key rotation. The cost of missing a real compromise is much higher.",[14,236,52,237,241],{},[54,238,240],{"href":239},"/skills/security-vetting","full security vetting methodology BetterClaw uses",", our vetting page explains the criteria we apply to every skill in our curated library.",[14,243,244,248],{},[54,245,247],{"href":246},"/pricing","BetterClaw"," vets skills before making them available through the platform. You still own the audit process for your own custom installs, but the library starts from a filtered baseline.",[30,250,252],{"id":251},"frequently-asked-questions","Frequently Asked Questions",[14,254,255],{},[76,256,257],{},"What is an OpenClaw skill audit?",[14,259,260],{},"An OpenClaw skill audit is a systematic review of every skill installed on your agent. It involves listing all installed skills, checking each one against security criteria (publisher identity, update history, permission scope, community reputation), scanning suspicious code through VirusTotal, and removing skills you don't recognize or don't use. The process takes about 20 minutes and should be done monthly, given that 824+ malicious skills were found on ClawHub.",[14,262,263],{},[76,264,265],{},"How do I know if an OpenClaw skill is safe?",[14,267,268],{},"No single check guarantees safety, but a combination of indicators helps: the skill comes from a known publisher with other maintained skills, the source code is readable and does only what the skill claims, permissions match the skill's purpose (a calendar skill shouldn't need file system access), and the skill appears on community-curated lists. Run code through VirusTotal for signature-based detection. Read the source code yourself for anything that accesses data outside the skill's stated function.",[14,270,271],{},[76,272,273],{},"How do I remove an OpenClaw skill?",[14,275,276,277,279],{},"Delete the skill's folder from your OpenClaw skills directory (global or workspace-level, depending on where it was installed). Removing a skill does not affect your memory files, config, ",[93,278,159],{},", or conversation history. The agent simply loses the ability to perform actions that skill provided. If you're unsure whether you need a skill, remove it and see if anything breaks. Reinstall after proper vetting if needed.",[14,281,282],{},[76,283,284],{},"Are ClawHub skills safe to install?",[14,286,287],{},"Not automatically. ClawHub is an open registry with over 13,000 skills. The ClawHavoc campaign identified 824+ malicious skills (roughly 20% of the registry), and Cisco found skills performing data exfiltration without user awareness. Treat ClawHub like any open-source package registry: useful but unvetted. Check every skill before installation using the four-question audit process. Managed platforms like BetterClaw ($29/month) maintain curated skill libraries with pre-vetting.",[14,289,290],{},[76,291,292],{},"How often should I audit my OpenClaw skills?",[14,294,295],{},"After every bulk install (three or more skills added at once), once a month as routine maintenance, and immediately after any new security incident is reported in the OpenClaw community. Skills can be updated by their maintainers after you install them, so a skill that was clean at installation may contain new code you haven't reviewed. Monthly audits catch these changes.",[30,297,299],{"id":298},"related-reading","Related Reading",[301,302,303,310,317,324,330],"ul",{},[304,305,306,309],"li",{},[54,307,308],{"href":171},"OpenClaw Security Checklist"," — The full security stack beyond just skills",[304,311,312,316],{},[54,313,315],{"href":314},"/blog/openclaw-security-risks","OpenClaw Security Risks Explained"," — Why ClawHavoc and exposed instances matter",[304,318,319,323],{},[54,320,322],{"href":321},"/blog/best-openclaw-skills","Best OpenClaw Skills (Tested & Vetted)"," — A curated starting point of safe skills",[304,325,326,329],{},[54,327,328],{"href":56},"OpenClaw Skills Install Guide"," — The safe installation workflow from the beginning",[304,331,332,336],{},[54,333,335],{"href":334},"/compare/openclaw","BetterClaw vs Self-Hosted OpenClaw"," — How managed platforms handle skill vetting automatically",{"title":338,"searchDepth":339,"depth":339,"links":340},"",2,[341,342,343,344,345,346,347,348,349],{"id":32,"depth":339,"text":33},{"id":39,"depth":339,"text":40},{"id":68,"depth":339,"text":69},{"id":111,"depth":339,"text":112},{"id":149,"depth":339,"text":150},{"id":185,"depth":339,"text":186},{"id":212,"depth":339,"text":213},{"id":251,"depth":339,"text":252},{"id":298,"depth":339,"text":299},"Security","2026-04-09","824+ malicious skills found on ClawHub. Here's the 20-minute audit process: list, check, scan with VirusTotal, and remove what you don't trust.","md",false,"/img/blog/openclaw-skill-audit.jpg",{},true,"/blog/openclaw-skill-audit","9 min read",{"title":5,"description":352},"OpenClaw Skill Audit: Check What You've Installed","blog/openclaw-skill-audit",[364,365,366,367,368,369,370],"OpenClaw skill audit","ClawHub safe skills","OpenClaw VirusTotal","OpenClaw malicious skills","OpenClaw skill security","remove OpenClaw skills","are OpenClaw skills safe","oklW3iuWZt6CkgPYzzBJ63ckH_3ZPtQIO-eo-oBd2PU",[373,751,1290],{"id":374,"title":375,"author":376,"body":377,"category":350,"date":734,"description":735,"extension":353,"featured":354,"image":736,"meta":737,"navigation":357,"path":738,"readingTime":739,"seo":740,"seoTitle":741,"stem":742,"tags":743,"updatedDate":734,"__hash__":750},"blog/blog/anthropic-ai-bank-cyber-risk.md","Anthropic's Mythos Just Got Bank CEOs Summoned to Washington. Here's What It Means for Your AI Agents.",{"name":7,"role":8,"avatar":9},{"type":11,"value":378,"toc":722},[379,384,387,390,393,396,399,403,406,409,412,415,421,425,428,431,434,437,440,443,447,450,453,460,463,470,473,479,483,486,489,492,495,498,506,518,522,525,528,531,534,542,548,552,555,558,561,564,570,574,577,583,589,600,606,612,616,619,622,625,642,645,647,652,655,660,663,668,674,679,682,687,690,692],[14,380,381],{},[17,382,383],{},"The collision of frontier AI models and financial infrastructure is rewriting the rules of cyber risk. If you're running AI agents, you're already in the blast radius.",[14,385,386],{},"Treasury Secretary Scott Bessent and Fed Chair Jerome Powell pulled bank CEOs into an emergency meeting this week. Not about interest rates. Not about a liquidity crisis.",[14,388,389],{},"About an AI model.",[14,391,392],{},"Anthropic's Claude Mythos, a frontier model so capable at finding software vulnerabilities that the company warned its own government contacts it would make large-scale cyberattacks \"much more likely in 2026.\" The model identified thousands of zero-day vulnerabilities in its first weeks of testing, many of them one to two decades old, hiding in the software that runs everything from hospital networks to trading floors.",[14,394,395],{},"If you're building or deploying AI agents right now, this isn't some abstract policy story. This is the environment your agents are operating in.",[14,397,398],{},"And it's about to get a lot more hostile.",[30,400,402],{"id":401},"the-moment-ai-cyber-risk-stopped-being-theoretical","The moment AI cyber risk stopped being theoretical",[14,404,405],{},"Let's rewind to September 2025. Anthropic detected what analysts now call the first fully autonomous AI espionage campaign at scale. A Chinese state-sponsored group used agentic AI capabilities to conduct vulnerability discovery, lateral movement, and payload execution with minimal human oversight.",[14,407,408],{},"Read that again. Minimal human oversight. An AI agent, not a team of hackers, ran the operation.",[14,410,411],{},"Then in January 2026, a Russian-speaking cybercriminal with limited technical skills used Claude and DeepSeek to hack over 600 devices across 55 countries. According to AWS's security research team, the attacker used generative AI to scale well-known attack techniques throughout every phase of their operation. At one point, the attacker asked Claude in Russian to build a web panel for managing hundreds of targets.",[14,413,414],{},"This is the new baseline. Not nation-state hackers with decades of training. Script kiddies with API keys.",[14,416,417],{},[62,418],{"alt":419,"src":420},"Timeline of AI-powered cyber attacks from September 2025 autonomous espionage to January 2026 mass exploitation","/img/blog/anthropic-ai-bank-cyber-risk-timeline.jpg",[30,422,424],{"id":423},"why-mythos-changes-the-math-for-everyone","Why Mythos changes the math for everyone",[14,426,427],{},"Here's the part that should make you uncomfortable.",[14,429,430],{},"Current AI models can identify high-severity vulnerabilities. Mythos can find five separate vulnerabilities in a single piece of software and chain them together into a novel attack that no human security team would have anticipated. Coupled with the ability to work unsupervised for extended periods, Anthropic says we've hit an inflection point.",[14,432,433],{},"Shlomo Kramer, founder and CEO of Cato Networks, put it bluntly: the agentic attackers are coming and this is a watershed event in the history of cybersecurity. Cisco's chief security officer Anthony Grieco said the old ways of hardening systems are no longer sufficient.",[14,435,436],{},"And here's what nobody tells you: the window is narrow. Alex Stamos, chief product officer at cybersecurity firm Corridor, estimates the open-source models will catch up to frontier model bug-finding capabilities within six months.",[14,438,439],{},"The attackers only need to find one way in. Defenders have to cover every surface.",[14,441,442],{},"That asymmetry has always existed in cybersecurity. AI just compressed the timeline from months to minutes.",[30,444,446],{"id":445},"what-this-means-if-youre-running-ai-agents","What this means if you're running AI agents",[14,448,449],{},"Stay with me here, because this is where it gets personal.",[14,451,452],{},"If you're self-hosting an OpenClaw agent on a VPS, a DigitalOcean droplet, or even a Mac Mini under your desk, your attack surface just expanded dramatically. Every exposed port, every unpatched dependency, every misconfigured Docker container is now a target that can be discovered and exploited at machine speed.",[14,454,455,456,459],{},"The ",[54,457,458],{"href":314},"OpenClaw security risks"," we've been writing about for months aren't hypothetical anymore. They're the exact kind of vulnerabilities that Mythos-class models will find and chain together.",[14,461,462],{},"Think about what a typical self-hosted agent setup looks like:",[14,464,465,466,469],{},"Docker containers with default configurations. API keys stored in ",[93,467,468],{},".env"," files. Ports exposed to the public internet. No intrusion detection. No automated patching. No audit logging.",[14,471,472],{},"That was \"good enough\" when the threat was a bored teenager with Metasploit. It is not good enough when the threat is an autonomous AI agent running 24/7 vulnerability scans.",[14,474,475],{},[62,476],{"alt":477,"src":478},"Self-hosted AI agent attack surface showing exposed ports, unpatched dependencies, and plaintext credentials","/img/blog/anthropic-ai-bank-cyber-risk-attack-surface.jpg",[30,480,482],{"id":481},"the-infrastructure-gap-most-agent-builders-ignore","The infrastructure gap most agent builders ignore",[14,484,485],{},"Here's where most people get it wrong.",[14,487,488],{},"They think security is something you bolt on after your agent works. First get the YAML right. First get the skills installed. First get the model routing figured out. Security can wait.",[14,490,491],{},"It can't wait anymore.",[14,493,494],{},"Anthropic launched Project Glasswing alongside Mythos, giving 12 partner organizations including Microsoft, Apple, and Cisco early access to find and fix vulnerabilities before they get exploited. That tells you something about the urgency.",[14,496,497],{},"But most teams running AI agents aren't Microsoft. They don't have a dedicated security team scanning their infrastructure. They're a founder, a small dev team, maybe a contractor. They're choosing between building features and patching CVEs.",[14,499,500,501,505],{},"If you've been wrestling with ",[54,502,504],{"href":503},"/blog/openclaw-docker-troubleshooting","OpenClaw Docker troubleshooting"," or spending weekends maintaining your agent infrastructure, this is the moment to ask yourself: is that really how you want to spend your time in a world where AI-powered attacks operate at machine speed?",[14,507,508,509,513,514,517],{},"We built ",[54,510,512],{"href":511},"/","Better Claw"," because we were tired of infrastructure eating our weekends. But in light of what Anthropic just disclosed, managed hosting isn't just about convenience anymore. It's about not being the low-hanging fruit in an environment where autonomous attackers are scanning for exactly that. ",[54,515,516],{"href":246},"$29/month per agent",", and your infrastructure is somebody else's problem.",[30,519,521],{"id":520},"what-the-bessent-powell-meeting-actually-signals","What the Bessent-Powell meeting actually signals",[14,523,524],{},"And that's when we realized this story isn't really about banks.",[14,526,527],{},"Yes, Bessent and Powell summoned Wall Street CEOs to make sure financial institutions are preparing defenses against Mythos-class threats. But the real signal is simpler: the US government now considers AI-generated cyber risk a systemic threat.",[14,529,530],{},"Not a \"keep an eye on it\" threat. A \"clear your calendar and come to Washington\" threat.",[14,532,533],{},"The implications cascade downward. If banks need to harden their systems, every vendor and partner in their supply chain needs to do the same. If you're building an AI agent that touches financial data, customer PII, or payment systems, the security bar just jumped by an order of magnitude.",[14,535,536,537,541],{},"This is especially relevant if you're running agents for ",[54,538,540],{"href":539},"/blog/openclaw-agents-for-ecommerce","ecommerce use cases"," or anything that handles customer data. The regulatory scrutiny that follows a story like this always trickles down.",[14,543,544],{},[62,545],{"alt":546,"src":547},"Cascade of AI cyber risk regulations from government to banks to vendors to AI agent builders","/img/blog/anthropic-ai-bank-cyber-risk-cascade.jpg",[30,549,551],{"id":550},"the-arms-race-youre-already-part-of","The arms race you're already part of",[14,553,554],{},"But that's not even the real problem.",[14,556,557],{},"Every major AI lab's next model will push cyber capabilities further. Behind Mythos is the next OpenAI model, and the next Gemini, and a few months behind them are the open-source Chinese models. As Kramer told CNN, the defenders need to run as fast as they can just to stay in the same place.",[14,559,560],{},"This creates a permanent tax on every team running AI infrastructure. You need automated patching. You need encrypted secrets management. You need isolated execution environments. You need audit logs. You need somebody watching the monitors at 3 AM when a Mythos-inspired scanner finds a forgotten port.",[14,562,563],{},"Or you need to outsource that entire burden.",[14,565,455,566,569],{},[54,567,568],{"href":171},"OpenClaw security checklist"," we published is a good starting point if you're committed to self-hosting. But be honest with yourself about whether you can maintain that posture indefinitely against adversaries that don't sleep, don't get bored, and don't make typos.",[30,571,573],{"id":572},"what-to-actually-do-right-now","What to actually do right now",[14,575,576],{},"Let me be practical. Here's what matters this week, not this quarter.",[14,578,579,582],{},[76,580,581],{},"Audit your exposed surfaces."," If your agent is reachable from the public internet, assume it will be scanned by something smarter than you within days. Check every open port. Check your Docker configs. Check where your API keys live.",[14,584,585,588],{},[76,586,587],{},"Update everything."," Mythos found vulnerabilities that were one to two decades old. The boring stuff matters more than ever.",[14,590,591,594,595,599],{},[76,592,593],{},"Evaluate your hosting model."," Self-hosting made sense when the primary risk was downtime. The risk profile has changed. Consider whether ",[54,596,598],{"href":597},"/openclaw-hosting","managed OpenClaw hosting"," is worth the tradeoff.",[14,601,602,605],{},[76,603,604],{},"Watch the regulatory signals."," The Bessent-Powell meeting is the first domino. If you're building agents for regulated industries, expect compliance requirements to tighten fast.",[14,607,608,611],{},[76,609,610],{},"Don't panic, but don't ignore this."," The fact that Anthropic launched Project Glasswing means the industry is taking this seriously. The worst response is to assume you're too small to be a target. Automated attacks don't discriminate by company size.",[30,613,615],{"id":614},"the-honest-takeaway","The honest takeaway",[14,617,618],{},"Here's what I keep coming back to.",[14,620,621],{},"We got into AI agents because the technology is genuinely exciting. Watching an agent autonomously handle tasks that used to take hours of manual work is one of the best feelings in tech right now. That hasn't changed.",[14,623,624],{},"What's changed is the environment. The same agentic capabilities that make our tools powerful also make the threats against our infrastructure more capable. That's not a reason to stop building. It's a reason to build on foundations that can withstand what's coming.",[14,626,627,628,630,631,637,638,641],{},"If any of this hit close to home, if you've been running a self-hosted agent and putting off the security hardening, if you know your ",[93,629,468],{}," file is doing more heavy lifting than it should, ",[54,632,636],{"href":633,"rel":634},"https://app.betterclaw.io/sign-in",[635],"nofollow","give Better Claw a look",". It's $29/month per agent, BYOK, and you get managed infrastructure with security that doesn't depend on you remembering to run ",[93,639,640],{},"apt update"," at midnight. We handle the infrastructure. You handle the interesting part.",[14,643,644],{},"The agentic attackers are coming. Make sure your agents are ready.",[30,646,252],{"id":251},[14,648,649],{},[76,650,651],{},"What is the Anthropic Mythos AI model and why does it matter for cyber risk?",[14,653,654],{},"Claude Mythos is Anthropic's most powerful AI model to date, sitting above its Opus tier. It matters because it can autonomously discover, chain together, and exploit software vulnerabilities at speeds no human team can match. In its first weeks of testing, it found thousands of zero-day flaws, many hidden for over a decade.",[14,656,657],{},[76,658,659],{},"How does AI-driven cyber risk affect banks and financial services?",[14,661,662],{},"Treasury Secretary Bessent and Fed Chair Powell summoned bank CEOs specifically over Mythos-class threats, signaling the government views AI cyber risk as systemic to financial stability. Banks face pressure to harden systems across their entire supply chain, which cascades to every vendor and partner handling financial data.",[14,664,665],{},[76,666,667],{},"How do I secure my self-hosted AI agent against AI-powered attacks?",[14,669,670,671,673],{},"Start by auditing exposed ports, moving secrets out of ",[93,672,468],{}," files into encrypted vaults, keeping all dependencies patched, and enabling audit logging. If maintaining that security posture continuously isn't realistic for your team, evaluate managed hosting options that handle infrastructure security for you.",[14,675,676],{},[76,677,678],{},"Is managed AI agent hosting worth the cost for security alone?",[14,680,681],{},"At $29/month per agent, managed hosting like BetterClaw costs less than a single hour of incident response consulting. You get isolated environments, automated updates, encrypted secrets management, and monitoring without needing to maintain it yourself. In a world of autonomous AI-powered scanning, the cost of a breach far exceeds the cost of prevention.",[14,683,684],{},[76,685,686],{},"Is my small project really a target for AI-powered cyberattacks?",[14,688,689],{},"Yes. Automated scanning tools, including the techniques Mythos enables, don't discriminate by company size. In January 2026, a single attacker with limited skills used AI to compromise 600+ devices across 55 countries. If your agent is reachable from the internet, it's a target regardless of how small your operation is.",[30,691,299],{"id":298},[301,693,694,699,704,711,717],{},[304,695,696,698],{},[54,697,315],{"href":314}," — The specific vulnerabilities AI attackers will target",[304,700,701,703],{},[54,702,308],{"href":171}," — Hardening steps if you're committed to self-hosting",[304,705,706,710],{},[54,707,709],{"href":708},"/blog/openclaw-gateway-guide","OpenClaw Gateway Guide"," — The single setting that exposed 30,000+ instances",[304,712,713,716],{},[54,714,715],{"href":358},"OpenClaw Skill Audit"," — How to check for compromised skills in your setup",[304,718,719,721],{},[54,720,335],{"href":334}," — Managed security vs DIY in the new threat landscape",{"title":338,"searchDepth":339,"depth":339,"links":723},[724,725,726,727,728,729,730,731,732,733],{"id":401,"depth":339,"text":402},{"id":423,"depth":339,"text":424},{"id":445,"depth":339,"text":446},{"id":481,"depth":339,"text":482},{"id":520,"depth":339,"text":521},{"id":550,"depth":339,"text":551},{"id":572,"depth":339,"text":573},{"id":614,"depth":339,"text":615},{"id":251,"depth":339,"text":252},{"id":298,"depth":339,"text":299},"2026-04-10","Anthropic's Mythos model triggered an emergency bank CEO meeting. Learn what AI-driven cyber risk means for your AI agents and how to protect them.","/img/blog/anthropic-ai-bank-cyber-risk.jpg",{},"/blog/anthropic-ai-bank-cyber-risk","10 min read",{"title":375,"description":735},"Anthropic AI Cyber Risk: What Bank CEO Warnings Mean for Agents","blog/anthropic-ai-bank-cyber-risk",[744,745,746,747,748,749],"anthropic ai cyber risk","mythos ai model security","ai agent security","openclaw security","ai cybersecurity threats","managed ai agent hosting","il9GGyLnz0RS4zVpAM04SNYKd_augmL7GgyvZjt89Ug",{"id":752,"title":753,"author":754,"body":755,"category":350,"date":1271,"description":1272,"extension":353,"featured":354,"image":1273,"meta":1274,"navigation":357,"path":1275,"readingTime":1276,"seo":1277,"seoTitle":1278,"stem":1279,"tags":1280,"updatedDate":1271,"__hash__":1289},"blog/blog/clawhub-skills-directory.md","ClawHub Skills Directory - The Complete 2026 Guide to Finding, Vetting, and Using OpenClaw Skills",{"name":7,"role":8,"avatar":9},{"type":11,"value":756,"toc":1243},[757,762,765,768,775,778,782,785,788,791,797,803,810,814,817,822,825,831,835,838,844,848,851,857,861,864,870,876,880,883,887,890,893,899,903,906,912,916,919,925,931,942,946,949,955,961,967,973,979,985,988,992,995,999,1005,1011,1017,1021,1027,1033,1039,1045,1052,1056,1059,1063,1066,1070,1073,1076,1084,1090,1094,1097,1103,1109,1115,1125,1131,1137,1141,1144,1150,1156,1162,1168,1174,1180,1184,1187,1190,1193,1201,1203,1208,1211,1216,1219,1224,1227,1232,1235,1240],[14,758,759],{},[76,760,761],{},"13,700+ skills. 824 were malicious. Here's how to navigate the marketplace without becoming a statistic.",[14,763,764],{},"I found the perfect Notion integration skill on ClawHub last month. Clean description. Recent updates. 3,200+ downloads. I installed it, connected my workspace, and watched my OpenClaw agent sync tasks from Telegram directly into Notion boards.",[14,766,767],{},"Two days later, I noticed API requests on my Anthropic dashboard that I hadn't made. Someone was using my key. The skill had been reading my config file and sending credentials to an external server while functioning exactly as advertised.",[14,769,770,771,774],{},"That skill was part of the ClawHavoc campaign. ",[76,772,773],{},"824 malicious skills discovered on ClawHub, roughly 20% of the entire registry."," One compromised package had 14,285 downloads before it was pulled. ClawHub responded by purging 2,419 suspicious packages and partnering with VirusTotal for automated scanning.",[14,776,777],{},"This guide covers everything you need to know about the ClawHub skills directory in 2026: what's available, what's dangerous, how to find good skills, and how to protect yourself from bad ones.",[30,779,781],{"id":780},"what-clawhub-actually-is-and-isnt","What ClawHub actually is (and isn't)",[14,783,784],{},"ClawHub is the official skill registry for OpenClaw. Think of it like npm for Node.js packages or PyPI for Python libraries, except the packages add capabilities to your AI agent instead of your codebase.",[14,786,787],{},"Skills are what turn OpenClaw from a chatbot into an agent. Without skills, your agent can only have conversations. With skills, it can search the web, manage your calendar, read and write files, automate browser tasks, send emails, interact with APIs, and execute shell commands.",[14,789,790],{},"As of March 2026, ClawHub hosts over 13,700 skills. A separate community-curated registry (awesome-openclaw-skills on GitHub) tracks another 5,400+ skills that have been independently reviewed. The ecosystem is massive and growing fast, driven by OpenClaw's 1.27 million weekly npm downloads.",[14,792,793,796],{},[76,794,795],{},"What ClawHub is:"," An open registry where anyone can publish a skill package. Think app store with minimal review.",[14,798,799,802],{},[76,800,801],{},"What ClawHub isn't:"," A curated, security-reviewed marketplace. Until the VirusTotal partnership, there was effectively no automated security scanning. Publishers could upload anything. And 20% of them uploaded something malicious.",[14,804,805,806,809],{},"For the full timeline of ",[54,807,808],{"href":314},"documented OpenClaw security incidents"," including the ClawHavoc campaign, CrowdStrike advisory, and Cisco's data exfiltration discovery, our security guide covers each event.",[30,811,813],{"id":812},"the-clawhub-skills-categories-worth-knowing","The ClawHub skills categories worth knowing",[14,815,816],{},"The directory organizes skills into categories, though the boundaries are loose and many skills span multiple categories. Here's what's available and what's genuinely useful.",[818,819,821],"h3",{"id":820},"communication-skills","Communication skills",[14,823,824],{},"These connect your agent to external messaging and communication tools. Email reading and drafting (Gmail, Outlook), calendar management (Google Calendar, CalDAV), messaging integrations beyond the platforms OpenClaw already supports natively, and notification routing.",[14,826,827,830],{},[76,828,829],{},"The risk level is high."," Communication skills need access to your email, calendar, or messaging accounts. A compromised email skill can read every message in your inbox and forward copies to an external server. The Meta researcher Summer Yue incident is the cautionary tale here: her agent mass-deleted emails while ignoring stop commands. Even legitimate email skills need strict permission boundaries.",[818,832,834],{"id":833},"search-and-research-skills","Search and research skills",[14,836,837],{},"Web search (Brave API, Google Custom Search, Tavily), academic paper search, news aggregation, and data retrieval from specific sources. These are among the most commonly installed skills because they give your agent access to real-time information.",[14,839,840,843],{},[76,841,842],{},"The risk level is moderate."," Search skills make outbound API calls to retrieve information. The main concern is whether they're sending your query data (which might contain sensitive context from your conversations) to unexpected destinations alongside the legitimate search requests.",[818,845,847],{"id":846},"productivity-skills","Productivity skills",[14,849,850],{},"File management, note-taking integrations (Notion, Obsidian), project management connections (Linear, Asana, Jira), and document processing. These skills let your agent interact with your work tools.",[14,852,853,856],{},[76,854,855],{},"The risk level is moderate to high."," Productivity skills typically need OAuth tokens or API keys for external services. A compromised productivity skill has access to whatever tools it connects to.",[818,858,860],{"id":859},"developer-tools","Developer tools",[14,862,863],{},"Code execution, Git operations, CI/CD integrations, database queries, and API testing. These are popular among developers who use OpenClaw as a coding assistant.",[14,865,866,869],{},[76,867,868],{},"The risk level is very high."," Developer tool skills often have shell access or can execute arbitrary code. A malicious developer skill with shell access can do anything on your machine. Cisco's discovery of a skill performing data exfiltration was in this category.",[14,871,872],{},[62,873],{"alt":874,"src":875},"ClawHub skills categories organized by risk level","/img/blog/clawhub-skills-directory-categories.jpg",[30,877,879],{"id":878},"how-to-find-good-skills-on-clawhub","How to find good skills on ClawHub",[14,881,882],{},"The ClawHub interface shows skill name, description, publisher, download count, last update date, and version history. Here's how to use that information to filter for quality.",[818,884,886],{"id":885},"publisher-reputation-matters-most","Publisher reputation matters most",[14,888,889],{},"The OpenClaw core team maintains a set of official skills. These are the safest options because they're maintained by the same developers who build the framework. Look for the official organization badge.",[14,891,892],{},"After official skills, established community developers with multiple published packages, active GitHub profiles, and real identities are the next safest tier. A publisher who has maintained three skills for six months with regular updates is very different from an account created last week with one package.",[14,894,895,898],{},[76,896,897],{},"Red flags on publishers:"," Account created recently with only one skill. Username that mimics official accounts (like \"opencIaw\" with a capital I instead of lowercase L). No GitHub profile linked. Generic or AI-generated skill descriptions.",[818,900,902],{"id":901},"download-count-needs-context","Download count needs context",[14,904,905],{},"High download count alone doesn't mean safe. The most-downloaded malicious skill in the ClawHavoc campaign had 14,285 downloads before removal. Download count tells you popularity, not quality.",[14,907,908,911],{},[76,909,910],{},"What matters more:"," the ratio of downloads to the skill's age. A skill published last week with 5,000 downloads either went viral organically (rare) or had its count artificially boosted (more common). A skill published six months ago with 5,000 downloads grew naturally through genuine adoption.",[818,913,915],{"id":914},"last-update-date-signals-maintenance","Last update date signals maintenance",[14,917,918],{},"Skills that haven't been updated in more than three months are concerning. OpenClaw releases multiple updates per week. Skills that don't keep up with the framework eventually break or develop compatibility issues.",[14,920,921,924],{},[76,922,923],{},"The sweet spot:"," skills updated within the last 30-60 days with a consistent version history showing incremental improvements rather than a single large dump of code.",[14,926,927],{},[62,928],{"alt":929,"src":930},"How to evaluate ClawHub skill listings","/img/blog/clawhub-skills-directory-evaluation.jpg",[14,932,933,934,937,938,941],{},"For our curated list of ",[54,935,936],{"href":321},"the best community-vetted OpenClaw skills"," that have passed security review, our ",[54,939,940],{"href":321},"skills guide"," ranks options by reliability, safety, and usefulness.",[30,943,945],{"id":944},"the-5-step-vetting-process-before-you-install-anything","The 5-step vetting process before you install anything",[14,947,948],{},"Finding a skill on ClawHub is step one. Vetting it before installation is what separates safe users from compromised ones.",[14,950,951,954],{},[76,952,953],{},"Step 1: Check the publisher."," Verify their identity, account age, and other published packages. Official skills from the core team are safest.",[14,956,957,960],{},[76,958,959],{},"Step 2: Read the source code."," Every ClawHub skill is JavaScript or TypeScript. You're looking for network calls to unexpected domains, file reads outside the skill's workspace (especially reads of your config file where API keys live), obfuscated or minified code (legitimate skills are readable), and environment variable access beyond what's needed.",[14,962,963,966],{},[76,964,965],{},"Step 3: Search community reports."," Check GitHub issues and the OpenClaw Discord for the skill name. If others have reported problems, you'll find them.",[14,968,969,972],{},[76,970,971],{},"Step 4: Test in a sandboxed workspace."," Never install a new skill directly into your production agent. Create a test workspace, install the skill there, run it for 24-48 hours, and monitor your API usage dashboards for unexpected activity.",[14,974,975,978],{},[76,976,977],{},"Step 5: Set limits."," After installation, configure iteration limits and context token caps to contain the blast radius if a skill misbehaves.",[14,980,981],{},[62,982],{"alt":983,"src":984},"5-step skill vetting process","/img/blog/clawhub-skills-directory-vetting.jpg",[14,986,987],{},"The vetting process takes 5-10 minutes per skill plus a 24-hour monitoring window. That's 5-10 minutes compared to hours of damage control if something goes wrong. The math is obvious.",[30,989,991],{"id":990},"what-changed-after-clawhavoc","What changed after ClawHavoc",[14,993,994],{},"The ClawHavoc campaign was a wake-up call for the entire ecosystem. Here's what ClawHub has done since, and what's still missing.",[818,996,998],{"id":997},"what-improved","What improved",[14,1000,1001,1004],{},[76,1002,1003],{},"VirusTotal partnership."," ClawHub now runs automated security scans on all new skill submissions. Known malware signatures and suspicious patterns trigger review before publication. This catches known attack patterns but not novel ones.",[14,1006,1007,1010],{},[76,1008,1009],{},"Mass purge."," 2,419 suspicious packages were removed from the registry. This cleaned up the worst offenders but happened after the damage was done. The most-downloaded malicious package had already been installed by thousands of users.",[14,1012,1013,1016],{},[76,1014,1015],{},"Publisher verification."," ClawHub introduced optional publisher verification. Verified publishers have confirmed identities. The problem: verification is optional, and most publishers haven't bothered.",[818,1018,1020],{"id":1019},"whats-still-missing","What's still missing",[14,1022,1023,1026],{},[76,1024,1025],{},"Mandatory code review."," There's no human review of skill code before publication. VirusTotal catches known malware patterns, but sophisticated exfiltration techniques (like the Cisco-discovered skill that looked perfectly legitimate) can slip through automated detection.",[14,1028,1029,1032],{},[76,1030,1031],{},"Permission scoping."," Skills currently have access to whatever OpenClaw has access to. There's no granular permission system where a calendar skill can only access calendar APIs, not your file system. This means every skill is either trusted with everything or not installed at all.",[14,1034,1035,1038],{},[76,1036,1037],{},"Dependency auditing."," Skills can include npm dependencies. Those dependencies can include their own dependencies. The supply chain attack surface extends well beyond the skill code itself.",[14,1040,1041],{},[62,1042],{"alt":1043,"src":1044},"ClawHub security improvements timeline","/img/blog/clawhub-skills-directory-security.jpg",[14,1046,1047,1048,1051],{},"If managing skill security, vetting, and permission boundaries sounds like more work than you want, ",[54,1049,1050],{"href":511},"BetterClaw's curated skill marketplace"," audits every skill before publication. Docker-sandboxed execution means even a compromised skill can't access your host system or credentials. $29/month per agent, BYOK. Zero unvetted code running on your infrastructure.",[30,1053,1055],{"id":1054},"the-alternative-registries-worth-knowing","The alternative registries worth knowing",[14,1057,1058],{},"ClawHub isn't the only place to find OpenClaw skills. Two alternatives are worth mentioning.",[818,1060,1062],{"id":1061},"awesome-openclaw-skills-github","awesome-openclaw-skills (GitHub)",[14,1064,1065],{},"A community-curated list tracking 5,400+ skills with basic quality annotations. It's not a registry (you still install skills from ClawHub or GitHub). It's a curation layer that filters the noise. The maintainers remove skills that are reported as malicious or abandoned. It's not a security guarantee, but it's a better starting point than browsing ClawHub's unfiltered listing.",[818,1067,1069],{"id":1068},"direct-github-installation","Direct GitHub installation",[14,1071,1072],{},"You can install skills directly from GitHub repositories without going through ClawHub at all. Clone the repo, review the code, and copy it into your OpenClaw skills directory. This bypasses ClawHub entirely and gives you complete visibility into what you're installing.",[14,1074,1075],{},"The trade-off: no auto-updates. When the skill author pushes a new version, you need to manually pull the changes. ClawHub-installed skills update automatically, which is both convenient and risky (an update could introduce new malicious code that wasn't in the version you vetted).",[14,1077,1078,1079,1083],{},"For guidance on ",[54,1080,1082],{"href":1081},"/blog/openclaw-setup-guide-complete","the full OpenClaw installation and skill configuration process",", our setup guide covers where skills fit into the deployment sequence.",[14,1085,1086],{},[62,1087],{"alt":1088,"src":1089},"Alternative OpenClaw skill registries comparison","/img/blog/clawhub-skills-directory-alternatives.jpg",[30,1091,1093],{"id":1092},"the-skills-most-people-should-start-with","The skills most people should start with",[14,1095,1096],{},"After reviewing the ecosystem extensively, here are the skill categories that provide the most value with the least risk for new OpenClaw users.",[14,1098,1099,1102],{},[76,1100,1101],{},"Web search."," The official web search skill or Brave Search API integration. Essential for any agent that needs to look up information. Maintained by the core team. Low risk because it only makes outbound search queries.",[14,1104,1105,1108],{},[76,1106,1107],{},"File operations."," OpenClaw's built-in file read/write capabilities handle most basic file tasks without requiring an external skill. Start with the native tools before adding third-party file management skills.",[14,1110,1111,1114],{},[76,1112,1113],{},"Calendar."," Google Calendar or CalDAV integrations from verified publishers with established track records. These need OAuth access to your calendar, so choose carefully. Only install from publishers with real identities.",[14,1116,1117,1120,1121,1124],{},[76,1118,1119],{},"Custom internal skills."," If you need your agent to interact with a proprietary API (your Shopify store, your CRM, your internal tools), building a custom skill is safer than finding a generic one on ClawHub. You control every line of code. For ecommerce-specific agent configurations, our ",[54,1122,1123],{"href":539},"ecommerce guide"," covers the most common integrations.",[14,1126,1127,1130],{},[76,1128,1129],{},"Email (with extreme caution)."," Email skills are the highest-risk category. Start with read-only access. Only enable send with explicit confirmation requirements. Never give an agent unsupervised email send permissions. The Summer Yue incident is the permanent reminder of why.",[14,1132,1133],{},[62,1134],{"alt":1135,"src":1136},"Recommended starter skills for OpenClaw","/img/blog/clawhub-skills-directory-starter.jpg",[30,1138,1140],{"id":1139},"what-to-do-if-youve-already-installed-unvetted-skills","What to do if you've already installed unvetted skills",[14,1142,1143],{},"If you've been installing ClawHub skills without vetting them (most people have in the beginning), here's the damage control sequence.",[14,1145,1146,1149],{},[76,1147,1148],{},"First: rotate all API keys immediately."," Every key in your OpenClaw config. Anthropic, OpenAI, Telegram bot tokens, OAuth credentials. All of them. If any skill has exfiltrated your keys, rotating them invalidates the stolen copies.",[14,1151,1152,1155],{},[76,1153,1154],{},"Second: review your API usage dashboards."," Check the last 30 days for requests you didn't make. Unusual patterns (requests at odd hours, high-volume calls you don't recognize) indicate compromise.",[14,1157,1158,1161],{},[76,1159,1160],{},"Third: audit every installed skill."," List everything your agent currently has installed. For each skill, run through the 5-step vetting process. Remove anything that doesn't pass.",[14,1163,1164,1167],{},[76,1165,1166],{},"Fourth: set up monitoring going forward."," Check API usage weekly. Review logs after installing any new skill. Set spending caps on all provider accounts.",[14,1169,1170],{},[62,1171],{"alt":1172,"src":1173},"Damage control steps for unvetted skills","/img/blog/clawhub-skills-directory-damage-control.jpg",[14,1175,455,1176,1179],{},[54,1177,1178],{"href":314},"managed vs self-hosted security comparison"," covers how platforms like BetterClaw handle skill security versus what you're responsible for when self-hosting.",[30,1181,1183],{"id":1182},"the-bigger-picture-where-the-clawhub-ecosystem-is-heading","The bigger picture: where the ClawHub ecosystem is heading",[14,1185,1186],{},"The skills ecosystem is at an inflection point. The ClawHavoc campaign forced the community to take supply chain security seriously. VirusTotal scanning and the publisher verification system are steps in the right direction. But the fundamental challenge remains: an open registry with minimal review will always have a security tail risk.",[14,1188,1189],{},"The likely evolution is a tiered system. A \"verified\" tier with mandatory code review and publisher identity verification. An \"unverified\" tier with automated scanning only. And eventually, permission scoping that limits what each skill can access regardless of trust level.",[14,1191,1192],{},"Until that happens, the responsibility is on you. Every skill you install is executable code running with your agent's permissions and access to your API keys. Treat ClawHub like you'd treat any package registry: with appreciation for the ecosystem and suspicion toward anything you haven't personally reviewed.",[14,1194,1195,1196,1200],{},"If you want a deployment where skills are security-audited before they reach your agent, where Docker sandboxing prevents compromised code from accessing your host system, and where you don't carry the vetting burden yourself, ",[54,1197,1199],{"href":633,"rel":1198},[635],"give BetterClaw a try",". $29/month per agent, BYOK. Every skill in our marketplace is reviewed. Sandboxed execution means even a problematic skill can't reach beyond its container. You build workflows. We handle the security.",[30,1202,252],{"id":251},[14,1204,1205],{},[76,1206,1207],{},"What is ClawHub?",[14,1209,1210],{},"ClawHub is the official skill registry for OpenClaw, hosting over 13,700 installable skill packages as of March 2026. Skills add capabilities to your OpenClaw agent: web search, calendar management, email, file operations, browser automation, and API integrations. ClawHub functions like npm or PyPI but for AI agent capabilities. Anyone can publish skills, and since the ClawHavoc cleanup, all submissions go through VirusTotal automated scanning.",[14,1212,1213],{},[76,1214,1215],{},"How does ClawHub compare to awesome-openclaw-skills?",[14,1217,1218],{},"ClawHub is the official registry with the largest collection (13,700+ skills) and auto-update support, but it's an open marketplace with minimal human review. awesome-openclaw-skills is a community-curated GitHub list tracking 5,400+ skills with basic quality filtering and maintainer oversight. Neither is a security guarantee. ClawHub has more skills and convenience. awesome-openclaw-skills has better curation. Use both as discovery tools, but always vet skills yourself before installation.",[14,1220,1221],{},[76,1222,1223],{},"How do I install skills from ClawHub safely?",[14,1225,1226],{},"Follow a 5-step process: check the publisher's identity and account history, read the source code for suspicious network calls and file access patterns, search community reports on GitHub and Discord, test in a sandboxed workspace for 24-48 hours while monitoring API usage, and set iteration limits and context caps after installation. The active vetting takes 5-10 minutes per skill plus a 24-hour monitoring window.",[14,1228,1229],{},[76,1230,1231],{},"How much do ClawHub skills cost to use?",[14,1233,1234],{},"Skills themselves are free to install from ClawHub. The cost comes from the API tokens they consume when your agent uses them. A web search skill adds roughly 1,000-3,000 tokens per search call. Browser automation can use 500-2,000 tokens per step. On Claude Sonnet ($3/$15 per million tokens), typical skill usage adds $5-20/month to your API bill depending on frequency. Set iteration limits to prevent runaway costs from skills that loop.",[14,1236,1237],{},[76,1238,1239],{},"Are ClawHub skills secure enough for business use?",[14,1241,1242],{},"Not without vetting. The ClawHavoc campaign found 824 malicious skills (roughly 20% of the registry). ClawHub has since purged 2,419 suspicious packages and added VirusTotal scanning, but automated detection doesn't catch everything. Cisco independently found a legitimate-looking skill performing data exfiltration. For business use, either vet every skill manually using the 5-step process, use a managed platform with a curated skill marketplace (like BetterClaw), or build custom skills for sensitive integrations.",{"title":338,"searchDepth":339,"depth":339,"links":1244},[1245,1246,1253,1258,1259,1263,1267,1268,1269,1270],{"id":780,"depth":339,"text":781},{"id":812,"depth":339,"text":813,"children":1247},[1248,1250,1251,1252],{"id":820,"depth":1249,"text":821},3,{"id":833,"depth":1249,"text":834},{"id":846,"depth":1249,"text":847},{"id":859,"depth":1249,"text":860},{"id":878,"depth":339,"text":879,"children":1254},[1255,1256,1257],{"id":885,"depth":1249,"text":886},{"id":901,"depth":1249,"text":902},{"id":914,"depth":1249,"text":915},{"id":944,"depth":339,"text":945},{"id":990,"depth":339,"text":991,"children":1260},[1261,1262],{"id":997,"depth":1249,"text":998},{"id":1019,"depth":1249,"text":1020},{"id":1054,"depth":339,"text":1055,"children":1264},[1265,1266],{"id":1061,"depth":1249,"text":1062},{"id":1068,"depth":1249,"text":1069},{"id":1092,"depth":339,"text":1093},{"id":1139,"depth":339,"text":1140},{"id":1182,"depth":339,"text":1183},{"id":251,"depth":339,"text":252},"2026-03-25","13,700+ OpenClaw skills on ClawHub. 824 were malicious. Here's how to find, vet, and safely install skills without exposing your API keys.","/img/blog/clawhub-skills-directory.jpg",{},"/blog/clawhub-skills-directory","16 min read",{"title":753,"description":1272},"ClawHub Skills Directory: Complete 2026 Guide","blog/clawhub-skills-directory",[1281,1282,1283,1284,1285,1286,1287,1288],"ClawHub skills","OpenClaw skills directory","ClawHub guide","OpenClaw skills marketplace","safe OpenClaw skills","ClawHub security","ClawHavoc","OpenClaw skill vetting","eYe9rNhfWKDi2Ce0JP9DFpMNFvf08qyPreEcDpUe8YM",{"id":1291,"title":1292,"author":1293,"body":1294,"category":350,"date":1663,"description":1664,"extension":353,"featured":354,"image":1665,"meta":1666,"navigation":357,"path":708,"readingTime":1667,"seo":1668,"seoTitle":1669,"stem":1670,"tags":1671,"updatedDate":1663,"__hash__":1679},"blog/blog/openclaw-gateway-guide.md","OpenClaw Gateway Explained: Setup, Security, and Common Mistakes",{"name":7,"role":8,"avatar":9},{"type":11,"value":1295,"toc":1648},[1296,1309,1314,1317,1320,1323,1327,1330,1333,1336,1339,1345,1349,1352,1360,1368,1374,1377,1386,1392,1396,1415,1418,1423,1426,1429,1436,1440,1443,1446,1449,1455,1462,1466,1470,1473,1476,1480,1483,1486,1490,1493,1496,1508,1514,1518,1521,1524,1527,1533,1536,1542,1544,1547,1550,1553,1561,1563,1568,1571,1576,1590,1595,1598,1603,1606,1611,1617,1619],[14,1297,1298],{},[76,1299,1300,1301,1304,1305,1308],{},"The OpenClaw gateway is the HTTP server that handles every connection to your agent. The single most important setting is the bind address: on a server, set it to ",[93,1302,1303],{},"127.0.0.1"," (loopback) so only the local machine can reach it, and use SSH tunneling for remote access. The default ",[93,1306,1307],{},"0.0.0.0"," binding is what exposed 30,000+ OpenClaw instances to the public internet.",[14,1310,1311],{},[17,1312,1313],{},"The gateway is how your agent talks to the world. If it's misconfigured, anyone on the internet can talk to your agent too. Here's what you need to know.",[14,1315,1316],{},"Thirty thousand OpenClaw instances were found exposed on the internet without authentication. Thirty thousand. Censys, Bitsight, and Hunt.io all independently confirmed the number. Every one of those instances had a misconfigured gateway.",[14,1318,1319],{},"The OpenClaw gateway is the single most important security setting in your entire setup, and it's the one most people never think about. If you get this wrong, anyone on the internet can send messages to your agent, read your conversations, and potentially access whatever your agent has access to (your files, your API keys, your connected platforms).",[14,1321,1322],{},"Here's what the gateway actually is, why the default configuration is dangerous on a server, and the one change that fixes it.",[30,1324,1326],{"id":1325},"what-the-openclaw-gateway-actually-is","What the OpenClaw gateway actually is",[14,1328,1329],{},"Think of the OpenClaw gateway as the front door to your agent. It's the HTTP server that accepts incoming connections and routes them to the agent. When you open the OpenClaw web interface in your browser, you're connecting through the gateway. When Telegram delivers a message to your agent, it arrives through the gateway. When a cron job fires, the gateway processes it.",[14,1331,1332],{},"Every interaction with your agent flows through the gateway. It handles authentication (or doesn't, depending on your configuration), manages WebSocket connections for real-time chat, processes incoming messages from connected platforms, and serves the web-based TUI interface.",[14,1334,1335],{},"On your local machine, this is straightforward. The gateway runs on your computer. Only you can access it. The front door is inside your house.",[14,1337,1338],{},"On a VPS or remote server, the situation changes entirely. The gateway runs on a server connected to the public internet. If the front door is open and facing the street, anyone can walk in.",[14,1340,52,1341,1344],{},[54,1342,1343],{"href":314},"complete OpenClaw security checklist",", our security guide covers the gateway alongside nine other security measures.",[30,1346,1348],{"id":1347},"the-127001-vs-0000-problem-this-is-the-dangerous-part","The 127.0.0.1 vs 0.0.0.0 problem (this is the dangerous part)",[14,1350,1351],{},"This is where most people get it wrong. Stay with me here because this single setting is responsible for the majority of exposed OpenClaw instances.",[14,1353,1354,1359],{},[76,1355,1356,1358],{},[93,1357,1303],{}," (loopback)"," means the gateway only accepts connections from the same machine it's running on. If someone on the internet tries to connect, they can't. The door only opens from inside the house. This is what you want on a server.",[14,1361,1362,1367],{},[76,1363,1364,1366],{},[93,1365,1307],{}," (all interfaces)"," means the gateway accepts connections from anywhere. Your machine, your local network, and the entire internet. The door is open to the street. This is the default for some OpenClaw configurations, and it's the default that GitHub Issue #5263 flagged (closed by a maintainer as \"not planned\" to change).",[14,1369,1370,1371,1373],{},"Here's the problem: if your gateway binds to ",[93,1372,1307],{}," on a VPS without a firewall blocking the gateway port, your agent is publicly accessible. No password. No authentication. Anyone who finds your IP address and port can interact with your agent, read your conversation history, and potentially trigger actions through your connected platforms.",[14,1375,1376],{},"The CVE-2026-25253 vulnerability (CVSS 8.8, one-click remote code execution) was especially dangerous for instances with exposed gateways. An attacker could exploit the WebSocket vulnerability to execute arbitrary code on the host machine. The vulnerability was patched, but instances with publicly exposed gateways were the easiest targets.",[14,1378,1379,1380,1382,1383,1385],{},"If your OpenClaw gateway binds to ",[93,1381,1307],{}," on a server, your agent is public. Change it to ",[93,1384,1303],{},". This is the single most important security setting in your configuration.",[14,1387,1388],{},[62,1389],{"alt":1390,"src":1391},"OpenClaw gateway loopback vs all-interfaces binding diagram showing 127.0.0.1 keeping the agent private and 0.0.0.0 exposing it to the internet","/img/blog/openclaw-gateway-guide-bind-address.jpg",[30,1393,1395],{"id":1394},"the-one-change-you-must-make-before-exposing-your-gateway","The one change you must make before exposing your gateway",[14,1397,1398,1399,1402,1403,1406,1407,1410,1411,1414],{},"Set the gateway bind address to loopback in your OpenClaw config. In your ",[93,1400,1401],{},"openclaw.json"," (or equivalent config file), the gateway section should have its ",[93,1404,1405],{},"bind"," setting set to ",[93,1408,1409],{},"\"loopback\""," or the bind address set to ",[93,1412,1413],{},"\"127.0.0.1\"",".",[14,1416,1417],{},"This single change means the gateway only listens for connections from the local machine. External traffic can't reach it directly. Your agent is invisible to the internet.",[14,1419,1420],{},[76,1421,1422],{},"But wait, how do I access my agent remotely if it only listens locally?",[14,1424,1425],{},"SSH tunneling. You create an encrypted tunnel from your personal machine to the server. The tunnel forwards the gateway port from the remote server to your local machine. You open your browser, connect to localhost on the forwarded port, and the traffic travels through the encrypted SSH connection to the server.",[14,1427,1428],{},"This gives you remote access to the gateway without exposing it to the internet. Only someone with SSH credentials can create the tunnel. Everyone else sees nothing.",[14,1430,1431,1432,1435],{},"On ",[54,1433,1434],{"href":511},"BetterClaw, gateway binding is handled and locked down by default",". This isn't something you configure or can accidentally misconfigure. The gateway is never publicly exposed. $29/month per agent, BYOK. The security configuration is part of the platform.",[30,1437,1439],{"id":1438},"how-to-set-up-secure-remote-access","How to set up secure remote access",[14,1441,1442],{},"The SSH tunnel approach is the standard way to access a loopback-bound gateway remotely.",[14,1444,1445],{},"From your personal machine, open a terminal and create an SSH connection to your server with port forwarding. You specify which local port on your machine should map to which port on the remote server. The gateway's default port (varies by configuration, commonly 3000 or 4000) gets forwarded to a local port on your machine.",[14,1447,1448],{},"Once the tunnel is open, you access the OpenClaw web interface by opening your browser and going to localhost on the forwarded port. The traffic travels through the encrypted SSH tunnel to the server, reaches the loopback-bound gateway, and works exactly as if you were sitting at the server.",[14,1450,1451,1454],{},[76,1452,1453],{},"Why not just open the port publicly and add a password?"," Because OpenClaw's built-in authentication is minimal. The gateway wasn't designed as a public-facing web service. It was designed as a local interface. Adding a reverse proxy with authentication (nginx with HTTP basic auth, for example) is possible but adds complexity. SSH tunneling gives you encrypted, authenticated access with zero additional software.",[14,1456,52,1457,1461],{},[54,1458,1460],{"href":1459},"/blog/openclaw-vps-setup","complete VPS setup walkthrough"," including firewall configuration and SSH hardening, our self-hosting guide covers the full server security stack.",[30,1463,1465],{"id":1464},"common-gateway-errors-and-what-they-mean","Common gateway errors and what they mean",[818,1467,1469],{"id":1468},"connection-refused","Connection refused",[14,1471,1472],{},"You're trying to connect to the gateway and getting \"connection refused.\"",[14,1474,1475],{},"This means nothing is listening on the port you're trying to reach. Either the gateway isn't running (start it), you're using the wrong port (check your config), or the gateway is bound to loopback and you're trying to connect from outside the machine without an SSH tunnel (set up the tunnel).",[818,1477,1479],{"id":1478},"gateway-already-in-use-eaddrinuse","Gateway already in use (EADDRINUSE)",[14,1481,1482],{},"The port the gateway wants to use is already occupied by another process.",[14,1484,1485],{},"Something else is running on that port. Check what's using it and either stop that process or change the gateway port in your OpenClaw config. Common culprits: a previous OpenClaw instance that didn't shut down cleanly, another Node.js application, or a system service.",[818,1487,1489],{"id":1488},"timeout-on-remote-connection","Timeout on remote connection",[14,1491,1492],{},"You can reach the server but the gateway connection times out.",[14,1494,1495],{},"This usually means a firewall is blocking the port. If you're using SSH tunneling (as you should be), the firewall should block the gateway port from external access. The tunnel bypasses the firewall through the SSH connection. If you're getting timeouts through an SSH tunnel, the gateway isn't running or is bound to a different port than the one you're forwarding.",[14,1497,1498,1499,1503,1504,1507],{},"For the broader ",[54,1500,1502],{"href":1501},"/blog/openclaw-not-working","OpenClaw troubleshooting guide covering all first-hour errors",", our ",[54,1505,1506],{"href":1501},"error guide"," covers the six most common problems new users hit.",[14,1509,1510],{},[62,1511],{"alt":1512,"src":1513},"OpenClaw gateway error decision flow showing connection refused, EADDRINUSE, and timeout fixes","/img/blog/openclaw-gateway-guide-errors.jpg",[30,1515,1517],{"id":1516},"how-to-know-if-your-gateway-is-exposed-right-now","How to know if your gateway is exposed right now",[14,1519,1520],{},"If you're running OpenClaw on a server and you're not sure whether your gateway is exposed, check immediately.",[14,1522,1523],{},"From a different machine (not the server), try to access your server's IP address on the gateway port through a web browser. If you see the OpenClaw web interface or get any response other than a timeout or connection refused, your gateway is publicly exposed.",[14,1525,1526],{},"If you get a connection timeout or connection refused, the gateway is either not exposed or a firewall is blocking external access. Both are acceptable states.",[14,1528,1529,1532],{},[76,1530,1531],{},"If your gateway is exposed:"," change the bind setting to loopback immediately. Restart the gateway. Verify the external access no longer works. Then rotate all API keys stored in your configuration, because if the gateway was exposed, someone may have already accessed your setup.",[14,1534,1535],{},"Check your OpenClaw logs for unfamiliar conversations or requests. If you see messages you didn't send, someone else was using your agent.",[14,1537,455,1538,1541],{},[54,1539,1540],{"href":334},"managed vs self-hosted comparison"," covers how different deployment approaches handle gateway security, including which platforms prevent exposure by default.",[30,1543,615],{"id":614},[14,1545,1546],{},"The OpenClaw gateway is simple in concept (it's the HTTP server your agent uses to communicate) and dangerous in default configuration (it can expose your agent to the entire internet with one wrong setting).",[14,1548,1549],{},"Bind to loopback. Use SSH tunnels. Block the port in your firewall. These three actions take 10 minutes and prevent the exact exposure that affected 30,000+ instances.",[14,1551,1552],{},"The OpenClaw maintainer Shadow warned that \"if you can't understand how to run a command line, this is far too dangerous of a project for you to use safely.\" The gateway is the specific thing he's talking about. It's the difference between a private assistant and a public service that anyone can abuse.",[14,1554,1555,1556,1560],{},"If gateway security, firewall configuration, and SSH tunnel management isn't something you want to handle, ",[54,1557,1559],{"href":633,"rel":1558},[635],"give Better Claw a try",". $29/month per agent, BYOK with 28+ providers. Gateway security is locked down by default. AES-256 encrypted credentials. Docker-sandboxed execution. The infrastructure security is handled so you focus on what your agent does, not on whether someone else is using it.",[30,1562,252],{"id":251},[14,1564,1565],{},[76,1566,1567],{},"What is the OpenClaw gateway?",[14,1569,1570],{},"The OpenClaw gateway is the HTTP server component that handles all communication between your agent and the outside world. It processes incoming messages from connected platforms (Telegram, WhatsApp, Slack), serves the web-based chat interface, manages WebSocket connections, and routes requests to the agent. Every interaction with your OpenClaw agent flows through the gateway.",[14,1572,1573],{},[76,1574,1575],{},"What's the difference between 127.0.0.1 and 0.0.0.0 in OpenClaw gateway settings?",[14,1577,1578,1580,1581,1583,1584,1586,1587,1589],{},[93,1579,1303],{}," (loopback) means the gateway only accepts connections from the local machine. ",[93,1582,1307],{}," (all interfaces) means it accepts connections from anywhere, including the public internet. On a server, binding to ",[93,1585,1307],{}," without a firewall makes your agent publicly accessible to anyone who finds your IP. Always bind to ",[93,1588,1303],{}," on servers and use SSH tunnels for remote access.",[14,1591,1592],{},[76,1593,1594],{},"How do I securely access my OpenClaw gateway remotely?",[14,1596,1597],{},"Use SSH tunneling. Create an SSH connection from your personal machine to the server with port forwarding. This forwards the gateway's local port through the encrypted SSH connection to your machine. You access the gateway through localhost on your personal machine, and the traffic travels securely through the tunnel. This gives you remote access without exposing the gateway to the internet.",[14,1599,1600],{},[76,1601,1602],{},"How do I check if my OpenClaw gateway is exposed?",[14,1604,1605],{},"From a different machine (not the server), try to access your server's IP address and gateway port in a web browser. If you see the OpenClaw interface or get any response other than a timeout, your gateway is publicly accessible. Fix immediately: change the bind setting to loopback, restart the gateway, and rotate all API keys. 30,000+ OpenClaw instances were found exposed this way.",[14,1607,1608],{},[76,1609,1610],{},"Is the default OpenClaw gateway configuration secure?",[14,1612,1613,1614,1616],{},"On a local machine (your laptop or desktop), the default is generally safe because the machine isn't directly exposed to the internet. On a server or VPS, the default bind to ",[93,1615,1307],{}," is dangerous. GitHub Issue #5263 requested changing this default, but it was closed as \"not planned.\" You must manually change the bind to loopback on any server deployment. Managed platforms like BetterClaw handle this automatically.",[30,1618,299],{"id":298},[301,1620,1621,1626,1631,1637,1643],{},[304,1622,1623,1625],{},[54,1624,308],{"href":171}," — Nine more security measures alongside gateway binding",[304,1627,1628,1630],{},[54,1629,315],{"href":314}," — Why 30,000+ instances were exposed and what attackers do with them",[304,1632,1633,1636],{},[54,1634,1635],{"href":1459},"OpenClaw VPS Setup: The Real Cost of $8/Month Hosting"," — Full server security stack including firewall and SSH hardening",[304,1638,1639,1642],{},[54,1640,1641],{"href":1501},"OpenClaw Not Working: Every Fix in One Guide"," — Connection errors and other first-hour issues",[304,1644,1645,1647],{},[54,1646,335],{"href":334}," — How managed deployment handles gateway security automatically",{"title":338,"searchDepth":339,"depth":339,"links":1649},[1650,1651,1652,1653,1654,1659,1660,1661,1662],{"id":1325,"depth":339,"text":1326},{"id":1347,"depth":339,"text":1348},{"id":1394,"depth":339,"text":1395},{"id":1438,"depth":339,"text":1439},{"id":1464,"depth":339,"text":1465,"children":1655},[1656,1657,1658],{"id":1468,"depth":1249,"text":1469},{"id":1478,"depth":1249,"text":1479},{"id":1488,"depth":1249,"text":1489},{"id":1516,"depth":339,"text":1517},{"id":614,"depth":339,"text":615},{"id":251,"depth":339,"text":252},{"id":298,"depth":339,"text":299},"2026-04-08","30,000+ OpenClaw instances were found exposed because of one gateway setting. Here's what the gateway does and how to secure it properly.","/img/blog/openclaw-gateway-guide.jpg",{},"11 min read",{"title":1292,"description":1664},"OpenClaw Gateway: Setup, Security, Common Mistakes","blog/openclaw-gateway-guide",[1672,1673,1674,1675,1676,1677,1678],"OpenClaw gateway","OpenClaw gateway security","OpenClaw gateway setup","OpenClaw 127.0.0.1","OpenClaw 0.0.0.0","OpenClaw gateway exposed","OpenClaw remote access","K_bOzwW0f0YQkEJO4Q4Z2_H4syBNwerAut8LQ_OEi8E",1775820677603]