AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-72150

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 sunrpc module, where the xprt_create_args structure is allocated on the stack without proper initialization, leading to potential kernel panics and information leaks. Uninitialized fields such as srcaddr and flags can result in dereferencing garbage data, causing unpredictable behavior and exposing sensitive information. System administrators and developers working with Linux kernel versions that utilize sunrpc should prioritize applying the fix to mitigate these risks.

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

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: sunrpc: fix uninitialized xprt_create_args structure The xprt_create_args structure is allocated on the stack without initialization in rpc_sysfs_xprt_switch_add_xprt_store(). While some fields are manually populated, critical fields like srcaddr, bc_xps, and flags contain uninitialized stack garbage. This can lead to: 1. Kernel panic when xs_setup_xprt() dereferences garbage srcaddr 2. Information leak if srcaddr points to sensitive stack data 3. Unpredictable behavior if flags has random bits set The fix is to zero-initialize the structure to ensure all unused fields are NULL/0, preventing the transport setup code from acting on garbage data.