aleph-beth/AI-Watchtower

GitHub: aleph-beth/AI-Watchtower

一个使用 Hugo 构建的双语 AI 安全研究博客,专注于大语言模型系统的威胁分析与防御加固。

Stars: 1 | Forks: 0

# AI Watchtower AI 安全研究博客:prompt injection、MCP 漏洞、agent 威胁模型以及基于 LLM 系统的强化防御手册。 双语(FR / EN),使用 [Hugo](https://gohugo.io/) 和 [PaperMod](https://github.com/adityatelange/hugo-PaperMod) 主题构建。每次推送到 `main` 时通过 GitHub Actions 部署到 GitHub Pages。 🌐 https://aleph-beth.github.io/AI-Watchtower/ ## 项目结构 ``` . ├── hugo.toml # Hugo configuration (multilingual FR/EN) ├── archetypes/default.md # Frontmatter template for new posts ├── content/ │ ├── fr/ │ │ ├── _index.md # FR homepage │ │ ├── posts/ # FR articles │ │ └── search.md │ └── en/ │ ├── _index.md # EN homepage │ ├── posts/ # EN articles │ └── search.md ├── themes/PaperMod/ # Theme (git submodule) └── .github/workflows/hugo.yml # GitHub Pages deploy workflow ``` ## 添加新的双语文章 ``` hugo new content/fr/posts/YYYY-MM-DD-mon-article.md hugo new content/en/posts/YYYY-MM-DD-my-article.md ``` 在每个 frontmatter 中,设置**相同**的 `translationKey` 以链接语言对(语言切换器会用到它)。 ## 本地预览(可选) 如果你在本地安装了 Hugo(扩展版): ``` hugo server --buildDrafts ``` 然后打开 http://localhost:1313/。 ## 包含 submodule 进行 Clone ``` git clone --recurse-submodules https://github.com/aleph-beth/AI-Watchtower.git ``` 如果你在 clone 时没有使用 `--recurse-submodules`: ``` git submodule update --init --recursive ``` ## 启用 GitHub Pages 在 GitHub → Settings → Pages → **Source: GitHub Actions**。位于 `.github/workflows/hugo.yml` 的工作流会完成其余操作。 ## 许可证 代码:参见 [LICENSE](LICENSE)。文章内容:© aleph-beth,除非文章中另有说明,保留所有权利。
标签:DLL 劫持, Hugo, 人工智能安全, 博客, 合规性, 后端开发, 大语言模型, 威胁建模, 漏洞分析, 路径探测, 防御加固