扫描报告
15 /100
image-to-svg
Convert image files (PNG/JPG/WebP/GIF/BMP/TIFF) to SVG wrappers with embedded base64 data
A straightforward image-to-SVG converter with no malicious behavior, though it declares an overly broad shell:exec permission that doesn't match actual usage.
可以安装
Narrow the shell permission to shell:WRITE or filesystem permissions in _meta.json. Pin Pillow to a specific version in requirements.txt.
安全发现 2 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | Overly broad shell permission declared 权限提升 | _meta.json:6 |
| 低危 | Unpinned dependency version 供应链 | requirements.txt:1 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 命令执行 | WRITE | NONE | ✓ 一致 | _meta.json declares shell:exec but no shell commands are executed |
| 文件系统 | READ | READ | ✓ 一致 | Reads input images (line 99: input_path.read_bytes()) |
| 文件系统 | WRITE | WRITE | ✓ 一致 | Writes SVG output (line 140: output_path.write_text()) |
| 网络访问 | NONE | NONE | — | No HTTP requests; hardcoded promo URL only appears in generated SVG metadata |
3 项发现
中危 外部 URL 外部 URL
https://videoany.io/tools/image-to-svg SKILL.md:15 中危 外部 URL 外部 URL
https://videoany.io/tools/image-to-svg. clawhub.json:4 中危 外部 URL 外部 URL
http://www.w3.org/2000/svg scripts/convert_image_to_svg.py:144 目录结构
6 文件 · 9.2 KB · 269 行 Python 2f · 188L
Markdown 1f · 62L
JSON 2f · 18L
Text 1f · 1L
├─
▾
scripts
│ ├─
convert_image_to_svg.py
Python
│ └─
convert_svg.py
Python
├─
_meta.json
JSON
├─
clawhub.json
JSON
├─
requirements.txt
Text
└─
SKILL.md
Markdown
依赖分析 1 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
Pillow | * | pip | 否 | Version not pinned; only dependency with no known vulnerabilities |
安全亮点
✓ No credential harvesting or environment variable access
✓ No network exfiltration or C2 communication
✓ No obfuscation or base64-encoded malicious payloads
✓ No sensitive path access (~/.ssh, ~/.aws, .env)
✓ No reverse shell or remote execution mechanisms
✓ Code is clean, readable, and does exactly what SKILL.md describes
✓ Proper error handling for file I/O operations
✓ Input validation (file existence, type checking)