可信 — 风险评分 5/100
上次扫描:1 天前 重新扫描
5 /100
binance-alert
Binance smart alert system for price/change alerts, new listings, Alpha airdrop opportunities, and HODLer announcements via Telegram
Legitimate Binance alert tool using only standard library, public Binance APIs, and Telegram for notifications with no credential exfiltration or malicious behavior detected.
技能名称binance-alert
分析耗时25.8s
引擎pi
可以安装
Skill is safe to use. No security concerns identified.
资源类型声明权限推断权限状态证据
文件系统 READ READ ✓ 一致 Scripts/read:23-24 ENV_FILE and STATE_FILE paths declared
文件系统 WRITE WRITE ✓ 一致 Scripts/read:62 STATE_FILE.write_text() for state persistence
网络访问 READ READ ✓ 一致 Scripts/read:30-35 http_get() to Binance public APIs
网络访问 WRITE WRITE ✓ 一致 Scripts/read:40-47 http_post() to Telegram API for notifications
环境变量 READ READ ✓ 一致 Scripts/read:23-25 Reads TG_BOT_TOKEN, TG_CHAT_ID from env
命令执行 NONE NONE No subprocess or shell execution in code
技能调用 NONE NONE No skill_invoke usage
剪贴板 NONE NONE No clipboard access
浏览器 NONE NONE No browser automation
数据库 NONE NONE No database access
4 项发现
🔗
中危 外部 URL 外部 URL
https://api.binance.com
scripts/binance_alert.py:24
🔗
中危 外部 URL 外部 URL
https://web3.binance.com
scripts/binance_alert.py:25
🔗
中危 外部 URL 外部 URL
https://www.binance.com
scripts/binance_alert.py:26
🔗
中危 外部 URL 外部 URL
https://api.telegram.org/bot
scripts/binance_alert.py:78

目录结构

3 文件 · 21.1 KB · 511 行
Python 1f · 427L Markdown 1f · 80L JSON 1f · 4L
├─ 📁 scripts
│ └─ 🐍 binance_alert.py Python 427L · 18.9 KB
├─ 📋 _meta.json JSON 4L · 56 B
└─ 📝 SKILL.md Markdown 80L · 2.1 KB

安全亮点

✓ Uses only Python standard library (urllib, json, gzip, hashlib) - no external dependencies
✓ Only accesses public Binance APIs - no API key required or used
✓ Telegram credentials (TG_BOT_TOKEN) used only for sending notifications, not exfiltrated
✓ No obfuscation, base64 encoding, or anti-analysis techniques
✓ State persistence is local to /data/freqtrade/user_data/
✓ Code is well-commented and transparent in its operations
✓ Hardcoded paths declared in both SKILL.md and code comments