扫描报告
20 /100
Enterprise AI Assistant Bundle
Enterprise AI assistant with Feishu + OpenClaw integration for smart customer service, group chat, approval automation, and daily report generation
A legitimate enterprise Feishu bot bundle with minor documentation gaps: shell execution for pip installs and network access are not declared in SKILL.md, and dependencies lack version pinning, but no malicious behavior is present.
可以安装
Add explicit permission declarations for shell:WRITE (pip install via os.system) and network:READ (api.openclaw.ai/v1) to SKILL.md. Pin lark and openclaw to specific versions to reduce supply-chain risk.
安全发现 3 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | Shell execution not declared in SKILL.md 文档欺骗 | deploy.py:50 |
| 低危 | Unpinned dependencies lark and openclaw 供应链 | deploy.py:50 |
| 提示 | Network access not formally declared 文档欺骗 | bot.py:43 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 命令执行 | NONE | WRITE | ✗ 越权 | deploy.py:50 - os.system('pip install lark'); deploy.py:57 - os.system('pip inst… |
| 网络访问 | NONE | READ | ✗ 越权 | bot.py:43 - requests.post to api.openclaw.ai/v1; SKILL.md shows external URLs bu… |
| 文件系统 | NONE | WRITE | ✓ 一致 | deploy.py creates config.json and skills/ directory — directly relevant to deplo… |
| 环境变量 | NONE | READ | ✓ 一致 | bot.py:21 reads OPENCLAW_API_KEY from os.getenv — documented in SKILL.md as a se… |
4 项发现
中危 外部 URL 外部 URL
https://open.feishu.cn SKILL.md:30 中危 外部 URL 外部 URL
https://discord.gg/clawd SKILL.md:55 中危 外部 URL 外部 URL
https://api.openclaw.ai/v1 deploy.py:41 提示 邮箱 邮箱地址
[email protected] SKILL.md:54 目录结构
3 文件 · 7.6 KB · 255 行 Python 2f · 190L
Markdown 1f · 65L
├─
bot.py
Python
├─
deploy.py
Python
└─
SKILL.md
Markdown
依赖分析 4 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
lark | * | pip | 否 | Version not pinned — supply-chain risk |
openclaw | * | pip | 否 | Version not pinned — third-party package without version constraint |
flask | * | pip (implicit) | 否 | Used in bot.py but not explicitly listed; version not pinned |
requests | * | pip (implicit) | 否 | Used in bot.py for HTTP calls; version not pinned |
安全亮点
✓ No credential harvesting or environment variable iteration for theft
✓ No base64-encoded commands or obfuscated payloads
✓ No access to sensitive paths (~/.ssh, ~/.aws, .env)
✓ No C2 communication or data exfiltration
✓ No reverse shell or arbitrary code execution beyond documented pip install
✓ API key is read from environment variable (OPENCLAW_API_KEY) and not hardcoded or exfiltrated
✓ No hidden instructions in HTML comments or other stealth behavior
✓ Code is readable and straightforward — no anti-analysis techniques