扫描报告
12 /100
media-cluster
Crawls Chinese social media platforms (Xiaohongshu, Douyin, Weibo, Bilibili, etc.) by keyword, generates Markdown reports, and produces voice summaries via TTS API
A legitimate social media crawling skill that scrapes Chinese platforms, generates reports, and synthesizes voice summaries via a documented third-party TTS API, with no hidden malicious behavior detected.
可以安装
Approve for use. Monitor `senseaudio.cn` external API calls for unexpected data exfiltration; pin pip dependencies in setup_env.sh before production deployment.
安全发现 3 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | Unpinned pip dependencies 供应链 | scripts/setup_env.sh:22 |
| 低危 | Unverified remote Git clone 供应链 | scripts/ensure_mediacrawler.sh:16 |
| 低危 | External API call to senseaudio.cn without data flow audit 数据外泄 | scripts/summarize_and_voice.py:138 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | READ | READ | ✓ 一致 | SKILL.md declares reading data files from MediaCrawler/data/; scripts/summarize_… |
| 文件系统 | WRITE | WRITE | ✓ 一致 | SKILL.md declares writing reports and MP3 files; scripts/summarize_and_voice.py:… |
| 命令执行 | WRITE | WRITE | ✓ 一致 | SKILL.md declares shell script execution for conda/pip/playwright; setup_env.sh … |
| 网络访问 | READ | READ | ✓ 一致 | SKILL.md declares senseaudio.cn TTS API calls; summarize_and_voice.py:25 sets AP… |
| 环境变量 | READ | READ | ✓ 一致 | SKILL.md declares reading SENSEAUDIO_API_KEY env var; summarize_and_voice.py:228… |
5 项发现
中危 外部 URL 外部 URL
https://senseaudio.cn/platform/api-key SKILL.md:35 中危 外部 URL 外部 URL
https://senseaudio.cn/docs/ SKILL.md:119 中危 外部 URL 外部 URL
https://www.xiaohongshu.com/explore/... SKILL.md:157 中危 外部 URL 外部 URL
https://senseaudio.cn/docs/text_to_speech_api SKILL.md:197 中危 外部 URL 外部 URL
https://api.senseaudio.cn scripts/summarize_and_voice.py:25 目录结构
4 文件 · 22.1 KB · 554 行 Python 1f · 303L
Markdown 1f · 197L
Shell 2f · 54L
├─
▾
scripts
│ ├─
ensure_mediacrawler.sh
Shell
│ ├─
setup_env.sh
Shell
│ └─
summarize_and_voice.py
Python
└─
SKILL.md
Markdown
依赖分析 2 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
requests | * | pip | 否 | Imported in summarize_and_voice.py but installed with unpinned version in setup_env.sh |
MediaCrawler requirements.txt | unpinned | pip | 否 | Cloned from GitHub and installed via pip install -r requirements.txt without version pins |
安全亮点
✓ No credential harvesting — API key is only read from environment and used only for TTS authentication
✓ No sensitive path access — no access to ~/.ssh, ~/.aws, .env, or similar credential paths
✓ No obfuscation — all code is plain text, no base64, eval, or encoded payloads
✓ No reverse shell or C2 communication — network calls only go to documented senseaudio.cn API
✓ Subprocess usage is documented and limited to audio playback and legitimate CLI tools (afplay, paplay, aplay, ffplay)
✓ Report generation reads only from the declared data directory and produces output locally
✓ No hidden functionality — all behavior matches the SKILL.md documentation