扫描报告
0 /100
datatk-quote-skill
Real-time stock market data via QuoteNode API. Query quotes, K-lines, tick trades, Level-2 depth, and trading calendars for US/HK/CN markets.
The datatk-quote-skill is a legitimate market-data API wrapper with no malicious behavior, strong security controls, and accurate documentation.
可以安装
This skill is safe to use. The script enforces HTTPS, domain allowlisting, and path validation. No action required.
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | NONE | NONE | — | No filesystem access in scripts/request.mjs |
| 网络访问 | READ | READ | ✓ 一致 | Only POST requests to configured API endpoint with X-API-KEY header; HTTPS enfor… |
| 命令执行 | NONE | NONE | — | No shell execution found |
| 环境变量 | NONE | NONE | — | No environment variable access |
| 技能调用 | NONE | NONE | — | No cross-skill invocation |
| 剪贴板 | NONE | NONE | — | No clipboard access |
| 浏览器 | NONE | NONE | — | No browser automation |
| 数据库 | NONE | NONE | — | No database access |
2 项发现
中危 外部 URL 外部 URL
https://www.datatk.com/service SKILL.md:44 中危 外部 URL 外部 URL
https://your-endpoint.com env.example.json:2 目录结构
7 文件 · 22.6 KB · 763 行 Markdown 5f · 576L
JavaScript 1f · 184L
JSON 1f · 3L
├─
▾
references
│ ├─
architecture.md
Markdown
│ ├─
openapi.md
Markdown
│ ├─
reference.md
Markdown
│ └─
response.md
Markdown
├─
▾
scripts
│ └─
request.mjs
JavaScript
├─
env.example.json
JSON
└─
SKILL.md
Markdown
安全亮点
✓ HTTPS-only enforcement in assertSafeEndpoint() prevents plaintext exfiltration
✓ Domain allowlist restricts network calls to quote.datatk.com, www.datatk.com, and *.datatk.com subdomains
✓ Raw IP endpoints are explicitly blocked as an anti-exfiltration measure
✓ Path traversal protection via .. check in assertSafePath()
✓ Path must start with /Api/ — prevents arbitrary endpoint access
✓ API key and endpoint read from local env.json only — no environment variable harvesting
✓ Placeholder value detection prevents accidental use of unconfigured credentials
✓ All documentation files (openapi.md, reference.md, response.md, architecture.md) accurately describe the API surface with no hidden functionality
✓ No shell execution, no obfuscation, no credential exfiltration
✓ Clean dependency footprint — no external package dependencies (uses only Node.js built-ins: fs/promises, path, url)