You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
procfs vulnerability
About this tag
The procfs vulnerability tag covers Linux kernel flaws in the proc filesystem, including buffer sizing errors and use-after-free races. Recent discussions highlight CVE-2026-31630, an off-by-one in AF_RXRPC procfs code where IPv6 addresses overflow fixed buffers, and CVE-2025-21999, a use-after-free race between module removal and inode creation. These vulnerabilities pose risks of kernel crashes or memory corruption, with fixes involving targeted patches to remove unsafe dereferences or adjust buffer sizes. Administrators should assess exposure based on kernel commits and distribution advisories.
CVE-2026-31630 is a small-looking Linux kernel fix with a larger lesson: buffer sizing still matters, even in diagnostic paths that most users never touch. The flaw sits in the AF_RXRPC procfs code, where socket addresses were formatted into fixed 50-byte stack buffers even though a current...
A newly disclosed Linux-kernel vulnerability, tracked as CVE‑2025‑21999, patches a use‑after‑free (UAF) race in the proc filesystem: a race between module removal (rmmod) and inode creation in proc_get_inode() could let the kernel dereference a freed module pointer and crash or corrupt kernel...