Scan Report
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.
Use with caution
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.
Findings 2 items
| Severity | Finding | Location |
|---|---|---|
| Medium | Hardcoded fallback IP address Sensitive Access | scripts/tts.mjs:48 |
| Medium | Non-localhost network destination declared as requirement Doc Mismatch | SKILL.md:4 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Network | READ | READ | ✓ Aligned | SKILL.md:4 metadata declares env=['http://172.23.252.114:8020'] |
| Shell | WRITE | WRITE | ✓ Aligned | SKILL.md usage shows 'node {baseDir}/scripts/tts.mjs' |
| Filesystem | NONE | NONE | — | No file operations in scripts/tts.mjs |
| Environment | READ | READ | ✓ Aligned | scripts/tts.mjs:48 reads process.env.CHATTTS_API_URL |
1 High 2 findings
High IP Address 硬编码 IP 地址
172.23.252.114 SKILL.md:4 Medium External URL 外部 URL
http://172.23.252.114:8020 SKILL.md:4 File Tree
2 files · 3.5 KB · 87 lines JavaScript 1f · 60L
Markdown 1f · 27L
├─
▾
scripts
│ └─
tts.mjs
JavaScript
└─
SKILL.md
Markdown
Security Positives
✓ 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