CVE-2026-64320

CRITICALPre-NVD 9.19.1
EchelonGraph scoreMEDIUM confidence

Score 9.1 from GitHub Security Advisory (severity: CRITICAL) published 2026-07-25. a secondary CVSS source baseline 9.1; sources differ by 0.0.

Triggered by: GitHub Security Advisory CVSS
Sources: epss, ghsa, secondary
Trending — Patch released this week
9.1EG
EchelonGraph verdictPlan a fixSerious severity, but no confirmed exploitation yet.
  • High severity, but no confirmed exploitation yet
CISA-KEV: Not listedEPSS PROB: 1%CVSS: 9.1Exploit: None knownExposed: 0

A fix is available — apply it.

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.

CVSS v3
9.1
EG Score
9.1(medium)
EG Risk
46(Track)
EG Risk 46/100SSVC: Track

EG Risk is EchelonGraph's 0–100 priority score: it fuses intrinsic severity with real-world exploitation and automatability so you can rank equal-severity CVEs and fix the most dangerous first. Higher = act sooner. Distinct from the 0–10 EG Score (severity).

How it’s computed
Severity91% × 45%
Exploitation1% × 40%
Automatability30% × 15%
Action: Routine — remediate on your standard cadence.
EPSS PROB
1%
EPSS %ILE
52%
KEV
Not listed

Published

July 25, 2026

Last Modified

August 17, 2026

Advisory Details (4)

Auto-updated Aug 29, 2026
No patch confirmed yet.
generic

nvmet: fix pre-auth out-of-bounds heap read in Discovery Get Log Page - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/a29b316b9bbfd269f323ab4ba9906a894025680f
generic

nvmet: fix pre-auth out-of-bounds heap read in Discovery Get Log Page - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/56c021a0869260d04c4b65d1471936aaf9177114
generic

nvmet: fix pre-auth out-of-bounds heap read in Discovery Get Log Page - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/53cd102a7a56079b11b897835bd9b94c14e6322c
generic

nvmet: fix pre-auth out-of-bounds heap read in Discovery Get Log Page - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/33b974eb626154ae9348f2bac7de84cb2a3d9dd4

Vendor Advisories for CVE-2026-64320(2)

These vendors published their own advisory mentioning this CVE — often with vendor-specific remediation steps + affected product lists not in NVD.

Patch Availability(2)

Vendor / EcosystemFixed in / PatchReleasedSource
redhatkernel-rt-0:4.18.0-553.158.1.rt7.499.el8_102026-08-26redhat
redhatkernel-0:4.18.0-553.158.1.el8_102026-08-26redhat

Patches are aggregated from vendor advisories (Red Hat, Microsoft, Cisco, GitHub) and package ecosystems (OSV, GHSA). Multiple rows for the same upstream release have been deduplicated.

Affected Packages

(5 across 4 ecosystems)
Debian:12(2)
PackageVulnerable rangeFixed inDependents
linux6.1.106-1 ... 7.2~rc5-1~exp1 (338 versions)
linux-6.126.12.100-1~deb12u1
Debian:11(1)
PackageVulnerable rangeFixed inDependents
linux5.10.103-1 ... 7.2~rc5-1~exp1 (500 versions)
Debian:13(1)
PackageVulnerable rangeFixed inDependents
linux6.12.38-1 ... 6.12.95-1~bpo12+1 (30 versions)6.12.96-1
Debian:14(1)
PackageVulnerable rangeFixed inDependents
linux6.12.100-1 ... 7.1~rc7-1~exp1 (156 versions)7.1.4-1

All Vendor Advisories

(2)

Every vendor that published an advisory referencing this CVE — pulled from our cve_vendor_advisories aggregation. Click any row for the vendor's original advisory page.

Data Freshness Timeline

(refreshed 48× in last 7d / 225× in last 30d)

Each row is a source pipeline that fetched or updated this CVE on that date, with what changed. For example, "NVD update" means NVD published or revised its analysis for this CVE; "MITRE cvelistV5" means we ingested or refreshed it from the CNA feed. Most recent first.

Showing the most recent 100 of 270 total refreshes for this CVE.

  1. 2026-08-30 04:26 UTCEG score recompute
  2. 2026-08-30 04:26 UTCVendor advisory
  3. 2026-08-30 04:26 UTCGHSA enrichment
  4. 2026-08-30 01:22 UTCEPSS rescore
  5. 2026-08-30 00:11 UTCEG score recompute
  6. 2026-08-30 00:11 UTCVendor advisory
  7. 2026-08-30 00:10 UTCGHSA enrichment
  8. 2026-08-28 21:42 UTCEPSS rescore
  9. 2026-08-28 01:28 UTCVendor advisory
  10. 2026-08-28 01:28 UTCGHSA enrichment
  11. 2026-08-27 21:06 UTCEG score recompute
  12. 2026-08-27 21:06 UTCVendor advisory
  13. 2026-08-27 21:06 UTCGHSA enrichment
  14. 2026-08-27 14:12 UTCVendor advisory
  15. 2026-08-27 14:12 UTCGHSA enrichment
  16. 2026-08-27 09:57 UTCVendor advisory
  17. 2026-08-27 09:57 UTCGHSA enrichment
  18. 2026-08-27 04:44 UTCVendor advisory
  19. 2026-08-27 04:44 UTCGHSA enrichment
  20. 2026-08-27 00:07 UTCVendor advisory
  21. 2026-08-27 00:07 UTCGHSA enrichment
  22. 2026-08-26 19:50 UTCEG score recompute
  23. 2026-08-26 19:50 UTCVendor advisory
  24. 2026-08-26 19:50 UTCGHSA enrichment
  25. 2026-08-26 14:47 UTCEPSS rescore
Show 75 more
  1. 2026-08-26 12:56 UTCVendor advisory
  2. 2026-08-26 12:56 UTCGHSA enrichment
  3. 2026-08-26 08:42 UTCGHSA enrichment
  4. 2026-08-26 04:27 UTCGHSA enrichment
  5. 2026-08-25 23:49 UTCGHSA enrichment
  6. 2026-08-25 19:35 UTCGHSA enrichment
  7. 2026-08-25 15:19 UTCEG score recompute
  8. 2026-08-25 15:19 UTCGHSA enrichment
  9. 2026-08-25 13:49 UTCEPSS rescore
  10. 2026-08-25 11:05 UTCGHSA enrichment
  11. 2026-08-25 06:50 UTCGHSA enrichment
  12. 2026-08-25 02:35 UTCGHSA enrichment
  13. 2026-08-24 22:18 UTCGHSA enrichment
  14. 2026-08-24 18:03 UTCEG score recompute
  15. 2026-08-24 18:03 UTCGHSA enrichment
  16. 2026-08-24 12:18 UTCEG score recompute
  17. 2026-08-24 12:18 UTCGHSA enrichment
  18. 2026-08-24 08:03 UTCGHSA enrichment
  19. 2026-08-24 03:47 UTCGHSA enrichment
  20. 2026-08-23 23:32 UTCGHSA enrichment
  21. 2026-08-23 19:18 UTCGHSA enrichment
  22. 2026-08-23 15:03 UTCGHSA enrichment
  23. 2026-08-23 10:47 UTCGHSA enrichment
  24. 2026-08-23 06:32 UTCGHSA enrichment
  25. 2026-08-23 02:18 UTCEG score recompute
  26. 2026-08-23 02:18 UTCGHSA enrichment
  27. 2026-08-23 00:19 UTCEPSS rescore
  28. 2026-08-22 22:01 UTCGHSA enrichment
  29. 2026-08-22 17:46 UTCGHSA enrichment
  30. 2026-08-22 13:31 UTCGHSA enrichment
  31. 2026-08-22 09:12 UTCGHSA enrichment
  32. 2026-08-22 04:57 UTCGHSA enrichment
  33. 2026-08-22 00:42 UTCEG score recompute
  34. 2026-08-22 00:42 UTCGHSA enrichment
  35. 2026-08-21 23:49 UTCEPSS rescore
  36. 2026-08-21 20:27 UTCGHSA enrichment
  37. 2026-08-21 16:12 UTCGHSA enrichment
  38. 2026-08-21 11:50 UTCGHSA enrichment
  39. 2026-08-21 07:35 UTCGHSA enrichment
  40. 2026-08-21 03:20 UTCGHSA enrichment
  41. 2026-08-20 22:59 UTCEG score recompute
  42. 2026-08-20 22:58 UTCGHSA enrichment
  43. 2026-08-20 22:55 UTCEPSS rescore
  44. 2026-08-20 18:44 UTCGHSA enrichment
  45. 2026-08-20 14:29 UTCGHSA enrichment
  46. 2026-08-20 09:28 UTCGHSA enrichment
  47. 2026-08-20 05:14 UTCGHSA enrichment
  48. 2026-08-20 00:56 UTCGHSA enrichment
  49. 2026-08-19 20:35 UTCEG score recompute
  50. 2026-08-19 20:35 UTCGHSA enrichment
  51. 2026-08-19 17:04 UTCEPSS rescore
  52. 2026-08-19 16:21 UTCGHSA enrichment
  53. 2026-08-19 12:06 UTCGHSA enrichment
  54. 2026-08-19 07:51 UTCGHSA enrichment
  55. 2026-08-19 03:35 UTCGHSA enrichment
  56. 2026-08-18 23:04 UTCGHSA enrichment
  57. 2026-08-18 18:50 UTCEG score recompute
  58. 2026-08-18 18:50 UTCGHSA enrichment
  59. 2026-08-18 13:48 UTCEPSS rescore
  60. 2026-08-18 09:55 UTCGHSA enrichment
  61. 2026-08-18 05:40 UTCGHSA enrichment
  62. 2026-08-18 01:26 UTCGHSA enrichment
  63. 2026-08-17 20:19 UTCGHSA enrichment
  64. 2026-08-17 13:49 UTCEG score recompute
  65. 2026-08-17 13:49 UTCGHSA enrichment
  66. 2026-08-17 13:47 UTCEPSS rescore
  67. 2026-08-17 09:34 UTCEG score recompute
  68. 2026-08-17 09:34 UTCGHSA enrichment
  69. 2026-08-17 05:20 UTCEG score recompute
  70. 2026-08-17 05:20 UTCGHSA enrichment
  71. 2026-08-17 02:44 UTCGHSA enrichment
  72. 2026-08-16 22:29 UTCGHSA enrichment
  73. 2026-08-16 18:14 UTCEG score recompute
  74. 2026-08-16 18:14 UTCGHSA enrichment
  75. 2026-08-16 14:56 UTCEPSS rescore

Frequently asked(5)

What is CVE-2026-64320?
CVE-2026-64320 is a critical vulnerability published on July 25, 2026. 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…
When was CVE-2026-64320 disclosed?
CVE-2026-64320 was first published in the National Vulnerability Database on July 25, 2026, with the most recent update on August 17, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
Is CVE-2026-64320 actively exploited?
CVE-2026-64320 is not currently on CISA's Known Exploited Vulnerabilities catalog. FIRST EPSS estimates a 1% probability of exploitation in the next 30 days, which ranks it in the top 48.1% of all scored CVEs.
What is the CVSS score of CVE-2026-64320?
CVE-2026-64320 has a CVSS v3 base score of 9.1 (NVD).
How do I remediate CVE-2026-64320?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-64320, EchelonGraph cross-links them in the Vendor Advisories panel below — those typically contain the canonical remediation steps, fixed version numbers, and any vendor-specific mitigations.

Dependency Blast Radius

See which npm, PyPI, Go, and Maven packages are affected by CVE-2026-64320

Explore →

Is Your Infrastructure Affected by CVE-2026-64320?

EchelonGraph automatically scans your cloud infrastructure and maps CVE exposure using blast radius analysis.