扫描报告
20 /100
ratemyclaw
Scores an OpenClaw agent setup by scanning the workspace, generating local embeddings, and submitting taxonomy tags + embeddings to ratemyclaw.com for comparison.
A legitimate workspace-profiling tool that scans files and sends structured tags + embeddings to an external API. Minor documentation gaps around model config exposure, but no malicious behavior found.
可以安装
Consider documenting model name transmission in SKILL.md and pinning scikit-learn to a specific version.
安全发现 4 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | Model configuration transmitted without documentation 文档欺骗 | scripts/profile_generator.py:169 |
| 低危 | Dependency version not pinned 供应链 | requirements.txt:1 |
| 低危 | Undeclared subprocess shell execution 权限提升 | scripts/submit_profile.py:164 |
| 提示 | Accesses .secrets directory but only reads file names 敏感访问 | scripts/profile_generator.py:88 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | READ | READ | ✓ 一致 | SKILL.md: workspace scan, scripts/profile_generator.py:31-100 |
| 网络访问 | WRITE | WRITE | ✓ 一致 | SKILL.md: 'submits tags + embedding to ratemyclaw.com', scripts/submit_profile.p… |
| 环境变量 | READ | READ | ✓ 一致 | SKILL.md: RATEMYCLAW_API_KEY env var, scripts/submit_profile.py:25 |
| 命令执行 | NONE | WRITE | ✗ 越权 | scripts/submit_profile.py:164: subprocess.run(['pip', 'install', '-r', req_file]… |
| 技能调用 | NONE | NONE | — | No skill invocation observed |
| 剪贴板 | NONE | NONE | — | No clipboard access |
| 浏览器 | NONE | NONE | — | No browser access |
| 数据库 | NONE | NONE | — | No database access |
3 项发现
中危 外部 URL 外部 URL
https://ratemyclaw.com** README.md:7 中危 外部 URL 外部 URL
https://huggingface.co/sentence-transformers/all-MiniLM-L6-v2 README.md:19 中危 外部 URL 外部 URL
https://ratemyclaw.com SKILL.md:7 目录结构
8 文件 · 48.0 KB · 1403 行 Python 2f · 900L
JSON 3f · 330L
Markdown 2f · 172L
Text 1f · 1L
├─
▾
references
│ └─
taxonomy.json
JSON
├─
▾
scripts
│ ├─
generated_profile.json
JSON
│ ├─
profile_generator.py
Python
│ └─
submit_profile.py
Python
├─
_meta.json
JSON
├─
README.md
Markdown
├─
requirements.txt
Text
└─
SKILL.md
Markdown
依赖分析 1 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
scikit-learn | >=1.0 | pip | 否 | Version not pinned; >=1.0 allows any version |
安全亮点
✓ No credential theft: API keys and tokens are never read or exfiltrated
✓ No base64-encoded or obfuscated code found
✓ No remote script execution (curl|bash, wget|sh) detected
✓ No direct IP network requests; all traffic goes to ratemyclaw.com domain
✓ No sensitive file path access (no ~/.ssh, ~/.aws, .env reading)
✓ No C2 communication or reverse shell patterns
✓ Taxonomy-based tagging limits data exposure to predefined labels only
✓ User confirmation required before API key generation
✓ Embedding generation is local (MiniLM/TF-IDF) before transmission
✓ Raw file contents are explicitly excluded from submissions per documentation
✓ Good: API key file saved with chmod 600
✓ Good: Input prompts support non-interactive --yes flag for automation