扫描报告
22 /100
api-translator
將 API 文檔翻譯成繁體中文
Skill provides legitimate API translation but uses undocumented shell execution via subprocess to invoke web_fetch CLI, creating a minor doc-to-code mismatch without actual malicious behavior.
可以安装
Add explicit declaration of shell execution and subprocess usage in SKILL.md capabilities section. Implement the documented --format, --preserve-code, and --taiwan parameters in the scripts.
安全发现 2 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | Undocumented Shell Execution via Subprocess 文档欺骗 | scripts/api-translator.py:17 |
| 低危 | Documented Parameters Not Implemented 文档欺骗 | SKILL.md:48 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 网络访问 | READ | READ | ✓ 一致 | SKILL.md declares web_fetch tool usage |
| 命令执行 | NONE | WRITE | ✗ 越权 | scripts/api-translator.py:17 uses subprocess.run() |
| 文件系统 | NONE | NONE | — | No filesystem access in scripts |
| 环境变量 | NONE | NONE | — | No environment variable access |
| 技能调用 | NONE | NONE | — | No skill invocation |
2 项发现
中危 外部 URL 外部 URL
https://platform.openai.com/docs/api-reference/introduction SKILL.md:76 中危 外部 URL 外部 URL
https://api.example.com/docs scripts/api-translator.py:23 目录结构
4 文件 · 3.9 KB · 172 行 Markdown 1f · 82L
Python 1f · 50L
Shell 1f · 33L
JSON 1f · 7L
├─
▾
scripts
│ ├─
api-translator.py
Python
│ └─
api-translator.sh
Shell
├─
_meta.json
JSON
└─
SKILL.md
Markdown
安全亮点
✓ No credential theft or harvesting behavior observed
✓ No sensitive file/path access (no ~/.ssh, ~/.aws, .env)
✓ No data exfiltration to external IPs
✓ No obfuscation techniques (base64, eval, etc.)
✓ No curl|bash or wget|sh remote script execution
✓ No malicious dependencies detected
✓ web_fetch tool usage is properly declared in documentation
✓ Scripts are straightforward wrappers without hidden functionality