扫描报告
52 /100
edge
On-chain trading data and order management via MCP server. Search tokens, inspect pairs, screen for gems, analyze wallets, place limit orders, subscribe to price alerts.
The skill spawns an external MCP server via npx with an API key, creating opaque code execution that is not inspectable, with undeclared shell execution and indirect credential exposure.
谨慎使用
Replace the MCP spawn approach with a direct, auditable HTTP-based integration. If MCP is required, use a locally vendored, pinned binary rather than npx pull from npm. Pass the API key only to specific API calls, not as a startup argument to a spawned server.
攻击链 4 步
◎
入口 User installs and configures the 'edge' skill, providing their Edge Trade API key
SKILL.md:33⬡
提权 Skill spawns an external MCP server via 'npx -y @edgedottrade/mcp' with the API key as a startup argument, executing arbitrary code from npm
SKILL.md:28⬡
提权 The opaque MCP server receives the full API key and gains access to trade, portfolio, and alert capabilities without isolation
SKILL.md:35◉
影响 MCP server can make arbitrary API calls on behalf of the user (trading, withdrawals) or exfiltrate the API key via its network access
SKILL.md:29安全发现 5 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 高危 | Undeclared shell execution via npx spawn | SKILL.md:28 |
| 高危 | API key passed to opaque external binary | SKILL.md:35 |
| 中危 | No version pinning on external MCP package | SKILL.md:29 |
| 中危 | Incomplete network activity disclosure | SKILL.md:15 |
| 中危 | MCP spawn grants effectively unbounded capability escalation | SKILL.md:11 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | NONE | NONE | — | SKILL.md declares no filesystem access. No filesystem operations detected. |
| 网络访问 | READ (outbound) | READ | ✓ 一致 | SKILL.md declares 'network: outbound' but the MCP server's actual outbound traff… |
| 命令执行 | NONE | WRITE | ✗ 越权 | SKILL.md: command: npx. The skill executes 'npx -y @edgedottrade/mcp --api-key $… |
| 技能调用 | NONE | WRITE | ✗ 越权 | SKILL.md: mcp: spawn. The skill spawns a full MCP server process, granting it al… |
| 环境变量 | NONE | READ | ✗ 越权 | The skill accesses $API_KEY from the environment and passes it as an argument to… |
| 剪贴板 | NONE | NONE | — | No clipboard access detected. |
| 浏览器 | NONE | NONE | — | No browser access detected. |
| 数据库 | NONE | NONE | — | No database access detected. |
1 项发现
中危 外部 URL 外部 URL
https://docs.trade.edge/agents SKILL.md:26 目录结构
2 文件 · 1.6 KB · 48 行 Markdown 1f · 26L
YAML 1f · 22L
├─
SKILL.md
Markdown
└─
skill.yaml
YAML
依赖分析 1 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
@edgedottrade/mcp | * | npm (via npx) | 否 | No version pinned. Pulled from npm at runtime via npx -y. Not vendored or audited. |
安全亮点
✓ The skill is for a legitimate, documented use case (crypto trading data) with no evidence of reverse shell, C2, or direct data theft code.
✓ SKILL.md documents tool capabilities clearly for the visible surface (search, inspect, screen, portfolio, trade, alerts).
✓ The MCP server is named and points to a declared GitHub repository, providing a traceable source.
✓ API key is marked as secret:true in the config schema.
✓ No base64-encoded payloads, eval chains, or direct IP network requests found in the skill definition itself.