扫描报告
5 /100
hundun
混沌课程学习与创新工具——搜课、读课、文稿获取、商业创新方法论
混沌课程学习与创新工具,代码为合法的 API 集成工具,base64 解码用于解压 API 返回的 zstd 压缩内容,AES 解密用于解密服务端下发的文稿链接,无恶意行为。
可以安装
可安全使用。建议审查硬编码 AES 密钥的密钥管理策略,确保第三方依赖 pycryptodome 及时更新。
安全发现 4 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | 硬编码 AES 解密密钥 | scripts/_decrypt_script_url.py:8 |
| 低危 | 第三方依赖无版本锁定 | scripts/_common.sh:136,scripts/_decrypt_script_url.py:20 |
| 提示 | 意图收集静默上报 | scripts/_common.sh:63-85 |
| 提示 | base64 解码用于数据解压(非混淆) | scripts/_common.sh:142 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 网络访问 | READ | READ | ✓ 一致 | SKILL.md:13 scripts/*.sh — 仅调用 hddrapi.hundun.cn |
| 命令执行 | NONE | WRITE | ✓ 一致 | scripts/_common.sh:89-90 — 调用 curl 与外部 API 交互,合理的 API 工具 |
| 文件系统 | WRITE | WRITE | ✓ 一致 | SKILL.md:15 — 声明写入 .clawhub/.hdxy_config;scripts/set_api_key.sh:17 — 写入配置 |
| 环境变量 | READ | READ | ✓ 一致 | SKILL.md:11-12 — 声明读取 HUNDUN_API_KEY 等环境变量 |
1 严重 4 项发现
严重 编码执行 Base64 编码执行(代码混淆)
base64 -d scripts/_common.sh:142 中危 外部 URL 外部 URL
https://hddrapi.hundun.cn SKILL.md:21 中危 外部 URL 外部 URL
https://tools.hundun.cn/h5Bin/aia/#/keys references/auth-and-troubleshooting.md:11 中危 外部 URL 外部 URL
https://www.hundun.cn/course/ references/course-workflow.md:110 目录结构
23 文件 · 110.3 KB · 1828 行 Markdown 11f · 1302L
Shell 10f · 473L
Python 2f · 53L
├─
▾
references
│ ├─
▾
foundations
│ │ ├─
第一性原理.md
Markdown
│ │ └─
第二曲线创新.md
Markdown
│ ├─
▾
innovation-tools
│ │ ├─
_shared-playbook.md
Markdown
│ │ ├─
asymmetric-entry-finder.md
Markdown
│ │ ├─
idea-exploder.md
Markdown
│ │ ├─
pricing-reframer.md
Markdown
│ │ ├─
selling-point-innovator.md
Markdown
│ │ └─
value-proposition-one-liner.md
Markdown
│ ├─
auth-and-troubleshooting.md
Markdown
│ └─
course-workflow.md
Markdown
├─
▾
scripts
│ ├─
_common.sh
Shell
│ ├─
_decompress.py
Python
│ ├─
_decrypt_script_url.py
Python
│ ├─
get_courses_by_tree.sh
Shell
│ ├─
get_script_version.sh
Shell
│ ├─
get_script.sh
Shell
│ ├─
get_skill_patch.sh
Shell
│ ├─
get_trees.sh
Shell
│ ├─
intent_collect.sh
Shell
│ ├─
search_courses.sh
Shell
│ ├─
set_api_key.sh
Shell
│ └─
version_check.sh
Shell
└─
SKILL.md
Markdown
依赖分析 2 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
pycryptodome | * | pip (动态导入) | 否 | 无版本锁定;AES 解密依赖 |
zstandard | * | pip (动态导入) | 否 | 无版本锁定;zstd 解压依赖 |
安全亮点
✓ 所有网络请求仅指向已知域名 hddrapi.hundun.cn,无未知 IP 或可疑端点
✓ 无凭证收割行为(不遍历 os.environ、不读取 ~/.ssh 等敏感路径)
✓ 无远程代码执行(curl/wget 均为下载合法资源)
✓ API Key 写入文件时设置 chmod 600 保护
✓ 脚本失败时明确报错,不静默吞掉错误
✓ 禁止回退到网页检索课程内容,防止伪造
✓ 意图收集失败不阻塞主流程,设计合理
✓ 无 eval()、无 base64|bash 管道、无 HTML 隐藏指令