Scan Report
5 /100
虾说 (lobster-says)
AI 伴侣助手,通过 IM 渠道发送截图和定时消息
虾说 AI 伴侣技能,代码结构清晰,主要功能为通过 IM 渠道发送消息/截图和定时推送,无恶意行为。存在轻微越权(filesystem:READ 超出声明范围)但属于标准系统操作。
Safe to install
可安全使用。filesystem:READ 超权是轻微瑕疵,如需严格合规可要求开发者调整 allowed-tools 声明。
Findings 2 items
| Severity | Finding | Location |
|---|---|---|
| Low | filesystem:READ 未在 allowed-tools 中声明 | init-lobster.sh:42 |
| Info | Transcript 数据上传为设计功能 | digest-transcript.sh:165 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Shell | WRITE | WRITE | ✓ Aligned | 通过 subprocess 执行 openclaw CLI 命令,符合声明 |
| Filesystem | WRITE | READ+WRITE | ✓ Aligned | init-lobster.sh:42 读取 ~/.openclaw/openclaw.json; digest-transcript.sh 读取 session… |
| Network | NONE | WRITE | ✓ Aligned | 所有脚本通过 HTTPS API (nixiashuo.com) 进行通信,用于发送消息和获取 studio links |
5 findings
Medium External URL 外部 URL
https://nixiashuo.com/api/memory/ingest SKILL.md:164 Medium External URL 外部 URL
https://nixiashuo.com/api/lobster/ SKILL.md:228 Medium External URL 外部 URL
https://nixiashuo.com/api/generate SKILL.md:232 Medium External URL 外部 URL
https://nixiashuo.com digest-transcript.sh:43 Info Email 邮箱地址
[email protected] README.md:139 File Tree
9 files · 100.0 KB · 2860 lines Shell 6f · 2341L
Markdown 2f · 485L
JSON 1f · 34L
├─
digest-transcript.sh
Shell
├─
init-lobster.sh
Shell
├─
openclaw.json
JSON
├─
push-scheduled-message.sh
Shell
├─
README.md
Markdown
├─
send-current-screenshot.sh
Shell
├─
send-studio-link.sh
Shell
├─
setup-cron.sh
Shell
└─
SKILL.md
Markdown
Security Positives
✓ 代码结构清晰,使用标准 Shell + Python 实践
✓ SKILL.md 文档完整,声明与实现基本一致
✓ 所有网络请求使用 HTTPS,无裸 IP 或可疑 URL
✓ 凭证仅用于内部服务通信,无外泄风险
✓ 使用 heredoc 嵌入 Python 代码,避免 eval 注入
✓ 敏感路径访问 (~/.openclaw) 符合工具设计意图