扫描报告
5 /100
ai-news-pipeline
Self-contained Chinese and international AI news RSS capture and AI-enriched report generation workflow
A clean AI news RSS pipeline that collects feeds, generates AI-enriched reports, and writes outputs — all functionality matches documentation with no malicious indicators.
可以安装
Approve for deployment. No security concerns identified.
安全发现 2 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | base64 HTTP Basic Auth usage not declared in SKILL.md 文档欺骗 | scripts/collect_feeds.py:160 |
| 低危 | subprocess pipeline chaining not declared in SKILL.md 文档欺骗 | scripts/run_capture_only.py:27 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | WRITE | WRITE | ✓ 一致 | Scripts write to configurable workspace subdirectories (data/, reports/, state/,… |
| 网络访问 | READ | READ | ✓ 一致 | RSS feed collection via urllib (collect_feeds.py:fetch_feed) and ARK API calls (… |
| 命令执行 | NONE | WRITE | ✓ 一致 | Entrypoints use subprocess.run to chain scripts (run_capture_only.py:27, run_rep… |
| 环境变量 | NONE | READ | ✓ 一致 | os.environ.copy() passed to subprocess; ARK_API_KEY, ARK_API_BASE, ARK_MODEL, AR… |
| 技能调用 | NONE | NONE | — | No cross-skill invocation detected. |
| 剪贴板 | NONE | NONE | — | No clipboard access. |
| 浏览器 | NONE | NONE | — | No browser automation. |
| 数据库 | NONE | NONE | — | No database access. |
3 项发现
中危 外部 URL 外部 URL
http://www.w3.org/2005/Atom scripts/collect_feeds.py:87 中危 外部 URL 外部 URL
http://purl.org/rss/1.0/modules/content/ scripts/collect_feeds.py:89 中危 外部 URL 外部 URL
https://ark.cn-beijing.volces.com/api/v3 scripts/generate_company_report.py:36 目录结构
12 文件 · 86.5 KB · 2575 行 Python 8f · 2255L
Markdown 2f · 314L
YAML 1f · 4L
Text 1f · 2L
├─
▾
agents
│ └─
openai.yaml
YAML
├─
▾
references
│ └─
commands.md
Markdown
├─
▾
scripts
│ ├─
brief_writer.py
Python
│ ├─
collect_feeds.py
Python
│ ├─
generate_company_report.py
Python
│ ├─
generate_international_report.py
Python
│ ├─
requirements.txt
Text
│ ├─
run_capture_only.py
Python
│ ├─
run_full_workflow.py
Python
│ ├─
run_report_only.py
Python
│ └─
time_window.py
Python
└─
SKILL.md
Markdown
依赖分析 2 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
openpyxl | * | requirements.txt | 否 | Version not pinned — minor supply chain risk; recommend pinning to a specific version |
python-docx | * | requirements.txt | 否 | Version not pinned — minor supply chain risk; recommend pinning to a specific version |
安全亮点
✓ All network I/O is to documented, well-known endpoints (RSS feeds and the Volcengine ARK API)
✓ No sensitive paths accessed (no ~/.ssh, ~/.aws, .env, /etc/passwd, or similar)
✓ No credential harvesting — ARK_API_KEY is only used to authenticate to the Volcengine API for report generation
✓ No obfuscation, reverse shells, C2 communication, or data exfiltration
✓ No base64-encoded payloads executed in shell
✓ Dependencies are pinned (openpyxl, python-docx) and are standard, trusted packages
✓ No hidden instructions in comments or HTML
✓ Full environment variable set is passed to subprocess, not iterated for key harvesting
✓ Code is clean, readable, and purpose-built for the documented use case
✓ State deduplication prevents duplicate processing
✓ AI cache is cleared after each run (clear_summary_cache in finally block)