CVE-2026-64264
Received Received - Intake

Heap-based Buffer Overflow in Linux Kernel fuse-uring

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

Publication date: 2026-07-25

Last updated on: 2026-07-25

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: fuse-uring: fix EFAULT clobber in fuse_uring_commit copy_from_user() returns the number of bytes not copied as an unsigned residual on failure (1..sizeof(struct fuse_out_header)). fuse_uring_commit stores that residual in ssize_t err, sets req->out.h.error to -EFAULT, then jumps to out: with err still holding the positive residual. err = copy_from_user(&req->out.h, &ent->headers->in_out, sizeof(req->out.h)); if (err) { req->out.h.error = -EFAULT; goto out; /* err is the positive residual */ } ... out: fuse_uring_req_end(ent, req, err); fuse_uring_req_end() then runs if (error) req->out.h.error = error; which overwrites the just-assigned -EFAULT with the positive residual. FUSE callers such as fuse_simple_request() test err < 0 to detect failure, so the positive value is interpreted as success and the caller proceeds with an uninitialised or partial req->out.args. Fix by assigning err = -EFAULT in the failure branch before jumping to out, so fuse_uring_req_end() receives a negative errno and sets req->out.h.error to -EFAULT.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-07-25
Last Modified
2026-07-25
Generated
2026-07-25
AI Q&A
2026-07-25
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

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

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 is a Linux kernel vulnerability in the fuse-uring subsystem. It involves a bug where copy_from_user() fails to copy data correctly, returning a positive residual value instead of a negative error code. The code incorrectly stores this positive value in an error variable, leading to a situation where a failure is treated as success. This causes callers to proceed with uninitialized or partial data.

Detection Guidance

This vulnerability is specific to the Linux kernel's fuse-uring functionality and does not have network-based detection methods. Detection requires checking the kernel version and fuse-uring implementation for the described flaw. Examine kernel logs for fuse-related errors or crashes. Review system calls involving fuse operations for unexpected behavior.

Impact Analysis

If exploited, this vulnerability could allow an attacker to cause the system to process corrupted or incomplete data, potentially leading to crashes, data corruption, or unauthorized access. Systems using the affected fuse-uring functionality may experience undefined behavior or security breaches due to improper error handling.

Mitigation Strategies

Apply the kernel patch that fixes the fuse-uring EFAULT issue. Update to a patched Linux kernel version where this flaw is resolved. Monitor for fuse-related crashes or errors post-update. If immediate patching is not possible, consider disabling fuse-uring functionality as a temporary workaround.

Chat Assistant

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

EPSS Chart