扫描报告
18 /100
communityos-lite
Simple Telegram Bot management with LLM and knowledge base. Local-only, no external dependencies.
CommunityOS-Lite is a legitimate Telegram bot management tool with clear security documentation. No malicious behavior detected - all sensitive operations (subprocess, network, env access) are documented or necessary for core functionality.
可以安装
Accept for use. Consider enabling authentication via reverse proxy if exposing beyond localhost. Pin all dependency versions for reproducibility.
安全发现 3 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | Unpinned Dependencies | requirements.txt:1 |
| 提示 | Missing LLM Module | bot_engine/bot_instance.py:77 |
| 提示 | API Key Stored in Config | admin/app.py:680 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | WRITE | WRITE | ✓ 一致 | SKILL.md: Creates JSON configs, knowledge base files |
| 网络访问 | READ | READ | ✓ 一致 | SKILL.md: 'Outbound Network - Makes calls to Telegram API and LLM providers' |
| 命令执行 | WRITE | WRITE | ✓ 一致 | admin/app.py:1130 - subprocess.Popen starts telegram_runner.py |
| 环境变量 | READ | READ | ✓ 一致 | SKILL.md: Lists TELEGRAM_BOT_TOKEN, MINIMAX_API_KEY etc. |
6 项发现
中危 外部 URL 外部 URL
http://127.0.0.1:8877/lite SKILL.md:52 中危 外部 URL 外部 URL
https://api.example.com/news admin/app.py:142 中危 外部 URL 外部 URL
https://feeds.example.com/web3 admin/app.py:164 中危 外部 URL 外部 URL
https://api.telegram.org/bot admin/app.py:463 中危 外部 URL 外部 URL
https://your-domain/api/telegram/webhook/ admin/app.py:1208 中危 外部 URL 外部 URL
https://api.example.com/v1 admin/lite.html:167 目录结构
14 文件 · 107.4 KB · 2667 行 Python 6f · 1823L
HTML 3f · 554L
JSON 2f · 145L
Markdown 2f · 138L
Text 1f · 7L
├─
▾
admin
│ ├─
▾
templates
│ │ ├─
index.html
HTML
│ │ └─
login.html
HTML
│ ├─
app.py
Python
│ ├─
lite.html
HTML
│ └─
telegram_runner.py
Python
├─
▾
bot_engine
│ ├─
__init__.py
Python
│ ├─
bot_instance.py
Python
│ ├─
config_parser.py
Python
│ └─
manager.py
Python
├─
▾
config
│ └─
openclaw.json
JSON
├─
_meta.json
JSON
├─
README.md
Markdown
├─
requirements.txt
Text
└─
SKILL.md
Markdown
依赖分析 4 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
chromadb | 0.4.22 | pip | 是 | Known CVE-2024-3755 - upgrade to >=0.5.0 recommended |
requests | 2.31.0 | pip | 否 | Version pinned but no upper bound |
fastapi | 0.109.0 | pip | 否 | Version pinned but no upper bound |
uvicorn | 0.27.0 | pip | 否 | Version pinned but no upper bound |
安全亮点
✓ SKILL.md explicitly documents all security-relevant behaviors
✓ Local-only binding (127.0.0.1:8877) is enforced and documented
✓ No authentication bypass hidden from user - clearly warned in SKILL.md
✓ No obfuscation, base64 payloads, or reverse shell patterns
✓ No exfiltration of credentials to third-party endpoints
✓ API keys sourced from environment variables (not hardcoded)
✓ File operations are scoped to skill's working directory