扫描报告
31 /100
chattts
High-quality, conversational Text-to-Speech (TTS) generation via local ChatTTS API
Hardcoded non-localhost IP address (172.23.252.114:8020) in both SKILL.md and script creates an undeclared network destination with no clear legitimate reason to avoid environment-based configuration.
谨慎使用
Remove the hardcoded IP fallback. Only use the CHATTTS_API_URL environment variable, defaulting to localhost (127.0.0.1) if needed. Document why external network access is required.
安全发现 2 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 中危 | Hardcoded fallback IP address 敏感访问 | scripts/tts.mjs:48 |
| 中危 | Non-localhost network destination declared as requirement 文档欺骗 | SKILL.md:4 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 网络访问 | READ | READ | ✓ 一致 | SKILL.md:4 metadata declares env=['http://172.23.252.114:8020'] |
| 命令执行 | WRITE | WRITE | ✓ 一致 | SKILL.md usage shows 'node {baseDir}/scripts/tts.mjs' |
| 文件系统 | NONE | NONE | — | No file operations in scripts/tts.mjs |
| 环境变量 | READ | READ | ✓ 一致 | scripts/tts.mjs:48 reads process.env.CHATTTS_API_URL |
1 高危 2 项发现
高危 IP 地址 硬编码 IP 地址
172.23.252.114 SKILL.md:4 中危 外部 URL 外部 URL
http://172.23.252.114:8020 SKILL.md:4 目录结构
2 文件 · 3.5 KB · 87 行 JavaScript 1f · 60L
Markdown 1f · 27L
├─
▾
scripts
│ └─
tts.mjs
JavaScript
└─
SKILL.md
Markdown
安全亮点
✓ Skill functionality is straightforward: text-to-speech via HTTP API
✓ No credential harvesting or sensitive file access
✓ No obfuscation techniques (base64, eval) detected
✓ Uses standard Node.js fetch API for HTTP requests
✓ Environment variable CHATTTS_API_URL is supported as primary configuration method