Skip to main content

Linux Kernel CVE-2026-64026

| EUVDEUVD-2026-45599 HIGH
2026-07-19 Linux GHSA-97h7-gm2v-v84m
7.8
CVSS 3.1 · Vendor: Linux
Share

Severity by source

Vendor (Linux) PRIMARY
7.8 HIGH
AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
vuln.today AI
7.8 HIGH

Local unprivileged user drives the race (AV:L/PR:L/AC:L), and kernel pagecache corruption yields high confidentiality, integrity, and availability impact without user interaction.

3.1 AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
4.0 AV:L/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N
SUSE
HIGH
qualitative
Red Hat
7.0 HIGH
qualitative

Primary rating from Vendor (Linux).

CVSS VectorVendor: Linux

Attack Vector
Local
Attack Complexity
Low
Privileges Required
Low
User Interaction
None
Scope
Unchanged
Confidentiality
High
Integrity
High
Availability
High

Lifecycle Timeline

5
Analysis Generated
Jul 20, 2026 - 16:55 vuln.today
CVSS changed
Jul 20, 2026 - 15:22 NVD
7.8 (HIGH)
Patch available
Jul 19, 2026 - 17:03 EUVD
CVE Published
Jul 19, 2026 - 15:39 cve.org
HIGH 7.8
CVE Published
Jul 19, 2026 - 15:39 cve.org
UNKNOWN (no severity yet)

DescriptionCVE.org

In the Linux kernel, the following vulnerability has been resolved:

rxrpc: Fix DATA decrypt vs splice() by copying data to buffer in recvmsg

This improves the fix for CVE-2026-43500.

Fix the pagecache corruption from in-place decryption of a DATA packet transmitted locally by splice() by getting rid of the packet sharing in the I/O thread and unconditionally extracting the packet content into a bounce buffer in which the buffer is decrypted. recvmsg() (or the kernel equivalent) then copies the data from the bounce buffer to the destination buffer. The sk_buff then remains unmodified.

This has an additional advantage in that the packet is then arranged in the buffer with the correct alignment required for the crypto algorithms to process directly. The performance of the crypto does seem to be a little faster and, surprisingly, the unencrypted performance doesn't seem to change much - possibly due to removing complexity from the I/O thread.

Yet another advantage is that the I/O thread doesn't have to copy packets which would slow down packet distribution, ACK generation, etc..

The buffer belongs to the call and is allocated initially at 2K, sufficiently large to hold a whole jumbo subpacket, but the buffer will be increased in size if needed. However, to take this work, MSG_PEEK may cause a later packet to be decrypted into the buffer, in which case the earlier one will need re-decrypting for a subsequent recvmsg().

Note that rx_pkt_offset may legitimately see 0 as a valid offset now, so switch to using USHRT_MAX to indicate an invalid offset.

Note also that I would generally prefer to replace the buffers of the current sk_buff with a new kmalloc'd buffer of the right size, ditching the old data and frags as this makes the handling of MSG_PEEK easier and removes the re-decryption issue, but this looks like quite a complicated thing to achieve. skb_morph() looks half way to what I want, but I don't want to have to allocate a new sk_buff.

AnalysisAI

Local information disclosure and memory corruption in the Linux kernel's rxrpc (AF_RXRPC/AFS) subsystem allows a local user of an encrypted rxrpc socket to trigger pagecache corruption because DATA packets were decrypted in-place on shared sk_buffs while splice() referenced the same pages. This is a hardening follow-up to CVE-2026-43500, replacing in-place decryption with a per-call bounce buffer so recvmsg() copies clean data and the sk_buff is never mutated. No public exploit identified at time of analysis, EPSS is low (0.17%, 6th percentile), and it is not listed in CISA KEV, consistent with a niche kernel subsystem rather than a mass-exploitation target.

Technical ContextAI

The flaw lives in rxrpc, the kernel implementation of the Rx RPC transport used primarily by the kAFS (Andrew File System) client. When a DATA packet is received on an encrypted (rxkad/rxgk) rxrpc connection, the kernel previously decrypted the payload in place within the shared sk_buff held by the I/O thread. If that same buffer's pages were simultaneously referenced by a locally transmitted splice() operation, the in-place decryption rewrote pagecache pages still owned by the splice path, corrupting file data and potentially exposing plaintext across buffers. The CPE data identifies the affected product only as linux:linux (the kernel itself); the CWE is not assigned by NVD but the behavior maps to a race/aliasing between concurrent buffer consumers (improper handling of shared memory / CWE-362-class concurrency plus buffer-content corruption). The fix extracts each packet into a call-owned 2K bounce buffer (grown as needed for jumbo subpackets), decrypts there with correct crypto alignment, leaves the sk_buff unmodified, and uses USHRT_MAX rather than 0 to flag an invalid rx_pkt_offset.

RemediationAI

Vendor-released patch: upgrade to Linux 6.6.143, 6.12.93, 6.18.35, 7.0.11, or 7.1 (or later within each series), or apply the corresponding stable commits from git.kernel.org (a05bf6d9e621fa71e89ccebe3047ba45218d7b38, b94a6ccbaf1104dd980150a65fdeb2f69d17d2f5, 46cb765e2e5ad52303ea157e10d370bb6b7acbbf, c580087743712112778a06d65a4074053072d7bf, d2bc90cf6c75cb96d2ce549be6c35efa3099d25b), tracking your distribution's kernel update for the backport. Where immediate patching is not possible, the most effective compensating control is to remove exposure to the vulnerable code path: if kAFS/rxrpc is not required, ensure CONFIG_AF_RXRPC/CONFIG_AFS_FS is not loaded (blacklist the rxrpc and kafs modules), which fully eliminates the surface with no impact on systems that do not use AFS. If AFS is in use, restrict local access to trusted users only, since exploitation requires a local account able to open rxrpc sockets; note this reduces but does not remove risk. Reference advisory: https://nvd.nist.gov/vuln/detail/CVE-2026-64026.

Vendor StatusVendor

SUSE

Severity: Important
Product Status
SUSE Linux Enterprise Desktop 15 SP7 Affected
SUSE Linux Enterprise Desktop 15 SP7 Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Affected
SUSE Linux Enterprise High Availability Extension 16.0 Affected

Share

CVE-2026-64026 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy