Scan Report
5 /100
doubao-all-in-one
使用豆包(火山引擎 Ark)生成图片或视频,将结果保存到本地
Legitimate Doubao/Volcengine AI media generation skill with no malicious indicators; all network activity is to official API endpoints.
Safe to install
No action needed. The skill is safe to use.
Findings 1 items
| Severity | Finding | Location |
|---|---|---|
| Low | Local IP detection via 8.8.8.8 socket connection Sensitive Access | scripts/create_video_task.py:45 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Network | READ | READ | ✓ Aligned | All outbound requests to ark.cn-beijing.volces.com, the official Doubao Ark API … |
| Filesystem | WRITE | WRITE | ✓ Aligned | Writes to OUTPUT_ROOT/outputs/doubao/ only, as declared in SKILL.md |
| Environment | READ | READ | ✓ Aligned | Reads ARK_API_KEY and OUTPUT_ROOT env vars only, as declared in SKILL.md |
| Shell | WRITE | WRITE | ✓ Aligned | Uses uv run python for script execution, as declared in SKILL.md |
1 High 2 findings
High IP Address 硬编码 IP 地址
8.8.8.8 scripts/create_video_task.py:45 Medium External URL 外部 URL
https://ark.cn-beijing.volces.com/api/v3 scripts/common.py:57 File Tree
14 files · 84.0 KB · 2227 lines Python 9f · 1535L
Markdown 4f · 688L
YAML 1f · 4L
├─
▾
agents
│ └─
openai.yaml
YAML
├─
▾
references
│ ├─
seedance_1_5_pro_prompt_guide.md
Markdown
│ ├─
seedream_prompt_guide.md
Markdown
│ └─
usage.md
Markdown
├─
▾
scripts
│ ├─
common.py
Python
│ ├─
create_video_task.py
Python
│ ├─
delete_video_task.py
Python
│ ├─
download_video.py
Python
│ ├─
image_to_image.py
Python
│ ├─
list_video_tasks.py
Python
│ ├─
query_video_task.py
Python
│ ├─
text_to_image.py
Python
│ └─
webhook_server.py
Python
└─
SKILL.md
Markdown
Dependencies 2 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
volcengine-python-sdk[ark] | * | pip | No | Version not pinned, but package source is trusted (official Volcengine SDK) |
flask | * | pip | No | Version not pinned in webhook_server.py |
Security Positives
✓ No credential theft — only reads ARK_API_KEY which is required for the Doubao API
✓ No data exfiltration — all network traffic goes to ark.cn-beijing.volces.com (official Volcengine endpoint)
✓ No obfuscation — all code is plaintext Python, easy to audit
✓ No RCE or subprocess abuse — uses uv run python as declared in SKILL.md
✓ No hidden functionality — SKILL.md accurately describes all capabilities
✓ Webhook server binds to localhost only (127.0.0.1:8888) with token-based auth
✓ SQLite database is stored locally under OUTPUT_ROOT, not externally accessible
✓ No access to sensitive paths like ~/.ssh, ~/.aws, or .env files
✓ Pinned SDK dependency: volcengine-python-sdk[ark]
✓ Webhook server includes IP-based access control rejecting non-localhost origins