CVE-2026-63887
Gravedad CVSS v3.1:
CRÍTICA
Tipo:
No Disponible / Otro tipo
Fecha de publicación:
19/07/2026
Última modificación:
27/07/2026
Descripción
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
scsi: target: iscsi: Bound iscsi_encode_text_output() appends to rsp_buf<br />
<br />
iscsi_encode_text_output() concatenates "key=value\0" records into<br />
login->rsp_buf, an 8192-byte kzalloc(MAX_KEY_VALUE_PAIRS) buffer<br />
allocated in iscsit_alloc_login_setup_buffer(). The three sprintf() call<br />
sites in this function (lines 1398, 1411, 1424 in v7.1-rc2) never check<br />
the remaining buffer capacity:<br />
<br />
*length += sprintf(output_buf, "%s=%s", er->key, er->value);<br />
*length += 1;<br />
output_buf = textbuf + *length;<br />
<br />
The 8192-byte ceiling at iscsi_target_check_login_request() bounds the<br />
*input* Login PDU payload, but a single PDU can carry up to 2048 minimal<br />
four-byte "a=b\0" pairs, each unknown key expanding to a 16-byte<br />
"a=NotUnderstood\0" output record via iscsi_add_notunderstood_response().<br />
2048 * 16 = 32 KiB of output into an 8 KiB buffer, producing a ~24 KiB<br />
heap overrun in the kmalloc-8k slab.<br />
<br />
The fix introduces a static iscsi_encode_text_record() helper that uses<br />
snprintf() with a per-call bounds check against the remaining buffer,<br />
and threads a u32 textbuf_size parameter through<br />
iscsi_encode_text_output(). Both call sites in<br />
iscsi_target_handle_csg_zero() (PHASE_SECURITY) and<br />
iscsi_target_handle_csg_one() (PHASE_OPERATIONAL) pass<br />
MAX_KEY_VALUE_PAIRS. On overflow the encoder logs the condition, calls<br />
iscsi_release_extra_responses() to drop queued records, and returns -1;<br />
both caller sites now emit ISCSI_STATUS_CLS_INITIATOR_ERR /<br />
ISCSI_LOGIN_STATUS_INIT_ERR via iscsit_tx_login_rsp() before returning,<br />
so the initiator sees an explicit failed-login response rather than a<br />
silent connection drop. (Prior to this patch only the PHASE_OPERATIONAL<br />
caller did that; the PHASE_SECURITY caller is converted to the same<br />
shape.)
Impacto
Puntuación base 3.x
9.80
Gravedad 3.x
CRÍTICA
Referencias a soluciones, herramientas e información
- https://git.kernel.org/stable/c/26e4a304b7e6f1338c675d527608d32549c091db
- https://git.kernel.org/stable/c/30bf335e8fe170322080ee001f05ca29c50680b3
- https://git.kernel.org/stable/c/4e9f0c4a645c995bc75c06c7b3644254ffb4c76b
- https://git.kernel.org/stable/c/594a40360012ce5f94c715d5e3b20fa3af7d525a
- https://git.kernel.org/stable/c/b19382dfc6e7dee6d3859ba44b6ca29e97a51627
- https://git.kernel.org/stable/c/bf33e01f88388c43e285492a63e539df6ffed64c
- https://git.kernel.org/stable/c/cb84e974fb172bc71386289f37b78ea679410b39
- https://git.kernel.org/stable/c/efe633e600a0ac68357206fede21b1ac8178f3b8



