
ट्रैकिंग पिनचोरी (CVE-2026-43494, CVE-2026-43502), RDS zerocopy डबल-फ्री विशेषाधिकार वृद्धि
PinTheft पैच-स्थिति ट्रैकर का स्रोत: एक एकल-पृष्ठ साइट जो दर्ज करती है कि किन डिस्ट्रीब्यूशन्स ने Linux कर्नेल में RDS zerocopy double-free विशेषाधिकार वृद्धि के लिए फिक्स जारी किया है।
बग के बारे में सब कुछ — CVE IDs, प्रभावित और फिक्स किए गए संस्करण, अपस्ट्रीम फिक्स कमिट, खोज और प्रकटीकरण का श्रेय, और अंतिम प्रति-डिस्ट्रीब्यूशन पैच स्थिति — ट्रैकर पेज का है, इस 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/pintheft/
यदि आप direnv का उपयोग करते हैं, तो एक बार direnv allow चलाएँ; जब भी आप रिपॉजिटरी में cd करेंगे, डेव शेल अपने आप सक्रिय हो जाएगा।
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 — श्रेय के साथ साझा करें और अनुकूलित करें।