扫描报告
25 /100
openclaw-trends
Fetch and aggregate OpenClaw-related content from across the internet
Legitimate OpenClaw trends fetcher with a critical hardcoded API key vulnerability but no malicious behavior detected.
可以安装
Replace hardcoded YouTube API key with environment variable fallback only; the key should be provided externally, not embedded in source code.
安全发现 1 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 严重 | Hardcoded YouTube API Key 凭证窃取 | scripts/fetch_trends.py:26 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | NONE | NONE | — | No file read/write operations in code |
| 网络访问 | READ | READ | ✓ 一致 | urllib requests to YouTube API (line 55) and DuckDuckGo (line 174) |
| 命令执行 | WRITE | WRITE | ✓ 一致 | subprocess.run(['gh', '--version'], ...) at line 91 - documented in SKILL.md |
| 环境变量 | READ | READ | ✓ 一致 | os.environ.get('YOUTUBE_API_KEY', ...) at line 26 |
| 技能调用 | NONE | NONE | — | No skill invocation detected |
| 剪贴板 | NONE | NONE | — | No clipboard access |
| 浏览器 | NONE | NONE | — | No browser automation |
| 数据库 | NONE | NONE | — | No database access |
1 严重 3 项发现
严重 API 密钥 硬编码 API 密钥
AIzaSyC-4zq2k2ohAwtQM7lF8jPct_QhzpENG88 scripts/fetch_trends.py:26 中危 外部 URL 外部 URL
https://youtube.com/watch?v= scripts/fetch_trends.py:78 中危 外部 URL 外部 URL
https://html.duckduckgo.com/html/?q= scripts/fetch_trends.py:174 目录结构
2 文件 · 10.2 KB · 313 行 Python 1f · 252L
Markdown 1f · 61L
├─
▾
scripts
│ └─
fetch_trends.py
Python
└─
SKILL.md
Markdown
依赖分析 3 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
urllib | stdlib | Python | 否 | Standard library - no external dependency risk |
json | stdlib | Python | 否 | Standard library |
datetime | stdlib | Python | 否 | Standard library |
安全亮点
✓ All functionality is documented in SKILL.md - no hidden behavior
✓ No base64 encoding, obfuscation, or anti-analysis techniques
✓ No credential harvesting beyond its own legitimate API key
✓ No data exfiltration or C2 communication patterns
✓ No attempts to access sensitive paths (~/.ssh, ~/.aws, .env)
✓ subprocess usage limited to documented gh CLI tool
✓ No cron/job persistence mechanisms introduced
✓ HTTP requests limited to legitimate trend aggregation services