Scan Report
20 /100
comfyui-running
ComfyUI 全自动绘图 AI 助手 - 通过 CDP 控制浏览器和 REST API 执行工作流
ComfyUI 全自动绘图助手,代码功能与声明基本一致,存在轻微瑕疵(自动安装依赖无版本锁定)但无恶意行为
Safe to install
建议添加依赖版本锁定(requests>=2.28.0, websockets>=10.0)并完善权限声明
Findings 3 items
| Severity | Finding | Location |
|---|---|---|
| Medium | 自动安装依赖无版本锁定 Supply Chain | lib/comfyui_automation.py:426 |
| Low | subprocess 进程执行未在文档声明 Priv Escalation | lib/comfyui_automation.py:94 |
| Info | config.json 标记敏感但内容无害 Doc Mismatch | config.json:1 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | READ | WRITE | ✓ Aligned | SKILL.md 未声明写入 config.json,但为工具正常运行所需 |
| Network | READ | READ | ✓ Aligned | 仅访问本地 127.0.0.1:8188 ComfyUI API |
| Shell | NONE | WRITE | ✓ Aligned | comfyui_automation.py:94 使用 subprocess.Popen 启动 ComfyUI |
| Environment | NONE | NONE | — | _clean_env 仅清理代理变量,无敏感信息访问 |
13 findings
Medium External URL 外部 URL
http://127.0.0.1:9222/json SHARING_PACKAGE.md:169 Medium External URL 外部 URL
http://127.0.0.1:8188/queue SHARING_PACKAGE.md:172 Medium External URL 外部 URL
http://127.0.0.1:8188/history?per_page=5 SHARING_PACKAGE.md:175 Medium External URL 外部 URL
https://www.comfyorg.cn SKILL.md:9 Medium External URL 外部 URL
https://img.shields.io/badge/comfyui%E8%B5%84%E6%BA%90%E7%BD%91-ComfyUI%E8%B5%84%E6%BA%90%E5%AE%A3%E5%92%8C-orange?style... SKILL.md:11 Medium External URL 外部 URL
https://www.comfyorg.cn/tutorial SKILL.md:391 Medium External URL 外部 URL
https://www.comfyorg.cn/workflow SKILL.md:392 Medium External URL 外部 URL
https://www.comfyorg.cn/kjqy/bbgj SKILL.md:393 Medium External URL 外部 URL
https://www.comfyorg.cn/shop/1680.html SKILL.md:394 Medium External URL 外部 URL
http://127.0.0.1: comfyui_browser.py:61 Medium External URL 外部 URL
http://127.0.0.1:8188/history 完整使用教程(使用前建议查看).md:129 Medium External URL 外部 URL
http://127.0.0.1:8188/prompt 完整使用教程(使用前建议查看).md:170 Medium External URL 外部 URL
http://127.0.0.1:8188 新手教程.md:219 File Tree
19 files · 108.9 KB · 3887 lines Python 10f · 2064L
Markdown 4f · 1198L
JSON 5f · 625L
├─
▾
example_workflows
│ ├─
default_api_format.json
JSON
│ ├─
default.json
JSON
│ ├─
文生图_api_format.json
JSON
│ └─
文生图.json
JSON
├─
▾
lib
│ ├─
__init__.py
Python
│ ├─
comfyui_automation.py
Python
│ └─
comfyui_config.py
Python
├─
▾
scripts
│ ├─
comfyui_setup.py
Python
│ ├─
gen_dance.py
Python
│ ├─
gen_handsome.py
Python
│ ├─
test_drive_detection.py
Python
│ ├─
test_fixes.py
Python
│ └─
test_upgrade.py
Python
├─
comfyui_browser.py
Python
├─
config.json
⚠
JSON
├─
SHARING_PACKAGE.md
Markdown
├─
SKILL.md
Markdown
├─
完整使用教程(使用前建议查看).md
Markdown
└─
新手教程.md
Markdown
Dependencies 2 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
requests | * | pip | No | 无版本锁定,建议 requests>=2.28.0 |
websockets | * | pip | No | 无版本锁定,建议 websockets>=10.0 |
Security Positives
✓ 仅访问本地 127.0.0.1 网络,无外部通信
✓ 无凭证收割、环境变量遍历、敏感文件访问
✓ 无 Base64 混淆、eval 执行、反分析技术
✓ 无远程代码下载、shell 管道执行
✓ 使用 CDP/WebSocket 控制本地浏览器而非恶意注入
✓ 代码结构清晰,注释完整