OpenClaw Skill Safety Scanner: 7.6% of 31,371 Skills Flagged as Dangerous

A developer has created an automated scanning tool that analyzes the entire ClawHub skill registry for security risks. The tool performs static analysis on every SKILL.md file and bundled scripts, checking for malware patterns, prompt injection, data exfiltration, permission abuse, and obfuscated code.
Key Findings
The scan of 31,371 skills revealed:
- 2,371 skills flagged as dangerous (approximately 7.6%)
- Average trust score across the registry: 93.2 out of 100
- Dangerous patterns found include wallet drainers, credential theft, environment variable exfiltration, curl piped to bash, and prompt injection
How It Works
The scanner uses pattern matching against known attack signatures from ClawHavoc and Cisco reports. It rescans the entire registry every 6 hours. The developer notes there are false positives, particularly with legitimate wallet skills that interact with wallets, but the tool catches obvious threats that might be missed during manual review.
How to Use It
Check a specific skill via API:
curl -s checksafe.dev/api/v1/skills/SKILL-NAME-HERE/badge.jsonFor automatic checking before every install, use the OpenClaw skill:
clawhub install agora-sentinelAccess the full database at checksafe.dev/dashboard/ and view the most dangerous skills sorted by severity at checksafe.dev/dashboard/dangerous.
Important Notes
The tool is static analysis only and won't catch everything. False positives exist, particularly with legitimate wallet tools. The developer is not affiliated with OpenClaw or ClawHub - this is a side project, not a company. The API is public with no authentication required, and badges are embeddable.
📖 Read the full source: r/openclaw
👀 See Also

Smart Bash Permission Hook for Claude Code Prevents Compound Command Bypass
A Python PreToolUse hook addresses a security gap in Claude Code's permission system where compound bash commands could bypass allow/deny patterns. The script decomposes commands into sub-commands and checks each individually against existing permission rules.

Trojan found in Claude Flow repository skill.md files
A GitHub repository containing Claude Flow skill files was found to contain a Trojan identified as JS/CrypoStealz.AE!MTB. The malware triggered automatically when an AI-based IDE opened the folder to read the markdown files.

Rules of the Claw: Open Source Security Rule Set for OpenClaw Agents
An open source JSON rule set with 139 security rules that blocks destructive commands, protects credential files, and guards instruction files from unauthorized agent edits. It operates with zero LLM dependency using regex patterns at the tool layer.

OpenClaw Security Audit Command Prompts Plain-English Vulnerability Reports
A Reddit user shared a prompt for the OpenClaw CLI that runs a deep security audit and outputs findings in plain English, specifying what's exposed, severity scores, and exact config fixes.