suominen/pintheft

GitHub: suominen/pintheft

一个用 Hugo 构建的单页追踪站点,用于记录 Linux 内核 RDS zerocopy double-free 权限提升漏洞在各发行版中的补丁修复状态。

Stars: 0 | Forks: 0

# PinTheft — RDS zerocopy double-free LPE 追踪站点 **PinTheft** 补丁状态追踪器的源码:一个单页站点 记录各个发行版是否已经发布了针对 Linux 内核中 RDS zerocopy double-free 权限提升的修复。 ## 事实所在之处 关于该 bug 的所有信息 — CVE ID、受影响和已修复的版本、上游 修复提交、发现和披露致谢,以及最终的各发行版 补丁状态 — 均属于追踪器页面,而非此 README: - **渲染版本:** - **源码:** [`site/content/_index.md`](site/content/_index.md) 编辑该文件;本仓库中的所有其他内容均为构建基础设施。 此处有意不重申任何内容。如果在此 README 中保留第二份副本, 只会随着追踪器页面的修订而过时 —— 就像之前已经发生过的那样, 在两个 CVE 发布很久之后,仍声称未分配任何 CVE。请抵制重新添加摘要的冲动。 部署计划和当前设置状态位于 [`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/pintheft/ ``` 如果你使用 [direnv](https://direnv.net/),只需运行一次 `direnv allow`,之后每当你 `cd` 进入该仓库时, 开发 shell 就会自动激活。 ### 不使用 Nix 请自行安装 Hugo extended ≥ 0.146.0 和 Go ≥ 1.24,然后: ``` cd site hugo server # http://localhost:1313/pintheft/ ``` ## 构建和发布 ``` make build # local build into site/public/ make dist # build, then rsync to haig:.www/sites/kimmo.cloud/htdocs/pintheft/ make banner # re-rasterise the social banner SVG → PNG (needs resvg + Roboto) ``` `make dist` 会先运行 `make build`。`make banner` 仅在 编辑 `site/assets/pintheft-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` ├── 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/pintheft-tracker.svg # social-banner source (→ make banner) ├── static/pintheft-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, 后端开发, 安全门户网站, 日志审计, 漏洞管理, 漏洞追踪, 静态网站