Scan Report
5 /100
valuescan-skill
ValueScan 加密货币主力资金流分析工具
ValueScan 加密货币资金分析工具,代码行为与文档完全一致,无恶意行为,仅使用Node.js内置模块进行API签名和数据请求。
Safe to install
可直接使用。无需额外安全限制。
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | READ | READ | ✓ Aligned | vs_api_sign.js:24 读取~/.openclaw/credentials/valuescan.json |
| Network | READ | READ | ✓ Aligned | vs_api_sign.js:62 仅向api.valuescan.io发送POST请求 |
| Shell | NONE | NONE | — | 无shell调用 |
8 findings
Medium External URL 外部 URL
https://www.valuescan.ai SKILL.md:8 Medium External URL 外部 URL
https://api.valuescan.io/api/open/v1 SKILL.md:158 Medium External URL 外部 URL
https://www.valuescan.ai/dev-portal/home/ SKILL.md:170 Medium External URL 外部 URL
https://claw.valuescan.io SKILL.md:284 Medium Wallet Address 加密货币钱包地址
3M219KR5vEneNb47ewrPfWyb5jQ2DjxRP6 references/chain/balance-trend.json:27 Medium Wallet Address 加密货币钱包地址
34xp4vRoCGJym3xR7yCVPFHoCNxv4Twseo references/chain/holders.json:52 Medium External URL 外部 URL
https://api.valuescan.io script/sdk/vs_api_sign.js:11 Info Email 邮箱地址
[email protected] SKILL.md:18 File Tree
30 files · 105.0 KB · 2047 lines JSON 27f · 1599L
Markdown 2f · 329L
JavaScript 1f · 119L
├─
▾
references
│ ├─
▾
ai
│ │ ├─
chance-coin-list.json
JSON
│ │ ├─
chance-coin-messages.json
JSON
│ │ ├─
funds-coin-list.json
JSON
│ │ ├─
funds-coin-messages.json
JSON
│ │ ├─
risk-coin-list.json
JSON
│ │ └─
risk-coin-messages.json
JSON
│ ├─
▾
base
│ │ ├─
kline.json
JSON
│ │ ├─
token-detail.json
⚠
JSON
│ │ └─
token-list.json
⚠
JSON
│ ├─
▾
category
│ │ ├─
category-list.json
JSON
│ │ └─
category-tokens.json
⚠
JSON
│ ├─
▾
chain
│ │ ├─
balance-trend.json
JSON
│ │ ├─
hold-trend.json
JSON
│ │ ├─
holders.json
JSON
│ │ ├─
large-trade.json
JSON
│ │ ├─
profit-loss-trend.json
JSON
│ │ └─
trade-count-trend.json
JSON
│ ├─
▾
fund
│ │ ├─
coin-flow.json
JSON
│ │ ├─
cost.json
JSON
│ │ ├─
fund-snapshot.json
JSON
│ │ ├─
marketcap-ratio.json
JSON
│ │ └─
realtime-fund.json
JSON
│ ├─
▾
indicator
│ │ ├─
dense-area.json
JSON
│ │ ├─
price-market.json
JSON
│ │ └─
sentiment.json
JSON
│ └─
enums.json
JSON
├─
▾
script
│ └─
▾
sdk
│ ├─
README.md
Markdown
│ └─
vs_api_sign.js
JavaScript
├─
_meta.json
JSON
└─
SKILL.md
Markdown
Dependencies 5 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
crypto | 内置 | Node.js标准库 | No | 无外部依赖 |
fs | 内置 | Node.js标准库 | No | 仅读取凭证文件 |
path | 内置 | Node.js标准库 | No | 无外部依赖 |
os | 内置 | Node.js标准库 | No | 获取用户目录路径 |
url | 内置 | Node.js标准库 | No | URL拼接 |
Security Positives
✓ 仅使用Node.js内置模块(crypto/fs/path/os/url),无外部依赖风险
✓ 代码行为与文档描述完全一致,无阴影功能
✓ 凭证仅用于API签名,不会外传
✓ 明确声明Base URL为https://api.valuescan.io,网络目标可追溯
✓ HMAC-SHA256签名规范,凭证不在请求体中明文传输
✓ 所有references/文件均为接口定义JSON,无执行代码