扫描报告
20 /100
agent-kanban
OpenClaw Agent Dashboard - Bloomberg Terminal-style web interface for real-time monitoring of all Agent status, session history, and session file sizes.
Skill implements a legitimate local agent dashboard but contains a hardcoded Gateway token in config.js and misleading documentation claiming auto-token loading.
可以安装
Remove the hardcoded token from config.js, ensure it defaults to empty string, and fix SKILL.md to accurately reflect that config.local.js must be manually configured.
安全发现 4 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 中危 | Hardcoded Gateway token in config.js | assets/agent-kanban/config.js:24 |
| 低危 | SKILL.md misleading claim about auto-token loading | SKILL.md:37 |
| 低危 | config.local.js not gitignored | references/README.md:66 |
| 提示 | CORS allows wildcard origin | assets/agent-kanban/server.js:48 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | NONE | READ | ✓ 一致 | server.js reads openclaw.json and workspace-* directories for agent metadata and… |
| 网络访问 | NONE | READ | ✓ 一致 | server.js makes outbound POST requests to Gateway HTTP API at 127.0.0.1:18789 on… |
| 命令执行 | NONE | NONE | — | No child_process or shell invocation in server.js or index.html |
| 环境变量 | NONE | READ | ✓ 一致 | server.js reads HOME env var to resolve openclaw home directory |
6 项发现
中危 外部 URL 外部 URL
http://127.0.0.1:18789 SKILL.md:72 中危 外部 URL 外部 URL
https://registry.npmmirror.com/react/18/files/umd/react.production.min.js assets/agent-kanban/public/index.html:411 中危 外部 URL 外部 URL
https://registry.npmmirror.com/react-dom/18/files/umd/react-dom.production.min.js assets/agent-kanban/public/index.html:412 中危 外部 URL 外部 URL
https://api.dicebear.com/7.x/pixel-art/svg?seed=$ assets/agent-kanban/public/index.html:434 中危 外部 URL 外部 URL
https://img.shields.io/badge/style-Bloomberg%20Terminal-orange references/README.md:5 中危 外部 URL 外部 URL
http://127.0.0.1:18789/tools/invoke references/README.md:139 目录结构
6 文件 · 56.5 KB · 1863 行 HTML 1f · 1098L
Markdown 2f · 403L
JavaScript 2f · 350L
JSON 1f · 12L
├─
▾
assets
│ └─
▾
agent-kanban
│ ├─
▾
public
│ │ └─
index.html
HTML
│ ├─
config.js
JavaScript
│ ├─
package.json
JSON
│ └─
server.js
JavaScript
├─
▾
references
│ └─
README.md
Markdown
└─
SKILL.md
Markdown
依赖分析 1 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
express | ^4.18.2 | npm | 否 | Express 4.x with no specific version pinning |
安全亮点
✓ No shell execution or child_process usage anywhere in the codebase
✓ No base64 encoding, eval(), or dynamic code execution patterns detected
✓ No remote script download patterns (curl|bash, wget|sh) found
✓ No credential enumeration (no iteration over os.environ for sensitive keys)
✓ No access to ~/.ssh, ~/.aws, or other high-value sensitive paths
✓ No data exfiltration or external IP communication (all network traffic is local to 127.0.0.1)
✓ Frontend assets served locally; external CDN URLs are only for React libraries and avatar generation
✓ Express server binds to localhost by default, not exposed externally