suominen/januscape
GitHub: suominen/januscape
Januscape 是一个追踪 Linux KVM/x86 虚拟机逃逸漏洞在各发行版中补丁修复状态的单页网站。
Stars: 0 | Forks: 0
# Januscape — Linux KVM/x86 虚拟机到宿主机逃逸追踪网站
**Januscape** 补丁状态追踪器的源码:这是一个单页网站
记录各个发行版是否已经为 Linux 内核中的 KVM/x86
虚拟机到宿主机逃逸提供了修复。
## 事实数据存放在哪里
有关此漏洞的所有信息 —— CVE ID、受影响和已修复版本、上游
修复提交、发现与披露致谢,以及各个发行版当前的
补丁状态 —— 均属于追踪页面,而非本 README:
- **渲染页面:**
- **源码:** [`site/content/_index.md`](site/content/_index.md)
编辑该文件;本仓库中的所有其他内容均为构建基础设施。
我们有意不在此处重述任何内容。追踪页面会随着 CVE 的分配以及各发行版发布修复而进行更新 —— 对于持续更新的
追踪器,自动更新代理每天会更新两次 —— 因此保存在此
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/januscape/
```
如果你使用 [direnv](https://direnv.net/),只需运行一次 `direnv allow`,每当你 `cd` 进入该仓库时,开发
shell 就会自动激活。
### 不使用 Nix
请自行安装 Hugo extended ≥ 0.146.0 和 Go ≥ 1.24,然后:
```
cd site
hugo server # http://localhost:1313/januscape/
```
## 构建与发布
```
make build # local build into site/public/
make dist # build, then rsync to haig:/januscape/
make banner # re-rasterise the social banner SVG → PNG (needs resvg + Roboto)
```
`make dist` 会首先运行 `make build`。`make banner` 仅在
编辑 `site/assets/januscape-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/januscape-tracker.svg # social-banner source (→ make banner)
├── static/januscape-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) — 标注出处后即可分享与改编。
标签:Hugo, KVM, Linux内核, 后端开发, 日志审计, 漏洞追踪, 虚拟化逃逸, 防御加固, 静态网站