扫描报告
5 /100
clawpage-skill
Router skill for Clawpage page creation, publishing, and template management workflows
Legitimate page publishing framework with no malicious behavior, obfuscation, or undeclared capabilities. All functionality is properly documented in SKILL.md files.
可以安装
This skill is safe to use. Standard security hygiene: keep keys.local.json local, use version-pinned Node.js, and verify api.clawpage.ai domain legitimacy.
安全发现 1 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | CDN-hosted TailwindCSS dependency 供应链 | templates/*/index.html:7 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 命令执行 | WRITE | WRITE | ✓ 一致 | SKILL.md declares node binary requirement; scripts use 'node ./scripts/*.mjs' |
| 文件系统 | WRITE | WRITE | ✓ 一致 | Writes to .pages/, templates/, keys.local.json - all scoped and documented |
| 网络访问 | READ | READ | ✓ 一致 | Only accesses api.clawpage.ai for registration and page CRUD operations |
| 环境变量 | NONE | NONE | — | No environment variable access beyond API_HOST default |
| 浏览器 | NONE | NONE | — | Templates render static HTML; no browser automation |
12 项发现
中危 外部 URL 外部 URL
https://api.clawpage.ai/api/register AGENTS.md:22 中危 外部 URL 外部 URL
https://api.clawpage.ai SKILL.md:66 中危 外部 URL 外部 URL
https://api.clawpage.ai/api/pages references/api-quickref.md:66 中危 外部 URL 外部 URL
https://u-builder01.clawpage.ai/pages/claw_xxx references/api-quickref.md:80 中危 外部 URL 外部 URL
https://u-builder01.clawpage.ai/pages/claw_xxx?pagecode=123456 references/api-quickref.md:84 中危 外部 URL 外部 URL
https://api.clawpage.ai/api/pages?page=1&limit=20 references/api-quickref.md:112 中危 外部 URL 外部 URL
https://api.clawpage.ai/api/pages/ references/api-quickref.md:121 中危 外部 URL 外部 URL
https://u-builder01.clawpage.ai/__auth references/api-quickref.md:175 中危 外部 URL 外部 URL
https://api.clawpage.ai/healthz references/api-quickref.md:183 中危 外部 URL 外部 URL
https://api.clawpage.ai/api/pages?page=1&limit=50 skills/create-management-page/SKILL.md:55 中危 外部 URL 外部 URL
https://cdn.tailwindcss.com templates/concept-animation-lab/index.html:7 中危 外部 URL 外部 URL
https://clawpage.ai templates/concept-animation-lab/index.html:34 目录结构
38 文件 · 114.6 KB · 3488 行 Markdown 17f · 1252L
CSS 6f · 1082L
JavaScript 8f · 827L
HTML 6f · 321L
JSON 1f · 6L
├─
▾
references
│ ├─
api-quickref.md
Markdown
│ ├─
design-guidelines.md
Markdown
│ └─
prompt-contracts.md
Markdown
├─
▾
scripts
│ ├─
clawpages_init.mjs
JavaScript
│ └─
clawpages_publish.mjs
JavaScript
├─
▾
skills
│ ├─
▾
create-management-page
│ │ └─
SKILL.md
Markdown
│ ├─
▾
create-page
│ │ └─
SKILL.md
Markdown
│ ├─
▾
create-template
│ │ └─
SKILL.md
Markdown
│ ├─
▾
init
│ │ └─
SKILL.md
Markdown
│ ├─
▾
update-page
│ │ └─
SKILL.md
Markdown
│ └─
▾
update-template
│ └─
SKILL.md
Markdown
├─
▾
templates
│ ├─
▾
concept-animation-lab
│ │ ├─
default.css
CSS
│ │ ├─
default.js
JavaScript
│ │ ├─
index.html
HTML
│ │ └─
meta.md
Markdown
│ ├─
▾
general_template
│ │ ├─
default.css
CSS
│ │ ├─
default.js
JavaScript
│ │ ├─
index.html
HTML
│ │ └─
meta.md
Markdown
│ ├─
▾
insight-collection-hub
│ │ ├─
default.css
CSS
│ │ ├─
default.js
JavaScript
│ │ ├─
index.html
HTML
│ │ └─
meta.md
Markdown
│ ├─
▾
mini-game-arcade
│ │ ├─
default.css
CSS
│ │ ├─
default.js
JavaScript
│ │ ├─
index.html
HTML
│ │ └─
meta.md
Markdown
│ ├─
▾
stock-analysis-terminal
│ │ ├─
default.css
CSS
│ │ ├─
default.js
JavaScript
│ │ ├─
index.html
HTML
│ │ └─
meta.md
Markdown
│ └─
▾
utility-workbench
│ ├─
default.css
CSS
│ ├─
default.js
JavaScript
│ ├─
index.html
HTML
│ └─
meta.md
Markdown
├─
AGENTS.md
Markdown
├─
keys.local.example.json
JSON
└─
SKILL.md
Markdown
依赖分析 2 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
node | any | system | 否 | Runtime dependency declared in SKILL.md install.binaries |
tailwindcss | latest (CDN) | cdn.tailwindcss.com | 否 | CDN-hosted; not pinned to specific version |
安全亮点
✓ No obfuscation or encoded payloads found
✓ No credential harvesting beyond local key management
✓ No remote code execution patterns (curl|bash, wget|sh)
✓ No sensitive path access (~/.ssh, ~/.aws, .env)
✓ No C2 communication or data exfiltration
✓ No reverse shell capabilities
✓ All shell commands are explicitly declared (node script execution)
✓ Network calls scoped to legitimate API endpoint (api.clawpage.ai)
✓ Token management follows security best practices (local file, gitignored)
✓ Documentation accurately reflects implementation
✓ No hidden instructions in HTML comments