
Tracking IPV6_FRAG_ESCAPE (CVE-2026-53362, CVE-2026-53366), the IPv6 fragmentation container escape
IPV6_FRAG_ESCAPE 패치 상태 추적기의 소스: Linux 커널의 IPv6 조각화 컨테이너 탈출에 대한 수정을 어떤 배포판이 제공했는지 기록하는 단일 페이지 사이트입니다.
버그에 관한 모든 정보 — CVE ID, 영향받는 버전 및 수정된 버전, 업스트림 수정 커밋, 발견 및 공개 크레딧, 그리고 배포판별 최종 패치 상태 — 는 이 README가 아닌 추적기 페이지에 있습니다:
site/content/_index.md해당 파일을 편집하세요. 이 저장소의 다른 모든 것은 빌드 인프라입니다.
이 내용은 의도적으로 여기에 다시 기술하지 않습니다. 이 README에 두 번째 사본을 두면 추적기 페이지가 개정될 때마다 낡아가기만 할 것입니다 — 실제로 이미 그런 일이 있었습니다. 두 개의 CVE가 발급된 지 한참 지난 후에도 아직 CVE가 할당되지 않았다고 주장하고 있었습니다. 요약을 다시 추가하지 마십시오.
배포 계획과 현재 설정 상태는 WEBSITE.md에 있습니다.
Hugo extended(≥ 0.146.0)와 Go(Hugo Modules가 PaperMod 테마를 가져오는 데 필요)가 필요합니다.
nix develop # dev shell: hugo, go, git, resvg
cd site
hugo server # local preview at http://localhost:1313/ipv6_frag_escape/
direnv를 사용한다면 direnv allow를 한 번 실행하면 저장소에 cd할 때마다 개발 셸이 자동으로 활성화됩니다.
Hugo extended ≥ 0.146.0과 Go ≥ 1.24를 직접 설치한 후:
cd site
hugo server # http://localhost:1313/ipv6_frag_escape/
make build # local build into site/public/
make dist # build, then rsync to haig:/ipv6_frag_escape/
make banner # re-rasterise the social banner SVG → PNG (needs resvg + Roboto)
make dist는 먼저 make build를 실행합니다. make banner는 site/assets/ipv6-frag-escape-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/ipv6-frag-escape-tracker.svg # social-banner source (→ make banner)
├── static/ipv6-frag-escape-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 — 출처를 밝히면 공유 및 수정이 가능합니다.