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
About this tag
The procfs tag on WindowsForum.com covers security vulnerabilities and bug fixes related to the Linux kernel's proc filesystem (procfs). Recent discussions include CVE-2025-38400, a cleanup bug in the NFS proc initialization that could leave stale /proc entries; CVE-2025-38245, a race condition in the ATM driver where procfs entries could be double-registered; CVE-2025-40193, an input validation flaw in the Xtensa simdisk procfs handler that could cause a kernel crash; and CVE-2025-52881, a race condition in runc that allows container confinement bypass via procfs writes. These threads highlight procfs as a common attack surface for local privilege escalation and container escape, with fixes involving proper locking, input size checks, and cleanup ordering.
A subtle error-handling bug in the Linux kernel's NFS code — tracked as CVE-2025-38400 — has been fixed: when the initialization routine nfs_fs_proc_net_init fails, the kernel could leave behind a /proc/net/rpc/nfs entry and later log warnings or leak state during namespace teardown, a problem...
A subtle race in the Linux kernel’s ATM driver that left a small window where procfs entries could be double-registered has been cataloged as CVE-2025-38245 and fixed upstream with a small but important ordering change: make sure the atm_dev_mutex is held until procfs/sysfs entries are fully...
A small, defensive change landed in the upstream Linux kernel to address CVE‑2025‑40193 — a local input‑validation bug in the Xtensa simdisk procfs handler that could let an attacker supply an arbitrarily large size to memdup_user_nul and trigger a kernel crash — the fix adds an explicit input...
runc’s handling of procfs writes contains a dangerous race-and-redirect weakness that allows an attacker to bypass Linux Security Module (LSM) labels by misdirecting writes to fake or otherwise benign procfs files, creating a practical path to disable container confinement and to weaponize...