SEPTEMBER 19, 2026
Live Feed
Back to database
Case File

CVE-2026-80791

UNKNOWN · CVSS N/A EPSS 0.21%

Source: NVD + CISA KEV + EPSS · Published 2026-09-04 · Last synced 2026-09-19

CyberRota Analysis

AI-Generated

The vulnerability in the Linux kernel affects the nvmet-auth component, where the AUTH_RECEIVE response buffer is not properly zeroed, potentially exposing uninitialized memory to remote initiators during the pre-authentication handshake. This could lead to information disclosure, as attackers may receive sensitive data from the memory beyond the intended message. Organizations utilizing Linux systems with nvmet-auth should prioritize patching this vulnerability to mitigate the risk of data leakage.

CVE
CVE-2026-80791
Severity
UNKNOWN
CVSS
N/A
EPSS
0.21%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: nvmet-auth: zero the AUTH_RECEIVE response buffer nvmet_execute_auth_receive() allocates the response buffer with kmalloc() sized by the host-supplied AUTH_RECEIVE allocation length, but the DH-HMAC-CHAP builders write only a fixed-size message into it. The full allocation length is then copied to the wire by nvmet_copy_to_sgl(), so a remote initiator receives the bytes past the built message -- up to nearly a page of uninitialized slab -- during the pre-authentication handshake. Allocate the buffer with kzalloc() so the unwritten tail is zeroed before it is sent; conforming responses are unaffected.