SEPTEMBER 18, 2026
Live Feed
Back to database
Case File

CVE-2026-89505

UNKNOWN · CVSS N/A EPSS 0.16%

Source: NVD + CISA KEV + EPSS · Published 2026-09-11 · Last synced 2026-09-18

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's RDMA/uverbs subsystem, specifically in the handling of legacy bundles that lack a valid ioctl method element. An attacker could exploit this flaw to trigger a dereference of an uninitialized pointer, potentially leading to undefined behavior or system crashes. Organizations using Linux systems with RDMA capabilities should prioritize this issue to mitigate risks associated with system stability and security.

CVE
CVE-2026-89505
Severity
UNKNOWN
CVSS
N/A
EPSS
0.16%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: RDMA/uverbs: Guard legacy bundles without method_elm The legacy write() path dispatches through a uverbs_api_write_method, but the uverbs_attr_bundle passed to provider code does not have an ioctl method element. If malformed provider input causes the common uverbs validation code to emit an error message, uverbs_get_handler_fn() dereferences the uninitialized method_elm pointer. Initialize method_elm explicitly for legacy bundles and make uverbs_get_handler_fn() return NULL when no ioctl method is present. The legacy dispatcher continues to use its local write method, while the ioctl path continues to use the registered ioctl handler.