扫描报告
20 /100
anki-card-creator
Convert medical textbook content into Anki flashcards using spaced repetition optimization
Documentation overstates capabilities compared to actual implementation, but no malicious behavior detected in the simple Python flashcard generator.
可以安装
Review SKILL.md for accuracy - remove references to non-existent modules and trim feature descriptions to match actual implementation.
安全发现 3 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | SKILL.md references non-existent implementation files 文档欺骗 | SKILL.md:290 |
| 低危 | Feature descriptions exceed actual capabilities 文档欺骗 | SKILL.md:35 |
| 提示 | Bash tool declared but never used 权限提升 | SKILL.md:7 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | WRITE | WRITE | ✓ 一致 | scripts/main.py:71 open(output_file, 'w') |
| 网络访问 | NONE | NONE | — | No network imports or requests |
| 命令执行 | WRITE | NONE | ✗ 越权 | Bash declared but never used in implementation |
| 环境变量 | NONE | NONE | — | No os.environ access |
| 技能调用 | NONE | NONE | — | No cross-skill invocation |
| 剪贴板 | NONE | NONE | — | No clipboard access |
| 浏览器 | NONE | NONE | — | No browser automation |
| 数据库 | NONE | NONE | — | No database access |
目录结构
4 文件 · 21.7 KB · 673 行 Markdown 1f · 545L
Python 1f · 123L
Text 2f · 5L
├─
▾
scripts
│ └─
main.py
Python
├─
anki_cards.txt
Text
├─
requirements.txt
Text
└─
SKILL.md
Markdown
依赖分析 2 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
argparse | stdlib | Python standard library | 否 | Standard library module |
re | stdlib | Python standard library | 否 | Standard library module |
安全亮点
✓ Uses only Python standard library (argparse, re) - no external dependencies with potential vulnerabilities
✓ No network requests or external API calls
✓ No credential harvesting or sensitive path access
✓ No obfuscation, base64 execution, or anti-analysis techniques
✓ Simple, readable code that performs its stated basic function
✓ Input validation through argparse - no arbitrary file write vulnerabilities