CVE-2026-64320
Last modified
CVE-2026-64320 is a critical-severity vulnerability rated 9.1/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: nvmet: fix pre-auth out-of-bounds heap read in Discovery Get Log Page nvmet_execute_disc_get_log_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 nvmet_copy_to_sgl(), which memcpy()s data_len bytes out to the host with no source-side bound check: u64 offset = nvmet_get_log_page_offset(req->cmd); /* 64-bit host */ size_t data_len = nvmet_get_log_page_len(req->cmd); /* 32-bit host */ ... if (offset & 0x3) { ... EPSS estimates a 0.73% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: nvmet: fix pre-auth out-of-bounds heap read in Discovery Get Log Page nvmet_execute_disc_get_log_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 nvmet_copy_to_sgl(), which memcpy()s data_len bytes out to the host with no source-side bound check: u64 offset = nvmet_get_log_page_offset(req->cmd); /* 64-bit host */ size_t data_len = nvmet_get_log_page_len(req->cmd); /* 32-bit host */ ... if (offset & 0x3) { ... } /* only check */ ... alloc_len = sizeof(*hdr) + entry_size * discovery_log_entries(req); buffer = kzalloc(alloc_len, GFP_KERNEL); ... status = nvmet_copy_to_sgl(req, 0, buffer + offset, data_len); The Discovery controller is unauthenticated -- nvmet_host_allowed() 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 panic_on_oops=1) the target host instead. The attacker-controlled source-side offset pattern "nvmet_copy_to_sgl(req, 0, buffer + ATTACKER_OFFSET, ...)" is unique to nvmet_execute_disc_get_log_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 nvmet_execute_get_log_changed_ns() (admin-cmd.c) and prevents leaking transport SGL contents when the host asks for more bytes than the log page contains.
Metrics
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= a07b4970f464f13640e28e16dad6cfa33647cc99, < 33b974eb626154ae9348f2bac7de84cb2a3d9dd4; >= a07b4970f464f13640e28e16dad6cfa33647cc99, < 56c021a0869260d04c4b65d1471936aaf9177114; >= a07b4970f464f13640e28e16dad6cfa33647cc99, < a29b316b9bbfd269f323ab4ba9906a894025680f; >= a07b4970f464f13640e28e16dad6cfa33647cc99, < 53cd102a7a56079b11b897835bd9b94c14e6322c |
| Linux | Linux | 4.8 |
References
Timeline
- Published
- Last Modified
- Status
- Awaiting Analysis
Frequently Asked Questions
What is CVE-2026-64320?
How severe is CVE-2026-64320?
How do I fix CVE-2026-64320?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-64315In the Linux kernel, the following vulnerability has been re…7
- CVE-2026-64316In the Linux kernel, the following vulnerability has been re…
- CVE-2026-64317In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2026-64318In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2026-64319In the Linux kernel, the following vulnerability has been re…9.1
- CVE-2026-6432Improper bounds validation in EmberZNet SDK versions 9.0.2 a…5.3
- CVE-2026-64321In the Linux kernel, the following vulnerability has been re…
- CVE-2026-64322In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-64323In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2026-64324In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-64325In the Linux kernel, the following vulnerability has been re…
- CVE-2026-64326In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-64320?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
