扫描报告
20 /100
img2img - 图生图能力
使用 OpenAI DALL-E 3 API 根据文字描述生成图片
Straightforward DALL-E image generation skill with minor supply-chain and TLS verification concerns, but no malicious behavior detected.
可以安装
Pin the openai dependency to a specific version and remove rejectUnauthorized:false from the Node.js script to strengthen the security posture.
安全发现 2 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 中危 | Unpinned openai dependency 供应链 | package.json:3 |
| 中危 | TLS certificate verification disabled 敏感访问 | gen_image.js:13 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | NONE | NONE | — | No filesystem access in any script |
| 网络访问 | READ | READ | ✓ 一致 | Both scripts only make outbound HTTPS requests to api.openai.com |
| 命令执行 | NONE | NONE | — | No subprocess or shell execution found |
| 环境变量 | READ | READ | ✓ 一致 | Scripts read API_KEY env var, which is declared in SKILL.md |
| 技能调用 | NONE | NONE | — | No skill invocation found |
| 剪贴板 | NONE | NONE | — | No clipboard access found |
| 浏览器 | NONE | NONE | — | No browser access found |
| 数据库 | NONE | NONE | — | No database access found |
目录结构
5 文件 · 3.5 KB · 162 行 Python 1f · 45L
JavaScript 1f · 41L
Markdown 1f · 38L
JSON 2f · 38L
├─
gen_image.js
JavaScript
├─
gen_image.py
Python
├─
package-lock.json
JSON
├─
package.json
JSON
└─
SKILL.md
Markdown
依赖分析 1 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
openai | ^6.32.0 | npm | 否 | Version not pinned; caret allows major version upgrades |
安全亮点
✓ SKILL.md accurately describes the skill's behavior and matches implementation
✓ No obfuscation, base64, or hidden code paths detected
✓ No credential exfiltration or data theft behavior
✓ No sensitive file or path access (~/.ssh, ~/.aws, .env) beyond the declared API_KEY env var
✓ No reverse shell, C2, or remote code execution patterns
✓ API key is used only for the declared DALL-E API call and not transmitted elsewhere