AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-72127

UNKNOWN · CVSS N/A

Source: NVD + CISA KEV + EPSS · Published 2026-08-15 · Last synced 2026-08-15

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's netdev-genl subsystem, where the netdev_nl_napi_fill_one() function incorrectly reports the NAPI kthread PID in the initial PID namespace instead of the caller's namespace. This flaw allows a caller in a child PID namespace to access the global PID of the kthread, potentially exposing sensitive information about the system's process management. Organizations using Linux kernel versions affected by this issue should prioritize patching to mitigate the risk of unauthorized access to process identifiers.

CVE
CVE-2026-72127
Severity
UNKNOWN
CVSS
N/A
EPSS
N/A
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: netdev-genl: report NAPI thread PID in the caller's pid namespace netdev_nl_napi_fill_one() reports the NAPI kthread PID in NETDEV_A_NAPI_PID using task_pid_nr(), which returns the PID in the initial pid namespace. NETDEV_CMD_NAPI_GET does not have GENL_ADMIN_PERM and the netdev genl family is netnsok, so a caller in a child pid namespace can issue it. That caller then sees the kthread's global PID, even though the kthread is not visible in its pid namespace, where the value should be 0. Translate the PID through the caller's pid namespace, the same way commit 3799c2570982 ("io_uring/fdinfo: translate SqThread PID through caller's pid_ns") did for the io_uring SQPOLL thread. The doit and dumpit paths both run synchronously in the caller's context, so task_active_pid_ns(current) is the caller's pid namespace.