Get a Demo

Let's Patch It!

Book a short call with one our specialists, we'll walk you through how Endor Patches work, and ask you a few questions about your environment (like your primary programming languages and repository management). We'll also send you an email right after you fill out the form, feel free to reply with any questions you have in advance!

CVE

CVE-2026-63886

scsi: target: iscsi: Validate CHAP_R length before base64 decode
Back to all
CVE

CVE-2026-63886

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

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

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

chapservercomputehash() allocates clientdigest as

kzalloc(chap->digest_size) and then, for BASE64-encoded responses,

passes chapr directly to chapbase64_decode() without checking whether

the input length could produce more than digest_size bytes of output.

chapbase64decode() writes to the destination unconditionally as long

as there is input to consume. With MAXRESPONSELENGTH 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

(digestsize=32) this overflows clientdigest 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 DIVROUNDUP(digest_size * 4, 3) before calling the decoder.

Stripping trailing '=' before the comparison handles both padded and

unpadded encodings. chapbase64decode() already returns early on '=',

so the full original string is still passed to the decoder unchanged.

The mutual CHAP path decodes CHAPC into initiatorchgbinhex, which is

kzalloc(CHAPCHALLENGESTRLEN). extractparam() caps initiatorchg at

CHAPCHALLENGESTRLEN characters, so at most CHAPCHALLENGESTRLEN-1

base64 characters reach the decoder. The maximum decoded size,

DIVROUNDUP((CHAPCHALLENGESTR_LEN-1) * 3, 4), is less than

CHAPCHALLENGESTR_LEN, so no overflow is possible there. A comment is

added at the call site to document this.

Package Versions Affected

Package Version
patch Availability
No items found.

Automatically patch vulnerabilities without upgrading

Fix Without Upgrading
Detect compatible fix
Apply safe remediation
Fix with a single pull request

CVSS Version

Severity
Base Score
CVSS Version
Score Vector
C
H
U
9.8
-
3.1
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
C
H
U
0
-
3.1
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
C
H
U
-

Related Resources

No items found.

References

https://git.kernel.org/stable/c/4a3a19c98a8207ad08bec554703d90f2c34a8cc6, https://git.kernel.org/stable/c/82454e6f21e56ea9a0a9de7d0ff7e1dfb83e34d6, https://git.kernel.org/stable/c/85db7391310b1304d2dc8ae3b0b12105a9567147, https://git.kernel.org/stable/c/bf154c657828ed05399bca5d98cf1611bb048b12, https://git.kernel.org/stable/c/c04e85799356120209b351a148ac2db888d5ffd9, https://git.kernel.org/stable/c/edd06675a02376ea8347dba7c29ad982ba5b36ee, https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/63xxx/CVE-2026-63886.json, https://nvd.nist.gov/vuln/detail/CVE-2026-63886, https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Severity

9.8

CVSS Score
0
10

Basic Information

Base CVSS
9.8
EPSS Probability
0.00711%
EPSS Percentile
0.50865%
Introduced Version
1e5733883421495908f3b90d9d807663038b4136,6.0.0,6.2.0,6.7.0,6.13.0,6.19.0,0
Fix Available
85db7391310b1304d2dc8ae3b0b12105a9567147,6.1.176,6.6.143,6.12.93,6.18.35,7.0.12,0:4.18.0-553.158.1.el8_10,0:4.18.0-553.158.1.rt7.499.el8_10,6.1.176-1,6.12.94-1,7.0.0-28.28~24.04.1,7.0.0-1016.16~24.04.1,7.0.0-28.28.1~24.04.3,0:6.12.0-211.49.1.el10_2,1:6.18.35-68.127.amzn2023,1:1.0-0.amzn2023,1:6.1.176-220.358.amzn2023,1:6.12.94-123.174.amzn2023

Fix Critical Vulnerabilities Instantly

Secure your app without upgrading.
Fix Without Upgrading