扫描报告
5 /100
invoice-verification-service
发票服务后端 v4 plugin 接口:key 初始化、额度查询、额度流水查询、发票文本或图片查验
A legitimate invoice verification service skill that calls backend v4 plugin APIs to init keys, query quota/ledger, and verify invoices, with no malicious behavior detected.
可以安装
This skill is safe to use. No actionable security concerns.
安全发现 2 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | Undeclared network access in tool metadata | SKILL.md:1 |
| 低危 | Config file writeback not in tool metadata | scripts/invoice_service.js:64 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 命令执行 | WRITE | WRITE | ✓ 一致 | SKILL.md:metadata.tools=['shell','read_file']; scripts/invoice_service.js is inv… |
| 文件系统 | READ | WRITE | ✓ 一致 | scripts/invoice_service.js:49-52 reads config files; line 64 fs.writeFileSync pe… |
| 网络访问 | NONE | READ | ✓ 一致 | scripts/invoice_service.js:79-89 calls backend API endpoints (key/init, quota, l… |
2 项发现
中危 外部 URL 外部 URL
http://192.168.154.76:18888 README.md:15 中危 外部 URL 外部 URL
http://127.0.0.1:8080 scripts/invoice_service.js:9 目录结构
4 文件 · 26.5 KB · 906 行 JavaScript 1f · 709L
Markdown 2f · 190L
YAML 1f · 7L
├─
▾
agents
│ └─
openai.yaml
YAML
├─
▾
scripts
│ └─
invoice_service.js
JavaScript
├─
README.md
Markdown
└─
SKILL.md
Markdown
安全亮点
✓ No subprocess/spawn calls in the script — the Node.js script is the primary execution target
✓ No credential harvesting from ~/.ssh, ~/.aws, .env, or other sensitive paths
✓ No base64-encoded payloads piped to shell, no eval(), no obfuscation
✓ No exfiltration of credentials — appKey and cipherKey are stored locally only
✓ No curl|bash or wget|sh remote script execution patterns
✓ No hidden instructions in HTML comments or strings
✓ Uses native Node.js fetch API for HTTP calls with proper error handling
✓ Validates image mime types and size limits (max 2MB, PNG/JPEG only)
✓ AppKey is masked in output (maskAppKey function shows only first 8 + last 4 chars)
✓ Legacy config fallback is read-only and only merges into current config
✓ Cipher key and device fingerprint are opaque identifiers, not user credentials
✓ Supports auto-retry with clientInstanceId rotation on INVALID_KEY — benign resilience behavior