AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-74286

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 PFCP (Packet Forwarding Control Protocol) implementation, where the lack of proper allocation for per-CPU statistics can lead to a NULL pointer dereference when querying device statistics. This can result in a denial of service, potentially crashing the affected system. Organizations using Linux systems that implement PFCP should prioritize this issue to ensure system stability and prevent service interruptions.

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

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: net: pfcp: allocate per-cpu tstats for PFCP netdevs PFCP uses dev_get_tstats64() as its ndo_get_stats64 callback, but pfcp_link_setup() does not request NETDEV_PCPU_STAT_TSTATS. The net core therefore leaves dev->tstats NULL for PFCP devices. Creating a PFCP rtnetlink device can immediately ask the new netdev for stats while building the RTM_NEWLINK notification. That reaches dev_get_tstats64() and dereferences the NULL dev->tstats pointer. Set pcpu_stat_type to NETDEV_PCPU_STAT_TSTATS during PFCP link setup so the net core allocates the storage expected by dev_get_tstats64().