扫描报告
5 /100
crustacean-email-gateway
Register an OpenClaw identity with Crustacean Email Gateway, recover lost bearer tokens, manage mailbox/inbox/outbox, update message status, configure forwarding, and send outbound email through the API.
Legitimate email gateway skill for OpenClaw/Crustacean with no malicious behavior; minor doc gap around openssl subprocess but functionally transparent.
可以安装
Approve for use. Consider documenting the openssl subprocess dependency in SKILL.md for completeness.
安全发现 1 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | Subprocess/openssl not declared in SKILL.md capabilities 文档欺骗 | scripts/common.py:118 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | READ | READ | ✓ 一致 | common.py reads ~/.openclaw/identity/device.json and ~/.crustacean-email/token.j… |
| 文件系统 | NONE | WRITE | ✓ 一致 | common.py save_token() writes token JSON to CRUSTACEAN_TOKEN_PATH; declared in S… |
| 网络访问 | READ | WRITE | ✓ 一致 | All API calls via urllib (POST /register, /recover, /send, GET /mailbox, /inbox,… |
| 命令执行 | NONE | WRITE | ✓ 一致 | common.py line 118: subprocess.run(['openssl', 'dgst', '-sha256', '-sign', key_p… |
| 环境变量 | NONE | READ | ✓ 一致 | common.py reads CRUSTACEAN_API_BASE, OPENCLAW_IDENTITY_PATH, CRUSTACEAN_TOKEN_PA… |
1 项发现
中危 外部 URL 外部 URL
https://api.crustacean.email/api/v1 README.md:43 目录结构
14 文件 · 45.1 KB · 1395 行 Python 9f · 828L
Markdown 4f · 564L
YAML 1f · 3L
├─
▾
agents
│ └─
openai.yaml
YAML
├─
▾
references
│ ├─
api.md
Markdown
│ └─
examples.md
Markdown
├─
▾
scripts
│ ├─
common.py
Python
│ ├─
configure_forwarding.py
Python
│ ├─
get_inbox.py
Python
│ ├─
get_mailbox.py
Python
│ ├─
get_outbox.py
Python
│ ├─
recover_token.py
⚠
Python
│ ├─
register_mailbox.py
Python
│ ├─
send_message.py
Python
│ └─
update_message_status.py
Python
├─
README.md
Markdown
└─
SKILL.md
Markdown
依赖分析 1 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
python-standard-library | built-in | stdlib | 否 | Only stdlib used: argparse, base64, hashlib, json, os, pathlib, subprocess, sys, tempfile, urllib — no third-party packages |
安全亮点
✓ All network requests target a single documented domain: api.crustacean.email
✓ No credential harvesting from os.environ — only skill-specific env vars (CRUSTACEAN_API_BASE, OPENCLAW_IDENTITY_PATH, CRUSTACEAN_TOKEN_PATH)
✓ No access to sensitive paths (~/.ssh, ~/.aws/credentials, .env, etc.)
✓ No base64-encoded execution, no eval(), no obfuscation
✓ No reverse shell, C2 communication, or data exfiltration to third-party endpoints
✓ subprocess used only for legitimate cryptographic signing (openssl dgst), not for arbitrary command execution
✓ PoW + signature challenge-response provides cryptographic proof of identity; tokens stored locally, not exfiltrated
✓ Well-documented API contract with explicit rate limits and clear behavior rules
✓ No external dependencies with unpinned versions — only Python standard library used