
Linux 커널 PPPoE sendmsg() use-after-free에 대한 패치 상태 추적기로, 영향을 받는 버전, 업스트림 수정 사항, 배포판별 패치 상태를 기록합니다.
PPPoEject 패치 상태 추적기의 소스: 리눅스 커널의 PPPoE sendmsg() stale skb-head use-after-free에 대한 수정을 어떤 배포판이 출시했는지 기록하는 단일 페이지 사이트.
버그에 관한 모든 것 — CVE ID, 영향을 받는 버전과 수정된 버전, 업스트림 수정 커밋, 발견 및 공개 크레딧, 그리고 현재 배포판별 패치 상태 — 은 이 README가 아니라 추적기 페이지에 속한다:
site/content/_index.md그 파일을 편집하라; 이 저장소의 다른 모든 것은 빌드 인프라다.
여기에 아무것도 다시 적지 않은 것은 의도적이다. 추적기 페이지는 배포판이 수정을 출시함에 따라 개정된다 — 활발히 업데이트되는 추적기의 경우 자동 업데이트 에이전트가 하루 두 번 개정한다 — 따라서 이 README에 유지되는 사본은 조용히 썩어버릴 것이다. 요약을 다시 추가하지 말라.
배포 계획과 현재 설정 상태는 WEBSITE.md에 있다.
Hugo ≥ 0.146.0(표준 에디션이면 충분하다: 이 사이트에는 Sass나 이미지 처리가 없다)과 Go(Hugo Modules가 PaperMod 테마를 가져오기 위해)가 필요하다.
nix develop # dev shell: hugo, go, resvg + fonts, and every lookup tool
cd site
hugo server # local preview at http://localhost:1313/pppoeject/
direnv를 사용한다면, 한 번 direnv allow를 실행하면 저장소로 cd할 때마다 dev shell이 자동으로 활성화된다.
Hugo ≥ 0.146.0과 Go ≥ 1.24를 직접 설치하라(CLAUDE.md § "Build environment"에 go install 레시피가 있다), 그런 다음:
cd site
hugo server # http://localhost:1313/pppoeject/
make build # local build into site/public/
make dist # build, then rsync to haig:/pppoeject/
make banner # re-rasterise the social banner SVG → PNG (needs resvg + the banner fonts)
make dist는 먼저 make build를 실행한다. make banner는 site/assets/pppoeject-tracker.svg를 편집한 후에만 필요하다; 렌더링된 PNG는 커밋된다.
.
├── flake.nix # Nix dev environment (build, banner, publish, lookup 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/pppoeject-tracker.svg # social-banner source (→ make banner)
├── static/pppoeject-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 — 저작자 표시와 함께 공유 및 변경 가능.