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 — Patch released 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
54%
KEV
Not listed

Published

July 19, 2026

Last Modified

August 5, 2026

Advisory Details (8)

Auto-updated Sep 16, 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

Patch Availability(13)

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 (141 versions)7.0.12-1

Additional Vendor Advisories

(6)

Data Freshness Timeline

(refreshed 38× in last 7d / 181× 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 499 total refreshes for this CVE.

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

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 45.7% 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.