suominen/itscape

GitHub: suominen/itscape

一个基于 Hugo 的单页静态站点,用于追踪 Linux KVM/arm64 虚拟机到宿主机逃逸漏洞(CVE-2026-46316)在各发行版中的补丁修复进度。

Stars: 0 | Forks: 0

# ITScape — Linux KVM/arm64 虚拟机到宿主机逃逸追踪站点 **ITScape** 补丁状态追踪器的源码:一个单页站点, 用于记录哪些发行版已经发布了针对 Linux 内核中 KVM/arm64 虚拟机到宿主机逃逸问题的修复。 ## 事实信息所在位置 有关此漏洞的所有信息 —— CVE ID、受影响和已修复的版本、上游 修复提交、发现与披露致谢,以及各发行版的最终 补丁状态 —— 均属于追踪页面,而非此 README: - **渲染结果:** - **源码:** [`site/content/_index.md`](site/content/_index.md) 编辑该文件;此仓库中的所有其他内容均为构建基础设施。 特此说明,此处有意不再重述任何信息。此 README 中的第二个副本 只会在修订追踪页面时变得过时。请勿再次添加 摘要。 部署计划和当前设置状态位于 [`WEBSITE.md`](WEBSITE.md)。 ## 本地开发 需要 Hugo extended (≥ 0.146.0) 和 Go(用于让 Hugo Modules 获取 PaperMod 主题)。 ### 使用 Nix(推荐) ``` nix develop # dev shell: hugo, go, git, resvg cd site hugo server # local preview at http://localhost:1313/itscape/ ``` 如果您使用 [direnv](https://direnv.net/),只需运行一次 `direnv allow`,之后每当您 `cd` 进入该仓库时,开发 shell 都会自动激活。 ### 不使用 Nix 请自行安装 Hugo extended ≥ 0.146.0 和 Go ≥ 1.24,然后: ``` cd site hugo server # http://localhost:1313/itscape/ ``` ## 构建和发布 ``` make build # local build into site/public/ make dist # build, then rsync to haig:/itscape/ make banner # re-rasterise the social banner SVG → PNG (needs resvg + Roboto) ``` `make dist` 会首先运行 `make build`。`make banner` 仅在 编辑 `site/assets/itscape-tracker.svg` 后需要;渲染出的 PNG 会被提交。 ## 仓库布局 ``` . ├── flake.nix # Nix dev environment (hugo, go, git, resvg + RPM tools) ├── .envrc # direnv hook → `use flake` ├── .gitignore ├── Makefile # `make build`, `make dist`, `make banner` ├── LICENSE # CC BY 4.0 ├── README.md # this file ├── CLAUDE.md # project instructions for Claude Code ├── WEBSITE.md # publication plan / decisions log ├── scripts/ # auto-update agent: prompt + driver ├── systemd/ # user-level timer + service units └── site/ # Hugo project ├── hugo.toml ├── content/ │ └── _index.md # the tracker (single page) ├── assets/css/extended/custom.css # PaperMod CSS overrides ├── assets/itscape-tracker.svg # social-banner source (→ make banner) ├── static/itscape-tracker.png # rendered OpenGraph banner (committed) ├── layouts/partials/ # PaperMod overrides (post_meta, extend_footer) ├── go.mod, go.sum # Hugo Modules — pulls PaperMod theme └── … # standard Hugo skeleton ``` ## 许可证 [CC BY 4.0](LICENSE) — 分享和改编时请注明出处。
标签:CVE, Hugo, KVM, Linux内核, 后端开发, 数字签名, 日志审计, 漏洞跟踪, 虚拟化逃逸, 静态网站