Bug 2502329 (CVE-2026-63886) - CVE-2026-63886 kernel: scsi: target: iscsi: Validate CHAP_R length before base64 decode
Summary: CVE-2026-63886 kernel: scsi: target: iscsi: Validate CHAP_R length before bas...
Keywords:
Status: NEW
Alias: CVE-2026-63886
Product: Security Response
Classification: Other
Component: vulnerability
Version: unspecified
Hardware: All
OS: Linux
high
high
Target Milestone: ---
Assignee: Product Security DevOps Team
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2026-07-19 16:02 UTC by OSIDB Bzimport
Modified: 2026-09-16 00:42 UTC (History)
2 users (show)

Fixed In Version:
Clone Of:
Environment:
Last Closed:
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Product Errata RHSA-2026:57251 0 None None None 2026-08-20 05:22:29 UTC
Red Hat Product Errata RHSA-2026:59737 0 None None None 2026-08-26 03:58:46 UTC
Red Hat Product Errata RHSA-2026:59821 0 None None None 2026-08-26 05:34:17 UTC
Red Hat Product Errata RHSA-2026:63129 0 None None None 2026-09-04 00:53:01 UTC
Red Hat Product Errata RHSA-2026:64767 0 None None None 2026-09-08 00:23:49 UTC
Red Hat Product Errata RHSA-2026:65708 0 None None None 2026-09-09 01:06:32 UTC
Red Hat Product Errata RHSA-2026:65712 0 None None None 2026-09-09 00:57:48 UTC
Red Hat Product Errata RHSA-2026:67721 0 None None None 2026-09-16 00:14:32 UTC
Red Hat Product Errata RHSA-2026:67723 0 None None None 2026-09-16 00:42:17 UTC

Description OSIDB Bzimport 2026-07-19 16:02:14 UTC
In the Linux kernel, the following vulnerability has been resolved:

scsi: target: iscsi: Validate CHAP_R length before base64 decode

chap_server_compute_hash() allocates client_digest as
kzalloc(chap->digest_size) and then, for BASE64-encoded responses,
passes chap_r directly to chap_base64_decode() without checking whether
the input length could produce more than digest_size bytes of output.

chap_base64_decode() writes to the destination unconditionally as long
as there is input to consume. With MAX_RESPONSE_LENGTH set to 128 and
the "0b" prefix stripped by extract_param(), up to 127 base64 characters
can reach the decoder. 127 characters decode to 95 bytes. For SHA-256
(digest_size=32) this overflows client_digest by 63 bytes; for MD5
(digest_size=16) the overflow is 79 bytes.

The length check at line 344 fires after the write has already happened.

The HEX branch in the same switch statement already validates the length
up front. Apply the same approach to the BASE64 branch: strip trailing
base64 padding characters, then reject any input whose data length
exceeds DIV_ROUND_UP(digest_size * 4, 3) before calling the decoder.

Stripping trailing '=' before the comparison handles both padded and
unpadded encodings. chap_base64_decode() already returns early on '=',
so the full original string is still passed to the decoder unchanged.

The mutual CHAP path decodes CHAP_C into initiatorchg_binhex, which is
kzalloc(CHAP_CHALLENGE_STR_LEN). extract_param() caps initiatorchg at
CHAP_CHALLENGE_STR_LEN characters, so at most CHAP_CHALLENGE_STR_LEN-1
base64 characters reach the decoder. The maximum decoded size,
DIV_ROUND_UP((CHAP_CHALLENGE_STR_LEN-1) * 3, 4), is less than
CHAP_CHALLENGE_STR_LEN, so no overflow is possible there. A comment is
added at the call site to document this.

Comment 7 errata-xmlrpc 2026-08-20 05:22:28 UTC
This issue has been addressed in the following products:

  Red Hat Enterprise Linux 10

Via RHSA-2026:57251 https://access.redhat.com/errata/RHSA-2026:57251

Comment 8 errata-xmlrpc 2026-08-26 03:58:45 UTC
This issue has been addressed in the following products:

  Red Hat Enterprise Linux 8

Via RHSA-2026:59737 https://access.redhat.com/errata/RHSA-2026:59737

Comment 9 errata-xmlrpc 2026-08-26 05:34:16 UTC
This issue has been addressed in the following products:

  Red Hat Enterprise Linux 8

Via RHSA-2026:59821 https://access.redhat.com/errata/RHSA-2026:59821

Comment 10 errata-xmlrpc 2026-09-04 00:53:00 UTC
This issue has been addressed in the following products:

  Red Hat Enterprise Linux 9

Via RHSA-2026:63129 https://access.redhat.com/errata/RHSA-2026:63129

Comment 11 errata-xmlrpc 2026-09-08 00:23:49 UTC
This issue has been addressed in the following products:

  Red Hat Enterprise Linux 10.0 Extended Update Support

Via RHSA-2026:64767 https://access.redhat.com/errata/RHSA-2026:64767

Comment 12 errata-xmlrpc 2026-09-09 00:57:47 UTC
This issue has been addressed in the following products:

  Red Hat Enterprise Linux 9.4 Update Services for SAP Solutions

Via RHSA-2026:65712 https://access.redhat.com/errata/RHSA-2026:65712

Comment 13 errata-xmlrpc 2026-09-09 01:06:31 UTC
This issue has been addressed in the following products:

  Red Hat Enterprise Linux 9.6 Extended Update Support

Via RHSA-2026:65708 https://access.redhat.com/errata/RHSA-2026:65708

Comment 14 Jon Orris 2026-09-16 00:14:31 UTC
This issue has been addressed in the following products:

  Red Hat Enterprise Linux 9.2 Update Services for SAP Solutions

Via RHSA-2026:67721 https://access.redhat.com/errata/RHSA-2026:67721

Comment 15 Jon Orris 2026-09-16 00:42:16 UTC
This issue has been addressed in the following products:

  Red Hat Enterprise Linux 9.2 Update Services for SAP Solutions

Via RHSA-2026:67723 https://access.redhat.com/errata/RHSA-2026:67723


Note You need to log in before you can comment on or make changes to this bug.