suominen/ghostlock

GitHub: suominen/ghostlock

一个追踪 Linux 内核 rtmutex/futex 栈 use-after-free 漏洞(CVE-2026-43499)在各发行版中修复状态的单页网站源码。

Stars: 0 | Forks: 0

# GhostLock — Linux kernel rtmutex/futex 栈 UAF 追踪网站 **GhostLock** 补丁状态追踪器的源码:一个单页网站, 记录了哪些发行版已经发布了针对 Linux kernel 中 rtmutex/futex 栈 use-after-free 的修复。 ## 数据存放在哪里 关于该 bug 的所有信息——CVE ID、受影响和已修复的版本、上游 修复 commit、发现和披露致谢,以及当前各发行版的 补丁状态——均属于追踪器页面,而非此 README: - **渲染版:** - **源码:** [`site/content/_index.md`](site/content/_index.md) 编辑该文件;此 repo 中的其他所有内容均为构建基础设施。 有意不在此处重述任何内容。追踪器页面会随着 CVE 的分配 和发行版发布修复而进行更新——对于活跃更新的 追踪器,自动更新 agent 每天会更新两次——因此在此 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/ghostlock/ ``` 如果你使用 [direnv](https://direnv.net/),只需运行一次 `direnv allow`,每当你 `cd` 进入该 repo 时, 开发 shell 就会自动激活。 ### 不使用 Nix 请自行安装 Hugo extended ≥ 0.146.0 和 Go ≥ 1.24,然后执行: ``` cd site hugo server # http://localhost:1313/ghostlock/ ``` ## 构建与发布 ``` make build # local build into site/public/ make dist # build, then rsync to haig:/ghostlock/ make banner # re-rasterise the social banner SVG → PNG (needs resvg + Roboto) ``` `make dist` 会首先运行 `make build`。`make banner` 仅在 编辑了 `site/assets/ghostlock-tracker.svg` 后才需要;渲染后的 PNG 会被提交。 ## Repo 布局 ``` . ├── 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/ghostlock-tracker.svg # social-banner source (→ make banner) ├── static/ghostlock-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) — 署名共享与改编。
标签:GPT, Hugo, Linux内核, Nix, 后端开发, 日志审计, 漏洞管理, 漏洞跟踪, 静态网站