扫描报告
5 /100
content-workflow-engine
Automate end-to-end content workflows from ideation to publication and distribution
This is a legitimate content workflow automation skill with no malicious behavior detected. All functionality is accurately documented, scripts use standard Python libraries, and no hidden exfiltration or credential harvesting was found.
可以安装
This skill is safe to use. Follow standard security practices: never commit api_config.json with real credentials, use environment variables for API keys in production, and rotate keys regularly.
安全发现 3 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | Configuration template contains credential placeholders | assets/config/api_config.example.json:1 |
| 提示 | subprocess usage for script execution | scripts/workflow_templates/blog_automated.py:195 |
| 提示 | File system operations scoped to specific directories | scripts/ |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | READ | WRITE | ✓ 一致 | Scripts write to workflows/, reports/, brainstorm_output/ directories - scoped a… |
| 网络访问 | READ | READ | ✓ 一致 | Makes API calls to WordPress, social media platforms as declared in SKILL.md |
| 命令执行 | WRITE | WRITE | ✓ 一致 | Uses subprocess for Python script execution, documented and expected for CLI too… |
| 环境变量 | NONE | NONE | — | No environment variable access observed in code |
6 项发现
中危 外部 URL 外部 URL
https://yourblog.com/wp-json SKILL.md:234 中危 外部 URL 外部 URL
https://yourdomain.com/health assets/config/api_config.example.json:117 提示 邮箱 邮箱地址
[email protected] CLAWHUB_LISTING.md:282 提示 邮箱 邮箱地址
[email protected] CLAWHUB_LISTING.md:347 提示 邮箱 邮箱地址
[email protected] assets/config/api_config.example.json:39 提示 邮箱 邮箱地址
[email protected] assets/config/api_config.example.json:115 目录结构
15 文件 · 103.1 KB · 3374 行 Markdown 6f · 1855L
Python 4f · 1135L
JSON 4f · 264L
JavaScript 1f · 120L
├─
▾
assets
│ ├─
▾
config
│ │ └─
api_config.example.json
JSON
│ └─
▾
templates
│ ├─
▾
social
│ │ └─
twitter_template.json
JSON
│ └─
blog_template.md
Markdown
├─
▾
references
│ ├─
scheduled_blog.md
Markdown
│ └─
social_multi.md
Markdown
├─
▾
scripts
│ ├─
▾
workflow_templates
│ │ └─
blog_automated.py
Python
│ ├─
brainstorm.py
Python
│ ├─
create_workflow.py
Python
│ └─
run_workflow.py
Python
├─
▾
test_workflows
│ └─
test-blog-pipeline.json
JSON
├─
CLAWHUB_LISTING.md
Markdown
├─
index.js
JavaScript
├─
package.json
JSON
├─
README.md
Markdown
└─
SKILL.md
Markdown
依赖分析 1 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
No external Python dependencies | N/A | stdlib only | 否 | Uses only Python standard library (json, argparse, subprocess, pathlib, datetime) |
安全亮点
✓ No base64 encoding/decoding or obfuscation detected
✓ No reverse shell or C2 communication patterns
✓ No credential harvesting or environment variable exfiltration
✓ Documentation accurately describes all capabilities
✓ API credentials documented as requiring environment variables in production
✓ File operations are scoped to specific application directories
✓ Uses standard Python libraries (json, argparse, subprocess) without suspicious patterns
✓ No hidden HTML comments or embedded payloads
✓ Test workflow file validates the implementation is legitimate
✓ Dependencies properly declared (no untracked packages)