Get a Demo

Let's Patch It!

Book a short call with one our specialists, we'll walk you through how Endor Patches work, and ask you a few questions about your environment (like your primary programming languages and repository management). We'll also send you an email right after you fill out the form, feel free to reply with any questions you have in advance!

CVE

CVE-2026-64320

nvmet: fix pre-auth out-of-bounds heap read in Discovery Get Log Page
Back to all
CVE

CVE-2026-64320

nvmet: fix pre-auth out-of-bounds heap read in Discovery Get Log Page

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

nvmet: fix pre-auth out-of-bounds heap read in Discovery Get Log Page

nvmetexecutediscgetlog_page() validates only the dword alignment

of the host-supplied Log Page Offset (lpo).  The 64-bit offset is then

added to a small kzalloc'd buffer that holds the discovery log page

and the result is passed straight to nvmetcopyto_sgl(), which

memcpy()s data_len bytes out to the host with no source-side bound

check:

    u64 offset      = nvmetgetlogpageoffset(req->cmd);  / 64-bit host /

    sizet datalen = nvmetgetlogpagelen(req->cmd);     / 32-bit host /

    ...

    if (offset & 0x3) { ... }                               / only check /

    ...

    alloclen = sizeof(*hdr) + entrysize * discoverylogentries(req);

    buffer = kzalloc(alloclen, GFPKERNEL);

    ...

    status = nvmetcopytosgl(req, 0, buffer + offset, datalen);

The Discovery controller is unauthenticated -- nvmethostallowed()

returns true unconditionally for the discovery subsystem -- so the call

is reachable pre-authentication by any TCP/RDMA/FC peer that can reach

the nvmet target.  With a discovery log page of ~1 KiB, an attacker

requesting up to 4 KiB starting at offset == alloc_len reads the next

slab page out and gets its content returned over the fabric (an

empirical run on a default nvmet-tcp loopback target leaked 81

canonical kernel pointers in one Get Log Page response).  Pointing the

offset at unmapped kernel memory faults the in-kernel memcpy and

crashes (or panics, on paniconoops=1) the target host instead.

The attacker-controlled source-side offset pattern

"nvmetcopytosgl(req, 0, buffer + ATTACKEROFFSET, ...)" is unique

to nvmetexecutediscgetlog_page in the entire nvmet codebase: every

other Get Log Page handler in admin-cmd.c either ignores lpo (and

silently starts every response at offset 0) or tracks a local

destination offset with a fixed source pointer.

Validate the host-supplied offset against the log page size, cap the

copy length to what is actually available, and zero-fill any remainder

of the host transfer buffer.  The zero-fill matches the existing

short-response pattern in nvmetexecutegetlogchanged_ns()

(admin-cmd.c) and prevents leaking transport SGL contents when the

host asks for more bytes than the log page contains.

Package Versions Affected

Package Version
patch Availability
No items found.

Automatically patch vulnerabilities without upgrading

Fix Without Upgrading
Detect compatible fix
Apply safe remediation
Fix with a single pull request

CVSS Version

Severity
Base Score
CVSS Version
Score Vector
C
H
U
9.1
-
3.1
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H
C
H
U
0
-
3.1
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H
C
H
U
-

Related Resources

No items found.

References

https://git.kernel.org/stable/c/33b974eb626154ae9348f2bac7de84cb2a3d9dd4, https://git.kernel.org/stable/c/53cd102a7a56079b11b897835bd9b94c14e6322c, https://git.kernel.org/stable/c/56c021a0869260d04c4b65d1471936aaf9177114, https://git.kernel.org/stable/c/a29b316b9bbfd269f323ab4ba9906a894025680f, https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/64xxx/CVE-2026-64320.json, https://nvd.nist.gov/vuln/detail/CVE-2026-64320, https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Severity

9.1

CVSS Score
0
10

Basic Information

Base CVSS
9.1
EPSS Probability
0.00748%
EPSS Percentile
0.52879%
Introduced Version
a07b4970f464f13640e28e16dad6cfa33647cc99,4.8.0,6.13.0,6.19.0,0
Fix Available
53cd102a7a56079b11b897835bd9b94c14e6322c,6.12.96,6.18.39,7.1.4,0:4.18.0-553.158.1.rt7.499.el8_10,0:4.18.0-553.158.1.el8_10,6.12.0-211.50.1.el10_2,6.12.100-1~deb12u1,6.12.96-1,7.0.0-1012.12~24.04.1,7.0.0-1011.11~24.04.1,7.0.0-31.31~24.04.1,7.0.0-31.31.1~24.04.1,0:5.14.0-687.45.1.el9_8,0:6.12.0-206.104.3.3.el9uek,0:6.12.0-206.104.3.3.el10uek,0:6.12.0-211.50.1.el10_2,0:5.10.265-265.1078.amzn2,0:1.0-0.amzn2

Fix Critical Vulnerabilities Instantly

Secure your app without upgrading.
Fix Without Upgrading