CVE-2026-89698
Received Received - Intake

Buffer Overflow in Linux Kernel NFS Daemon

Vulnerability report for CVE-2026-89698, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-09-11

Last updated on: 2026-09-11

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: nfsd: widen nfsd_genl_rqstp address fields to sockaddr_storage struct nfsd_genl_rqstp declares rq_daddr and rq_saddr as plain "struct sockaddr" (16 bytes). When an IPv6 NFS client is connected, nfsd_genl_rpc_status_compose_msg() casts these fields to "struct sockaddr_in6 *" (28 bytes) and reads sin6_addr at offset 8..24, which extends 8 bytes past the end of the 16-byte sockaddr field into the adjacent rq_flags member. The 16-byte nla_put_in6_addr then ships 8 bytes of truncated IPv6 address followed by 8 bytes of rq_flags to userspace via the NFSD_A_RPC_STATUS_SADDR6/DADDR6 netlink attributes. This is reachable by any unprivileged process in the network namespace because NFSD_CMD_RPC_STATUS_GET uses GENL_CMD_CAP_DUMP without GENL_ADMIN_PERM. Fix by widening rq_daddr and rq_saddr to struct sockaddr_storage so the IPv6 casts operate within bounds, copying sizeof(struct sockaddr_storage) bytes in the memcpy calls so the full address is captured, and zero-initializing the genl_rqstp stack variable to prevent leaking uninitialized tail bytes through netlink.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-09-11
Last Modified
2026-09-11
Generated
2026-09-12
AI Q&A
2026-09-12
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
linux linux_kernel *

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability in the Linux kernel involves a buffer overflow in the NFS server's generic netlink interface. The issue occurs when handling IPv6 addresses in NFS client connections. The kernel incorrectly casts 16-byte sockaddr structures to 28-byte sockaddr_in6 structures, causing memory corruption by reading past the intended buffer into adjacent fields. This leads to truncated IPv6 addresses being exposed to userspace via netlink attributes.

Detection Guidance

This vulnerability is specific to the Linux kernel's NFS daemon (nfsd) and involves memory corruption when handling IPv6 addresses. Detection requires checking kernel logs for NFS-related errors or examining the kernel version for the affected code paths. No direct commands are provided in the context to detect this issue.

Impact Analysis

An unprivileged local user in the network namespace could exploit this to read sensitive kernel memory or cause denial of service. The vulnerability allows partial exposure of IPv6 addresses and adjacent memory contents through netlink attributes, potentially leaking sensitive information or disrupting NFS server operations.

Mitigation Strategies

Apply the kernel patch that widens the nfsd_genl_rqstp address fields to sockaddr_storage. Update to a Linux kernel version that includes this fix. If immediate patching is not possible, restrict access to the NFSD_CMD_RPC_STATUS_GET command or disable NFS services until the patch is applied.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-89698. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart