扫描报告
58 /100
income-lab
收入实验与执行系统 - A system for tracking income experiments and money-making methods
Hardcoded API key found in payment.py poses critical credential exposure risk. The skill implements legitimate billing integration but fails to follow secure credential management practices.
不要安装此技能
Remove hardcoded API key from source code and use environment variable SKILLPAY_API_KEY instead. The key is already referenced in _meta.json for environment variable lookup but not actually used.
安全发现 4 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 严重 | Hardcoded API Key Exposed in Source Code | payment.py:12 |
| 高危 | Inconsistent Credential Management | payment.py:16 |
| 中危 | No Version Pinning in Dependencies | requirements.txt:1 |
| 低危 | Data Directory in User Home | scripts/experiment_tracker.py:19 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | READ,WRITE | READ,WRITE | ✓ 一致 | SKILL.md declares experiment_tracker.py; ~/.income-lab usage confirmed in script… |
| 网络访问 | READ | READ | ✓ 一致 | SKILL.md mentions billing system; payment.py makes requests to skillpay.me |
| 命令执行 | NONE | NONE | — | No subprocess or os.system calls in any script |
| 环境变量 | READ | READ | ✓ 一致 | payment.py reads SKILLPAY_USER_ID from os.environ |
| 技能调用 | NONE | NONE | — | No skill invocation patterns found |
1 高危 2 项发现
高危 API 密钥 疑似硬编码凭证
API_KEY = "sk_f03aa8f8bbcf79f7aa11c112d904780f22e62add1464e3c41a79600a451eb1d2" payment.py:12 中危 外部 URL 外部 URL
https://skillpay.me payment.py:11 目录结构
8 文件 · 38.7 KB · 1286 行 Markdown 3f · 632L
Python 3f · 626L
JSON 1f · 19L
Text 1f · 9L
├─
▾
references
│ ├─
income-methods.md
Markdown
│ └─
retrospective-framework.md
Markdown
├─
▾
scripts
│ ├─
experiment_tracker.py
Python
│ └─
weekly_reporter.py
Python
├─
_meta.json
JSON
├─
payment.py
Python
├─
requirements.txt
Text
└─
SKILL.md
Markdown
依赖分析 4 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
pandas | >=2.0.0 | pip | 否 | Version not pinned |
numpy | >=1.24.0 | pip | 否 | Version not pinned |
matplotlib | >=3.7.0 | pip | 否 | Version not pinned |
python-dateutil | >=2.8.0 | pip | 否 | Version not pinned |
安全亮点
✓ No shell execution vulnerabilities - no subprocess, os.system, or eval calls found
✓ No credential exfiltration - network requests only go to documented billing endpoint
✓ No suspicious base64 encoding or obfuscation
✓ No access to sensitive system paths like ~/.ssh, ~/.aws, or .env files
✓ No hidden functionality in HTML comments or other stealth channels
✓ No curl|bash or wget|sh remote script execution patterns
✓ Legitimate billing integration properly documented in SKILL.md
✓ Experiment tracking functionality matches declared capabilities