Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,7 @@ jobs:
done
- name: Check broken links
run: |
! grep -rn "blackmule/" README.md CAPABILITY.md MASTER_INDEX.md AGENTS.md || exit 0
if grep -rn "blackmule/" README.md CAPABILITY.md MASTER_INDEX.md AGENTS.md; then
echo "Found stale blackmule/ path references"
exit 1
fi
2 changes: 1 addition & 1 deletion CAPABILITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
| 资产 | 数量 | 位置 |
|------|------|------|
| Hermes Skill | 47 | `/root/.hermes/skills/security/` |
| 技术卡 (YAML) | 40 | `techniques/` — 21 个分类 |
| 技术卡 (YAML) | 38 | `techniques/` — 21 个分类 |
| 知识条目 (MD) | 16 | `knowledge/categories/` + `knowledge/frameworks/` |
| 实战工具 | 11 | `tools/` — Python/Go/Shell |
| 案例 | 11 | `cases/` — 授权/CTF/Lab/PWN |
Expand Down
2 changes: 1 addition & 1 deletion MASTER_INDEX.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
## 内容入口

- [`knowledge/categories/`](./knowledge/categories/):按漏洞类型整理的深度知识条目(15类 150+ 条目,含 AI Agent/MCP)。
- [`techniques/`](./techniques/):可复用技术卡(18类 37 张)。
- [`techniques/`](./techniques/):可复用技术卡(21类 38 张)。
- [`cases/`](./cases/):靶场、CTF 与授权实战案例(15 个)。
- [`references/`](./references/):深度专题文档(SQL注入/WebSocket/云元数据/SBOM供应链/DNS/TLS/OAuth/Passkey/请求走私/AI Agent,共 10 个专题、56 篇文档)。
- [`mirrors/`](./mirrors/):外部仓库镜像备份(codex-keysmith/claude-keysmith/zcode-keysmith)。
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

| 技术卡 | 知识条目 | 案例 | 专题 | 工具 | Skill | 镜像 |
| ---: | ---: | ---: | ---: | ---: | ---: | ---: |
| **40** | **16** | **11** | **53篇/10专题** | **11** | **47** | **3** |
| **38** | **16** | **11** | **53篇/10专题** | **10** | **47** | **3** |

📊 [CAPABILITY.md](./CAPABILITY.md) — 完整能力索引

Expand Down Expand Up @@ -119,7 +119,7 @@ SecAtlas 是**首个面向多 AI Agent 协作**的结构化安全知识库。

- **AI Agent 入口**:[`AGENTS.md`](./AGENTS.md) / [`CAPABILITY.md`](./CAPABILITY.md)
- **AI Agent/MCP 专题**:[`references/agentic-ai/`](./references/agentic-ai/) — 工具供应链、权限、注入、循环控制、证据与复测
- **实战技术卡**:[`techniques/`](./techniques/) — 37 张 YAML 技术卡,含触发信号/payload/判据
- **实战技术卡**:[`techniques/`](./techniques/) — 38 张 YAML 技术卡,含触发信号/payload/判据
- **深度专题**:[`references/`](./references/) — 10 个专题 56 篇文档
- **知识蒸馏**:[`knowledge/`](./knowledge/) — 16 个分类 150+ 条目
- **案例复盘**:[`cases/`](./cases/) — 11 个攻防案例
Expand Down
Loading