币安代理配置(中国大陆)

Security checks across malware telemetry and agentic risk

Overview

This skill is a coherent Binance proxy setup guide, but it asks users to install a persistent system proxy and route sensitive financial API traffic through it without enough safety guidance.

Review this skill carefully before installing. Use only trusted or self-managed proxy infrastructure, download mihomo from an official source and verify checksums or signatures, run the service with least privilege where possible, and use restricted Binance API keys such as read-only keys unless trading is explicitly needed. Avoid sending signed/private Binance requests through shared or untrusted VPS/proxy nodes.

SkillSpector

By NVIDIA
Vulnerability Patterns
  • Data ExfiltrationExternal Transmission, Env Variable Harvesting, File System Enumeration
  • Prompt InjectionInstruction Override, Hidden Instructions, Exfiltration Commands
  • Privilege EscalationExcessive Permissions, Sudo/Root Execution, Credential Access
  • Supply ChainUnpinned Dependencies, External Script Fetching, Obfuscated Code
  • Excessive AgencyUnrestricted Tool Access, Autonomous Decision Making, Scope Creep
Findings (3)

Missing User Warnings

Medium
Confidence
94% confidence
Finding
The skill shows how to place Binance API credentials in shell variables and use them in signed requests sent through a user-configured proxy, but it does not warn that the proxy/VPS operator can observe sensitive metadata and potentially capture account-related responses. In this context, the skill is specifically about routing exchange traffic through third-party infrastructure, so omitting credential-handling and proxy trust guidance materially increases the chance of account compromise or privacy loss.

External Transmission

Medium
Category
Data Exfiltration
Content
```bash
# 下载(选一个镜像)
curl -sL "https://ghfast.top/https://github.com/MetaCubeX/mihomo/releases/download/v1.19.0/mihomo-linux-amd64-v1.19.0.gz" -o /tmp/mihomo.gz
cd /tmp && gunzip -f mihomo.gz && chmod +x mihomo && mv mihomo /usr/local/bin/mihomo
mihomo -v  # 验证安装
```
Confidence
89% confidence
Finding
curl -sL "https://ghfast.top/https://github.com/MetaCubeX/mihomo/releases/download/v1.19.0/mihomo-linux-amd64-v1.19.0.gz" -o /tmp/mihomo.gz cd /tmp && gunzip -f mihomo.gz && chmod +x mihomo && mv miho

External Transmission

Medium
Category
Data Exfiltration
Content
# 查询账户(需签名)
curl -s --proxy http://127.0.0.1:7890 \
  -H "X-MBX-APIKEY: $API_KEY" \
  "https://api.binance.com/api/v3/account?$QUERY&signature=$SIG"

# 查询价格(无需签名)
curl -s --proxy http://127.0.0.1:7890 \
Confidence
97% confidence
Finding
https://api.binance.com/

VirusTotal

65/65 vendors flagged this skill as clean.

View on VirusTotal