扫描报告
5 /100
faceless-video
Scenario-focused Sparki skill for faceless or no-camera-presence video outputs
Legitimate video editing CLI tool with no malicious behavior detected. All functionality is declared, scoped, and performs standard API-based video processing.
可以安装
This skill is safe to use. No security concerns requiring action.
安全发现 1 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | Implicit config directory creation 权限提升 | src/sparki_cli/config.py:15 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | WRITE | WRITE | ✓ 一致 | SKILL.md declares write to ~/.openclaw/config and ~/.openclaw/workspace/sparki/v… |
| 网络访问 | READ | READ | ✓ 一致 | client.py only communicates with agent-api.sparki.io |
| 环境变量 | NONE | READ | ✓ 一致 | config.py:17 reads SPARKI_API_KEY env var, only for auth purposes |
| 命令执行 | NONE | NONE | — | No subprocess, os.system, or shell execution found |
7 项发现
中危 外部 URL 外部 URL
https://img.shields.io/badge/ClawHub-Skill-blueviolet README.md:3 中危 外部 URL 外部 URL
https://clawhub.io README.md:3 中危 外部 URL 外部 URL
https://img.shields.io/badge/version-1.0.12-blue README.md:4 中危 外部 URL 外部 URL
https://sparki.io SKILL.md:17 中危 外部 URL 外部 URL
https://agent-api.sparki.io src/sparki_cli/constants.py:61 中危 外部 URL 外部 URL
https://t.me/Sparki_AI_bot/upload src/sparki_cli/constants.py:62 中危 外部 URL 外部 URL
https://sparki.io/pricing src/sparki_cli/constants.py:101 目录结构
11 文件 · 33.3 KB · 1010 行 Python 7f · 904L
Markdown 2f · 71L
TOML 1f · 31L
JSON 1f · 4L
├─
▾
src
│ └─
▾
sparki_cli
│ ├─
__init__.py
Python
│ ├─
cli.py
Python
│ ├─
client.py
Python
│ ├─
config.py
Python
│ ├─
constants.py
Python
│ ├─
models.py
Python
│ └─
output.py
Python
├─
_meta.json
JSON
├─
pyproject.toml
TOML
├─
README.md
Markdown
└─
SKILL.md
Markdown
依赖分析 3 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
typer | >=0.9.0 | pip | 否 | Version pinned to major version |
httpx | >=0.27.0 | pip | 否 | Version pinned to major version |
pydantic | >=2.0.0 | pip | 否 | Version pinned to major version |
安全亮点
✓ No shell execution (subprocess, os.system) detected in any file
✓ No credential harvesting - API key used only for Sparki API authentication
✓ No data exfiltration - all network traffic goes to declared agent-api.sparki.io domain only
✓ No obfuscation (base64, eval, atob) found in codebase
✓ Documentation accurately reflects code behavior - no doc-to-code mismatch
✓ No hidden functionality discovered
✓ No supply chain risks - dependencies from PyPI with version constraints
✓ No persistence mechanisms (cron, startup hooks, backdoors) found
✓ No sensitive path access outside declared config/output directories
✓ Clean code architecture with separation of concerns (CLI, client, config, models, output)