扫描报告
5 /100
feishu-voice
飞书语音消息收发:接收语音自动转文字(飞书原生 Transcript + Whisper 降级),回复语音由 MiniMax T2A 合成后发送
Legitimate Feishu voice message skill with properly documented subprocess usage and API calls; no hidden functionality or security concerns identified.
可以安装
No action needed. Consider pinning the requests library version for better supply chain hygiene.
安全发现 1 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | Unpinned requests dependency 供应链 | scripts/send_voice.py:7 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | WRITE | WRITE | ✓ 一致 | tempfile usage in send_voice.py:20 |
| 命令执行 | WRITE | WRITE | ✓ 一致 | subprocess.run ffmpeg in send_voice.py:42 |
| 环境变量 | READ | READ | ✓ 一致 | MINIMAX_API_KEY read in send_voice.py:24 |
| 网络访问 | READ | READ | ✓ 一致 | POST to api.minimaxi.com in send_voice.py:35 |
1 项发现
中危 外部 URL 外部 URL
https://api.minimaxi.com/v1/t2a_v2 SKILL.md:55 目录结构
2 文件 · 5.4 KB · 170 行 Markdown 1f · 108L
Python 1f · 62L
├─
▾
scripts
│ └─
send_voice.py
Python
└─
SKILL.md
Markdown
依赖分析 1 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
requests | * | pip | 否 | Version not pinned |
安全亮点
✓ All subprocess execution (ffmpeg) is explicitly documented in SKILL.md
✓ API key access is explicitly declared and scoped to MINIMAX_API_KEY only
✓ No credential exfiltration or data theft observed
✓ No obfuscation techniques (base64, eval, atob) detected
✓ Network calls use domain names, not direct IP addresses
✓ No access to sensitive paths (~/.ssh, ~/.aws, .env)
✓ Code matches documentation - no doc-to-code mismatch
✓ Legitimate audio processing workflow: TTS → format conversion → send