Trusted — Risk Score 5/100
Last scan:20 hr ago Rescan
5 /100
video-generate
Generate videos using Doubao Seedance models
Legitimate video generation skill that makes API calls to ByteDance's Volcano Engine for AI video synthesis. No malicious behavior detected.
Skill Namevideo-generate
Duration22.9s
Enginepi
Safe to install
No action needed. The skill performs as documented.

Findings 1 items

Severity Finding Location
Low
Unpinned httpx dependency Supply Chain
The httpx library is used without version pinning, which could allow a supply chain attack if a malicious version is published.
import httpx
→ Pin httpx to a specific version, e.g., httpx>=0.24.0,<0.28.0
scripts/video_generate.py:17
ResourceDeclaredInferredStatusEvidence
Network READ READ ✓ Aligned httpx POST/GET to ark.cn-beijing.volces.com/api/v3
Environment READ READ ✓ Aligned os.getenv('ARK_API_KEY') line 32
Filesystem NONE NONE No file operations in code
Shell NONE NONE No subprocess or shell commands
3 findings
🔗
Medium External URL 外部 URL
http://www.apache.org/licenses/
LICENSE.txt:4
🔗
Medium External URL 外部 URL
http://www.apache.org/licenses/LICENSE-2.0
LICENSE.txt:196
🔗
Medium External URL 外部 URL
https://ark.cn-beijing.volces.com/api/v3
scripts/video_generate.py:17

File Tree

3 files · 34.3 KB · 914 lines
Python 1f · 513L Text 1f · 201L Markdown 1f · 200L
├─ 📁 scripts
│ └─ 🐍 video_generate.py Python 513L · 15.1 KB
├─ 📄 LICENSE.txt Text 201L · 11.1 KB
└─ 📝 SKILL.md Markdown 200L · 8.1 KB

Dependencies 1 items

PackageVersionSourceKnown VulnsNotes
httpx * pip No Version not pinned

Security Positives

✓ SKILL.md documentation is comprehensive and matches code implementation
✓ API key only used for authentication to the legitimate Volcano Engine API
✓ No credential exfiltration or data theft patterns
✓ No shell execution, subprocess, or command injection vectors
✓ No obfuscation techniques (base64, eval, atob)
✓ No access to sensitive paths (~/.ssh, ~/.aws, .env files)
✓ No remote script execution (curl|bash, wget|sh)
✓ Uses httpx async client with proper timeout handling
✓ Error handling properly implemented with informative messages