扫描报告
5 /100
cligen
CLI tool scaffolding generator for Bash/Python
Legitimate CLI tool scaffolding generator with no malicious indicators. Code generation is correctly scoped and documented.
可以安装
This skill is safe to use. No security concerns identified.
安全发现 2 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | No dependency version pinning 供应链 | package.json:1 |
| 提示 | File structure mismatch 文档欺骗 | SKILL.md:46 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | WRITE | WRITE | ✓ 一致 | SKILL.md declares file generation; code creates tool skeletons in specified outp… |
| 命令执行 | READ | READ | ✓ 一致 | Uses command -v for dependency checks, mkdir/cp/chmod for file operations |
| 网络访问 | NONE | NONE | — | No network requests observed |
| 环境变量 | NONE | NONE | — | No environment variable access beyond CONFIG_FILE |
| 技能调用 | NONE | NONE | — | No skill invocation patterns found |
| 剪贴板 | NONE | NONE | — | No clipboard access |
| 浏览器 | NONE | NONE | — | No browser access |
| 数据库 | NONE | NONE | — | No database access |
1 项发现
中危 外部 URL 外部 URL
https://clawhub.com README.md:135 目录结构
7 文件 · 36.8 KB · 1345 行 Shell 4f · 1083L
Markdown 2f · 250L
JSON 1f · 12L
├─
▾
src
│ ├─
generator.sh
Shell
│ ├─
preflight.sh
Shell
│ └─
validator.sh
Shell
├─
▾
tests
│ └─
test_all.sh
Shell
├─
package.json
JSON
├─
README.md
Markdown
└─
SKILL.md
Markdown
依赖分析 4 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
bash | >=4.0 | system | 否 | Declared in preflight.sh checks |
git | any | system | 否 | Optional, used for doctor command |
sed | any | system | 否 | Used for template variable substitution |
awk | any | system | 否 | Optional utility |
安全亮点
✓ Uses set -euo pipefail for bash safety in all scripts
✓ All functionality is documented in SKILL.md
✓ No credential harvesting or environment variable enumeration
✓ No network requests or data exfiltration
✓ No obfuscation (base64, eval) or suspicious encoding
✓ No sensitive path access (~/.ssh, ~/.aws, .env)
✓ Generated tools use proper error handling and argument parsing
✓ MIT License with clear copyright attribution
✓ Test suite covers core functionality