Scan Report
10 /100
dex-quant-skill
Cryptocurrency quantitative trading AI Skill for strategy generation, backtesting, optimization, and monitoring
Legitimate cryptocurrency quantitative trading skill with well-documented functionality, secure credential handling via secure links, and only declared external API communications with major exchanges.
Safe to install
Skill appears safe for use. Monitor vault system behavior when users configure wallet keys.
Findings 1 items
| Severity | Finding | Location |
|---|---|---|
| Low | Wallet private key handling Credential Theft | scripts/api_client.py |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | WRITE | WRITE | ✓ Aligned | SKILL.md: Write tool declared; scripts save strategies to {baseDir}/strategies/ |
| Network | READ | READ | ✓ Aligned | API calls to Binance, CoinGecko, DeFi Llama, and own server - all documented |
| Shell | WRITE | WRITE | ✓ Aligned | subprocess used for pip install, font installation - declared in preamble |
| Environment | NONE | READ | ✓ Aligned | data_client.py reads PROXY_URL env var - documented purpose |
| Skill Invoke | NONE | NONE | — | |
| Clipboard | NONE | NONE | — | |
| Browser | NONE | NONE | — | |
| Database | NONE | NONE | — |
7 findings
Medium External URL 外部 URL
http://json-schema.org/draft-07/schema# schemas/signal_format.json:2 Medium External URL 外部 URL
http://your-server:8000 scripts/api_client.py:17 Medium External URL 外部 URL
https://dex-quant-app-production.up.railway.app scripts/api_client.py:41 Medium External URL 外部 URL
https://fapi.binance.com scripts/data_client.py:23 Medium External URL 外部 URL
https://api.binance.com scripts/data_client.py:24 Medium External URL 外部 URL
https://api.coingecko.com/api/v3 scripts/data_client.py:25 Medium External URL 外部 URL
https://api.llama.fi scripts/data_client.py:26 File Tree
17 files · 198.3 KB · 5353 lines Python 12f · 4174L
Markdown 2f · 1054L
JSON 3f · 125L
├─
▾
docs
│ └─
DEX Quant产品文档.md
Markdown
├─
▾
schemas
│ └─
signal_format.json
JSON
├─
▾
scripts
│ ├─
api_client.py
Python
│ ├─
data_client.py
Python
│ ├─
indicators.py
Python
│ ├─
machine_auth.py
Python
│ ├─
risk_checker.py
Python
│ └─
strategy_runner.py
Python
├─
▾
strategies
│ ├─
btc_aggressive_momentum.py
Python
│ ├─
btc_macd_trend.py
Python
│ ├─
btc_rsi_momentum.py
Python
│ ├─
btc_trend_pullback.py
Python
│ ├─
sol_kdj_swing.py
Python
│ └─
sol_rsi_momentum.py
Python
├─
clawhub.json
JSON
├─
conductor.json
JSON
└─
SKILL.md
Markdown
Dependencies 3 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
httpx | not pinned | pip install | No | Used for API calls - standard HTTP client |
loguru | not pinned | pip install | No | Logging library - standard |
matplotlib | not pinned | pip install | No | Charting library - standard |
Security Positives
✓ Comprehensive documentation in SKILL.md with explicit security rules
✓ Secure vault system for private keys using browser-based secure link submission
✓ All network communications are with legitimate financial APIs (Binance, CoinGecko, DeFi Llama)
✓ Strategy scripts execute in a sandboxed server environment, blocking os/subprocess/socket imports
✓ No access to sensitive paths (~/.ssh, ~/.aws, .env)
✓ No base64-encoded execution or obfuscation detected
✓ No reverse shell, C2, or data theft patterns
✓ Clean codebase with no typosquatting or malicious dependencies