扫描报告
25 /100
tronlink-skills
AI Agent skills for TronLink wallet - wallet management, token queries, DEX swap quotes, energy/bandwidth resource management, and TRX staking on the TRON network
A legitimate read-only TRON blockchain querying skill with no malicious behavior, but flagged for curl|sh installation patterns documented in README.
可以安装
The skill is safe for read-only blockchain queries. Avoid the curl|sh installation pattern; clone the repo and run install.sh locally instead.
安全发现 3 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 中危 | curl|sh installation pattern documented | README.md:16 |
| 低危 | Non-standard Sun.io router domain | scripts/tron_api.mjs:35 |
| 提示 | Node.js subprocess in MCP server | scripts/mcp_server.mjs:183 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | NONE | NONE | — | All operations are HTTP API calls; no local file access in tron_api.mjs |
| 网络访问 | READ | READ | ✓ 一致 | Only GET/POST to public TronGrid, TronScan, CoinGecko APIs |
| 命令执行 | NONE | NONE | — | mcp_server.mjs uses execFile only for spawning node process - necessary for MCP … |
| 环境变量 | READ | READ | ✓ 一致 | Reads TRONGRID_API_KEY, TRON_NETWORK - declared in docs |
| 技能调用 | WRITE | WRITE | ✓ 一致 | Routes to sub-skills (tron-wallet, tron-token, etc.) - declared in SKILL.md |
2 严重 21 项发现
严重 危险命令 危险 Shell 命令
curl -sSL https://raw.githubusercontent.com/TronLink/tronlink-skills/main/install.sh | sh README.md:16 严重 危险命令 危险 Shell 命令
curl -sSL https://raw.githubusercontent.com/TronLink/tronlink-skills/main/uninstall.sh | sh README.md:28 中危 外部 URL 外部 URL
https://www.trongrid.io/dashboard README.md:106 中危 外部 URL 外部 URL
https://api.trongrid.io README.md:120 中危 外部 URL 外部 URL
https://api.shasta.trongrid.io README.md:121 中危 外部 URL 外部 URL
https://nile.trongrid.io README.md:122 中危 外部 URL 外部 URL
https://trongrid.io SKILL.md:8 中危 外部 URL 外部 URL
https://www.trongrid.io/dashboard. docs/claude-integration-guide.md:207 中危 外部 URL 外部 URL
https://nodejs.org install.sh:271 中危 外部 URL 外部 URL
https://paulmillr.com/funding/ package-lock.json:55 中危 外部 URL 外部 URL
https://www.buymeacoffee.com/ricmoo package-lock.json:281 中危 外部 URL 外部 URL
https://apilist.tronscanapi.com/api scripts/tron_api.mjs:30 中危 外部 URL 外部 URL
https://docs.sun.io/developers/swap/smart-router scripts/tron_api.mjs:35 中危 外部 URL 外部 URL
https://rot.endjgfsv.link scripts/tron_api.mjs:37 中危 外部 URL 外部 URL
https://tnrouter.endjgfsv.link scripts/tron_api.mjs:38 中危 外部 URL 外部 URL
https://api.coingecko.com/api/v3 scripts/tron_api.mjs:43 中危 外部 URL 外部 URL
https://tronscan.org/#/token20/$ scripts/tron_api.mjs:594 中危 外部 URL 外部 URL
https://sunswap.com scripts/tron_api.mjs:766 中危 外部 URL 外部 URL
https://tronscan.org/#/transaction/$ scripts/tron_api.mjs:810 中危 外部 URL 外部 URL
https://tronnrg.com scripts/tron_api.mjs:909 中危 外部 URL 外部 URL
https://justlend.org scripts/tron_api.mjs:910 目录结构
19 文件 · 150.7 KB · 4345 行 JavaScript 2f · 1703L
Markdown 11f · 1432L
JSON 3f · 660L
Shell 3f · 550L
├─
▾
docs
│ ├─
claude-integration-guide.md
Markdown
│ ├─
integration-guide.sh
Shell
│ ├─
resource-model.md
Markdown
│ └─
staking-guide.md
Markdown
├─
▾
scripts
│ ├─
mcp_server.mjs
JavaScript
│ └─
tron_api.mjs
JavaScript
├─
▾
skills
│ ├─
▾
tron-market
│ │ └─
SKILL.md
Markdown
│ ├─
▾
tron-resource
│ │ └─
SKILL.md
Markdown
│ ├─
▾
tron-staking
│ │ └─
SKILL.md
Markdown
│ ├─
▾
tron-swap
│ │ └─
SKILL.md
Markdown
│ ├─
▾
tron-token
│ │ └─
SKILL.md
Markdown
│ └─
▾
tron-wallet
│ └─
SKILL.md
Markdown
├─
_meta.json
JSON
├─
install.sh
Shell
├─
package-lock.json
JSON
├─
package.json
JSON
├─
README.md
Markdown
├─
SKILL.md
Markdown
└─
uninstall.sh
Shell
依赖分析 1 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
none | N/A | native | 否 | Zero external dependencies - uses only Node.js native modules (fetch, crypto, child_process) |
安全亮点
✓ Zero npm dependencies - uses only native Node.js 18+ fetch and crypto
✓ No credential harvesting or exfiltration
✓ No sensitive file access (~/.ssh, ~/.aws, .env)
✓ No base64-encoded payloads or eval() calls
✓ Read-only operations - no private key handling or transaction signing
✓ Uses only public blockchain APIs (TronGrid, TronScan, CoinGecko)
✓ Comprehensive SKILL.md documentation matches implementation
✓ Well-structured code with proper error handling