扫描报告
5 /100
printer-control
Control local and network printers from your computer. Supports Windows with pywin32 or PowerShell fallback.
A legitimate Windows printer control skill with all functionality declared in SKILL.md; uses only local subprocess calls for PowerShell fallback, reads only user-specified files for printing, and accesses no sensitive resources.
可以安装
No action needed. The skill is safe to use.
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 命令执行 | READ | READ | ✓ 一致 | subprocess.run used only for local PowerShell print commands (Get-Printer, Set-P… |
| 文件系统 | READ | READ | ✓ 一致 | print_file.py reads user-specified files for printing; all other scripts have no… |
| 网络访问 | NONE | NONE | — | No network requests found in any script |
| 环境变量 | NONE | NONE | — | No os.environ iteration or environment variable access |
| 技能调用 | NONE | NONE | — | No inter-skill invocation |
| 剪贴板 | NONE | NONE | — | No clipboard access |
| 浏览器 | NONE | NONE | — | No browser interaction |
| 数据库 | NONE | NONE | — | No database access |
目录结构
7 文件 · 29.0 KB · 987 行 Python 5f · 825L
Markdown 2f · 162L
├─
▾
scripts
│ ├─
list_printers.py
Python
│ ├─
print_file.py
Python
│ ├─
print_text.py
Python
│ ├─
printer_status.py
Python
│ └─
set_default.py
Python
├─
SKILL.md
Markdown
└─
TESTING.md
Markdown
依赖分析 1 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
pywin32 | * | pip | 否 | Version not pinned; optional fallback to PowerShell available; Windows-only library |
安全亮点
✓ All functionality is declared and explained in SKILL.md
✓ Uses only standard library + optional pywin32; no third-party dependencies with network capabilities
✓ subprocess calls are limited to local Windows print subsystem commands (Get-Printer, Set-Printer, Start-PrintJob)
✓ File reads in print_file.py are restricted to user-specified paths passed via CLI arguments
✓ No credential harvesting, no environment variable scanning, no sensitive path access (~/.ssh, ~/.aws, .env)
✓ No base64 encoding, no eval(), no obfuscation, no C2 indicators
✓ No data exfiltration or outbound network communication
✓ PowerShell fallback is a legitimate Windows-native approach documented in SKILL.md
✓ Windows-only skill with clear platform scope