Scan Report
This report was generated in Chinese. Some content may be in Chinese.
5 /100
felo-livedoc
Felo LiveDoc API 客户端,用于管理知识库和语义检索
这是一个合法的 Felo LiveDoc API 客户端,代码行为与文档声明完全一致,无恶意行为发现。
Safe to install
可直接使用。建议用户从官方 felo.ai 获取真实 API 密钥,不要使用文档中的示例密钥。
Findings 1 items
| Severity | Finding | Location |
|---|---|---|
| Info | README中的示例凭证文本 Doc Mismatch | README.md:38 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Shell | WRITE | WRITE | ✓ Aligned | SKILL.md声明使用Bash执行node脚本,代码仅使用node命令无管道 |
| Filesystem | READ | READ | ✓ Aligned | 仅在upload命令时读取用户指定的文件用于上传 |
| Network | READ | READ | ✓ Aligned | 仅与felo.ai官方API通信,无外部IP请求 |
1 High 2 findings
High API Key 疑似硬编码凭证
API_KEY="your-api-key-here" README.md:38 Medium External URL 外部 URL
https://openapi.felo.ai scripts/run_livedoc.mjs:6 File Tree
4 files · 23.9 KB · 636 lines JavaScript 1f · 391L
Markdown 2f · 233L
JSON 1f · 12L
├─
▾
scripts
│ └─
run_livedoc.mjs
JavaScript
├─
clawhub.json
JSON
├─
README.md
Markdown
└─
SKILL.md
Markdown
Dependencies 1 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
Node.js标准库 | 内置 | builtin | No | 仅使用fs/promises、path、fetch等内置模块 |
Security Positives
✓ 代码结构清晰,职责单一(纯API客户端)
✓ 文档与代码行为完全一致,无阴影功能
✓ 仅使用标准Node.js内置模块,无外部依赖风险
✓ 实现了请求重试和超时机制
✓ 所有网络请求仅指向官方API端点 https://openapi.felo.ai
✓ 文件上传仅读取用户明确指定的路径
✓ 无shell管道、eval、base64解码等危险操作
✓ 无环境变量遍历或敏感路径访问