可信 — 风险评分 5/100
上次扫描:20 小时前 重新扫描
5 /100
knowledge-base-skill
Multi-business knowledge base with image attachment + OCR support
This is a straightforward knowledge base management skill with image/OCR support. No malicious behavior detected - all functionality is documented, uses standard libraries, and operates only within its designated data directory.
技能名称knowledge-base-skill
分析耗时25.2s
引擎pi
可以安装
This skill is safe to use. No security concerns identified.
资源类型声明权限推断权限状态证据
文件系统 READ WRITE ✓ 一致 kb-manager.py:43 - Creates knowledge-base directories
网络访问 NONE NONE No network requests found
命令执行 NONE READ ✓ 一致 image-manager.py:67 - subprocess.run for tesseract CLI
环境变量 NONE NONE No env access found
1 项发现
🔗
中危 外部 URL 外部 URL
https://api.example.com
SKILL.md:124

目录结构

4 文件 · 44.4 KB · 1408 行
Python 2f · 830L Markdown 1f · 493L Shell 1f · 85L
├─ 📁 knowledge-base
│ ├─ 🐍 image-manager.py Python 257L · 9.3 KB
│ ├─ 🔧 kb-image.sh Shell 85L · 2.9 KB
│ └─ 🐍 kb-manager.py Python 573L · 21.0 KB
└─ 📝 SKILL.md Markdown 493L · 11.2 KB

依赖分析 3 项

包名版本来源已知漏洞备注
pytesseract optional pip Optional - for OCR extraction
pillow optional pip Optional - for image processing
tesseract-ocr optional system Optional CLI tool for OCR

安全亮点

✓ Clean codebase using only Python standard library (json, os, hashlib, datetime, shutil, subprocess)
✓ All functionality explicitly documented in SKILL.md
✓ Subprocess usage is limited to tesseract OCR (a documented optional dependency)
✓ No sensitive file path access (~/.ssh, ~/.aws, .env)
✓ No credential harvesting or API key access
✓ No network exfiltration or C2 communication
✓ No obfuscation techniques (base64, eval, etc.)
✓ File operations confined to knowledge-base/ directory only
✓ Shell script (kb-image.sh) is simple wrapper around Python modules