CVE-2026-63888

CRITICALPre-NVD 9.89.8
EchelonGraph scoreMEDIUM confidence

Score 9.8 from GitHub Security Advisory (severity: CRITICAL) published 2026-07-19. the CNA's CVSS baseline 9.8; sources differ by 0.0.

Triggered by: GitHub Security Advisory CVSS
Sources: cna:linux, epss, ghsa
Trending — 4 sources updated this week
9.8EG
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.8Exploit: None knownExposed: 0

A fix is available — apply it.

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

scsi: target: iscsi: Fix CRC overread and double-free in iscsit_handle_text_cmd()

Two latent bugs in the Text-phase handler, both present since the original LIO integration in commit e48354ce078c ("iscsi-target: Add iSCSI fabric support for target v4.1"):

1) DataDigest CRC buffer overread (4 bytes past text_in).

text_in is kzalloc()'d at ALIGN(payload_length, 4). rx_size is then incremented by ISCSI_CRC_LEN to make room for the received DataDigest in the iovec, but the same (now-bumped) rx_size is passed as the buffer length to iscsit_crc_buf():

if (conn->conn_ops->DataDigest) { ... rx_size += ISCSI_CRC_LEN; } ... if (conn->conn_ops->DataDigest) { data_crc = iscsit_crc_buf(text_in, rx_size, 0, NULL);

iscsit_crc_buf() walks rx_size bytes of text_in with crc32c(), so when DataDigest is negotiated it reads 4 bytes past the end of the text_in allocation. KASAN reproduces this directly on the unpatched mainline tree as slab-out-of-bounds in crc32c() called from the Text PDU path. The OOB bytes feed crc32c() and are then compared against the initiator-supplied checksum, so the value does not flow back to the attacker, but the kernel does read past the buffer on every Text PDU with DataDigest=CRC32C.

Fix by passing the actual padded payload length (ALIGN(payload_length, 4)) that was used for the kzalloc().

2) Stale cmd->text_in_ptr re-free (double-free) on ERL>0 bad DataDigest drop.

On DataDigest mismatch with ErrorRecoveryLevel > 0 the handler silently drops the PDU and lets the initiator plug the CmdSN gap:

kfree(text_in); return 0;

cmd->text_in_ptr still points at the freed buffer. The next Text Request on the same ITT re-enters iscsit_setup_text_cmd(), which unconditionally does

kfree(cmd->text_in_ptr); cmd->text_in_ptr = NULL;

freeing the same pointer a second time. Session teardown via iscsit_release_cmd() has the same shape and hits the same double-free if the connection is dropped before a second Text Request arrives.

On an unmodified mainline tree the bug-1 CRC overread fires first on the initial valid Text Request and perturbs the subsequent state, so #4 was isolated by building a kernel with only the bug-1 hunk of this patch applied plus temporary printk() observability around the three relevant kfree() sites. The observability prints are not part of this patch. On that build, a three-PDU Text Request sequence after login produces two back-to-back splats:

BUG: KASAN: double-free in iscsit_setup_text_cmd+0x?? BUG: KASAN: double-free in iscsit_release_cmd+0x??

showing the same pointer freed in the ERL>0 drop path and again in iscsit_setup_text_cmd() (next Text Request on the same ITT) and once more in iscsit_release_cmd() (session teardown). On distro kernels with CONFIG_SLAB_FREELIST_HARDENED=y (default) the double-free becomes a remote kernel BUG(); on non-hardened kernels it corrupts the slab freelist.

Fix by clearing cmd->text_in_ptr after the kfree() in the ERL>0 drop path. With both hunks applied #4 is directly observable on the stock tree without observability printks; fixing bug-1 alone would mask #4 less, not more, so the hunks are submitted together.

Both fixes are one-liners. The Text PDU state machine is unchanged and the wire protocol is unaffected.

CVSS v3
9.8
EG Score
9.8(medium)
EG Risk
49(Track)
EG Risk 49/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
Severity98% × 45%
Exploitation1% × 40%
Automatability30% × 15%
Action: Routine — remediate on your standard cadence.
EPSS PROB
1%
EPSS %ILE
52%
KEV
Not listed

Published

July 19, 2026

Last Modified

August 5, 2026

Advisory Details (8)

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

scsi: target: iscsi: Fix CRC overread and double-free in iscsit_handle_text_cmd() - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/778c2ab142c625a8a8afa570e0f9b7873f445d99
generic

scsi: target: iscsi: Fix CRC overread and double-free in iscsit_handle_text_cmd() - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/5118ea225fe63b44207ba88047e4866e1ea43812
generic

scsi: target: iscsi: Fix CRC overread and double-free in iscsit_handle_text_cmd() - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/89c81d1228c00fa6dd91de6c1c5aa1ef8a7875e3
generic

scsi: target: iscsi: Fix CRC overread and double-free in iscsit_handle_text_cmd() - kernel/git/stable/linux.git - Linux kernel stable tree

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

scsi: target: iscsi: Fix CRC overread and double-free in iscsit_handle_text_cmd() - kernel/git/stable/linux.git - Linux kernel stable tree

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

scsi: target: iscsi: Fix CRC overread and double-free in iscsit_handle_text_cmd() - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/6e22a1cdcc8277af4acc43710577157b77a02c5d
generic

scsi: target: iscsi: Fix CRC overread and double-free in iscsit_handle_text_cmd() - kernel/git/stable/linux.git - Linux kernel stable tree

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

scsi: target: iscsi: Fix CRC overread and double-free in iscsit_handle_text_cmd() - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/f7948af0dd03de84079dcd4dc215a69fd6fbb95d

Vendor Advisories for CVE-2026-63888(2)

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

Patch Availability(3)

Vendor / EcosystemFixed in / PatchReleasedSource
ubuntulinux-tools-oracle-7.0 (7.0.0-1008.8) @ resolute2026-08-20ubuntu
ubuntulinux-tools-azure-fde-7.0 (7.0.0-1009.9) @ resolute2026-08-20ubuntu
ubuntulinux-tools-raspi-realtime-7.0 (7.0.0-1015.15) @ resolute2026-08-20ubuntu

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

(4 across 4 ecosystems)
Debian:11(1)
PackageVulnerable rangeFixed inDependents
linux5.10.103-1 ... 5.10.92-2 (54 versions)5.10.259-1
Debian:12(1)
PackageVulnerable rangeFixed inDependents
linux6.1.106-1 ... 6.1.99-1 (53 versions)6.1.176-1
Debian:13(1)
PackageVulnerable rangeFixed inDependents
linux6.12.38-1 ... 6.12.94-1~bpo12+1 (27 versions)6.12.94-1
Debian:14(1)
PackageVulnerable rangeFixed inDependents
linux6.12.100-1 ... 7.0.9-1~bpo13+1 (138 versions)7.0.12-1

All Vendor Advisories

(3)

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 85× in last 7d / 313× 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 322 total refreshes for this CVE.

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

Frequently asked(5)

What is CVE-2026-63888?
CVE-2026-63888 is a critical vulnerability published on July 19, 2026. In the Linux kernel, the following vulnerability has been resolved: scsi: target: iscsi: Fix CRC overread and double-free in iscsithandletext_cmd() Two latent bugs in the Text-phase handler, both present since the original LIO integration in commit e48354ce078c ("iscsi-target: Add iSCSI fabric…
When was CVE-2026-63888 disclosed?
CVE-2026-63888 was first published in the National Vulnerability Database on July 19, 2026, with the most recent update on August 5, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
Is CVE-2026-63888 actively exploited?
CVE-2026-63888 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.0% of all scored CVEs.
What is the CVSS score of CVE-2026-63888?
CVE-2026-63888 has a CVSS v4.0 base score of 9.8 (CNA self-assessment; NVD's own analysis pending).
How do I remediate CVE-2026-63888?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-63888, 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-63888

Explore →

Is Your Infrastructure Affected by CVE-2026-63888?

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