Scan Report
20 /100
cute-kitten-generator
Generate high-detail cute kitten/animal images using ComfyUI local workflow
A legitimate ComfyUI image-generation skill that makes a local curl POST to a ComfyUI server, with no malicious patterns found. Minor doc-to-code mismatch on declared vs. actual resource usage.
Safe to install
No immediate action needed. Consider adding explicit declared permissions (network:WRITE, filesystem:READ) to SKILL.md for transparency.
Findings 2 items
| Severity | Finding | Location |
|---|---|---|
| Low | Undeclared shell and network execution Doc Mismatch | SKILL.md:16 |
| Low | Hardcoded personal paths and phone number Doc Mismatch | SKILL.md:22 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | NONE | READ | ✓ Aligned | SKILL.md:22 — cat cute_kitten_sofa.json reads workflow file; scripts/cute_kitten… |
| Network | NONE | WRITE | ✓ Aligned | SKILL.md:16 — curl -X POST http://127.0.0.1:8188/prompt |
| Shell | NONE | WRITE | ✓ Aligned | SKILL.md:22 — curl|bash usage via shell execution for API call |
1 findings
Medium External URL 外部 URL
http://127.0.0.1:8188/prompt SKILL.md:16 File Tree
2 files · 3.8 KB · 118 lines Markdown 1f · 59L
JSON 1f · 59L
├─
▾
scripts
│ └─
cute_kitten_sofa.json
JSON
└─
SKILL.md
Markdown
Security Positives
✓ No base64, obfuscation, or eval() patterns found
✓ No credential harvesting or environment variable iteration
✓ No remote script execution (curl|bash pattern is absent — curl POSTs to a local server only)
✓ No sensitive file access (~/.ssh, ~/.aws, .env)
✓ No persistence mechanisms (no cron, startup hooks, or backdoors)
✓ No C2 communication or external data exfiltration
✓ JSON workflow is a standard ComfyUI pipeline with no embedded malicious payloads
✓ The ComfyUI server target is explicitly 127.0.0.1 (localhost), indicating local-only operation