Scan Report
20 /100
fco-monitor
FC Online官网监控Skill - 自动监控FC Online官网活动,发现新活动时及时通知
FC Online游戏官网监控工具,代码功能与声明基本一致,pre-scan标记的base64解码仅用于数据解析非恶意利用,存在轻微权限声明宽泛和install.sh权限提升问题但整体风险可控。
Safe to install
可安全使用。建议:1) SKILL.md中补充声明shell和filesystem:WRITE权限需求;2) 考虑将install.sh中的系统依赖安装和systemd服务创建改为可选或明确提示需要管理员权限。
Findings 4 items
| Severity | Finding | Location |
|---|---|---|
| Medium | Base64解码使用 | fco-monitor.sh:202 |
| Medium | 安装脚本权限提升尝试 | install.sh:26 |
| Low | 权限声明缺失 | SKILL.md:1 |
| Info | 第三方依赖无锁定 | package.json:1 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Network | READ | READ | ✓ Aligned | SKILL.md声明访问fco.qq.com,代码中curl访问该URL |
| Filesystem | NONE | WRITE | ✗ Violation | fco-monitor.sh:35 写入/tmp/目录;install.sh:89 写入/root/.openclaw/目录 |
| Shell | NONE | WRITE | ✗ Violation | openclaw-integration.js:20 使用execSync执行shell命令 |
| Environment | NONE | NONE | — | 无环境变量访问 |
1 Critical 21 findings
Critical Encoded Execution Base64 编码执行(代码混淆)
base64 --decode fco-monitor.sh:202 Medium External URL 外部 URL
https://fco.qq.com/main.shtml EXAMPLES.md:57 Medium External URL 外部 URL
https://fco.qq.com/... EXAMPLES.md:114 Medium External URL 外部 URL
https://discord.com/api/webhooks/... EXAMPLES.md:208 Medium External URL 外部 URL
https://clawhub.com/submit PUBLISH_TO_SKILLHUB.md:83 Medium External URL 外部 URL
https://clawhub.com PUBLISH_TO_SKILLHUB.md:164 Medium External URL 外部 URL
https://clawhub.com/docs/submit PUBLISH_TO_SKILLHUB.md:165 Medium External URL 外部 URL
https://community.openclaw.ai PUBLISH_TO_SKILLHUB.md:166 Medium External URL 外部 URL
https://docs.openclaw.ai PUBLISH_TO_SKILLHUB.md:169 Medium External URL 外部 URL
https://discord.gg/clawd PUBLISH_TO_SKILLHUB.md:171 Medium External URL 外部 URL
https://docs.openclaw.ai/skills/development PUBLISH_TO_SKILLHUB.md:174 Medium External URL 外部 URL
https://docs.openclaw.ai/api PUBLISH_TO_SKILLHUB.md:176 Medium External URL 外部 URL
https://img.shields.io/badge/OpenClaw-Skill-blue.svg README.md:3 Medium External URL 外部 URL
https://img.shields.io/badge/version-1.0.0-green.svg README.md:4 Medium External URL 外部 URL
https://clawhub.com/skills/fco-monitor README.md:4 Medium External URL 外部 URL
https://img.shields.io/badge/license-MIT-blue.svg README.md:5 Medium External URL 外部 URL
https://fco.qq.com README.md:89 Medium External URL 外部 URL
https://api.star-history.com/svg?repos=openclaw/skill-fco-monitor&type=Date README.md:146 Medium External URL 外部 URL
https://star-history.com/#openclaw/skill-fco-monitor&Date README.md:146 Medium External URL 外部 URL
https://fco.qq.com/webplat/info/news_version3/33965/34617/38284/m22646/list_1.shtml install.sh:142 Medium External URL 外部 URL
https://fco.qq.com/main.shtml检查最新活动,如果有新活动则总结关键信息通知用户。 openclaw-integration.js:103 File Tree
9 files · 47.4 KB · 1864 lines Markdown 5f · 926L
Shell 2f · 626L
JavaScript 1f · 259L
JSON 1f · 53L
├─
EXAMPLES.md
Markdown
├─
fco-monitor.sh
Shell
├─
install.sh
Shell
├─
openclaw-integration.js
JavaScript
├─
package.json
JSON
├─
PUBLISH_TO_SKILLHUB.md
Markdown
├─
QUICK_START.md
Markdown
├─
README.md
Markdown
└─
SKILL.md
Markdown
Dependencies 3 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
curl | system | system | No | 系统工具,通过install.sh检查安装 |
jq | system | system | No | 系统工具,通过install.sh检查安装 |
node | >=14.0.0 | system | No | 运行时环境 |
Security Positives
✓ 代码功能单一明确:仅用于监控FC Online游戏官网活动
✓ 无凭证收割行为
✓ 无数据外传行为
✓ 无远程代码下载执行
✓ 网络请求目标明确(fco.qq.com)
✓ pre-scan标记的base64实为合法数据解析用途