Scan Report
15 /100
clawscan-vigil
OpenClaw Skill Security Scanner - static and dynamic analysis
ClawScan is a legitimate security scanning tool for OpenClaw Skills with no malicious behavior detected. All capabilities align with documented functionality.
Safe to install
Approve for installation. This is a genuine security tool that performs static and dynamic analysis of AI skills.
Findings 2 items
| Severity | Finding | Location |
|---|---|---|
| Low | Client-side license validation | core/license_manager.py:131 |
| Info | RestrictedPython sandbox limitations | core/dynamic_tracer.py:1 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | READ | READ | ✓ Aligned | Reads Python files in target skill directories for analysis |
| Shell | WRITE | WRITE | ✓ Aligned | skill/skill_wrapper.py:17 uses subprocess.run() to invoke clawscan CLI |
| Network | NONE | READ | ✓ Aligned | requests library is a dependency but used only for legitimate external verificat… |
8 findings
Medium External URL 外部 URL
https://clawhub.ai/signup PUBLISH.md:45 Medium External URL 外部 URL
https://img.shields.io/badge/python-3.10+-blue.svg README.md:3 Medium External URL 外部 URL
https://www.python.org/downloads/ README.md:3 Medium External URL 外部 URL
https://img.shields.io/badge/License-MIT-yellow.svg README.md:4 Medium External URL 外部 URL
https://opensource.org/licenses/MIT README.md:4 Medium External URL 外部 URL
https://clawscan.dev SKILL.md:73 Medium External URL 外部 URL
https://docs.clawscan.dev pyproject.toml:42 Info Email 邮箱地址
[email protected] SKILL.md:167 File Tree
16 files · 74.9 KB · 2421 lines Python 11f · 1751L
Markdown 4f · 616L
TOML 1f · 54L
├─
▾
core
│ ├─
__init__.py
Python
│ ├─
advanced_analyzer.py
Python
│ ├─
batch_scanner.py
Python
│ ├─
dynamic_tracer.py
Python
│ ├─
license_manager.py
Python
│ ├─
models.py
Python
│ ├─
risk_engine.py
Python
│ ├─
scanner.py
Python
│ └─
static_analyzer.py
Python
├─
▾
skill
│ ├─
skill_wrapper.py
Python
│ └─
SKILL.md
Markdown
├─
cli.py
Python
├─
PUBLISH.md
Markdown
├─
pyproject.toml
TOML
├─
README.md
Markdown
└─
SKILL.md
Markdown
Dependencies 4 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
click | >=8.0 | pyproject.toml | No | CLI framework - standard dependency |
requests | >=2.28 | pyproject.toml | No | HTTP library - expected for network security scanning |
RestrictedPython | >=7.0 | pyproject.toml | No | Security sandbox - core to this tool's safety model |
rich | >=13.0 | pyproject.toml | No | Terminal output - standard UI dependency |
Security Positives
✓ Uses RestrictedPython sandbox for dynamic analysis
✓ AST-based static analysis detects dangerous patterns
✓ No credential harvesting or exfiltration code found
✓ No base64/eval patterns that could hide malicious behavior
✓ Subprocess usage is scoped to legitimate tool execution
✓ All declared capabilities match actual implementation
✓ No access to ~/.ssh, ~/.aws, or other sensitive credential paths
✓ Dependencies (click, rich, requests) are standard and legitimate