CVE-2023-52881

In the Linux kernel, the following vulnerability has been resolved: tcp: do not accept ACK of bytes we never sent This patch is based on a detailed report and ideas from Yepeng Pan and Christian Rossow. ACK seq validation is currently following RFC 5961 5.2 guidelines: The ACK value is considered acceptable only if it is in the range of ((SND.UNA - MAX.SND.WND) <= SEG.ACK <= SND.NXT). All incoming segments whose ACK value doesn't satisfy the above condition MUST be discarded and an ACK sent back. It needs to be noted that RFC 793 on page 72 (fifth check) says: "If the ACK is a duplicate (SEG.ACK < SND.UNA), it can be ignored. If the ACK acknowledges something not yet sent (SEG.ACK > SND.NXT) then send an ACK, drop the segment, and return". The "ignored" above implies that the processing of the incoming data segment continues, which means the ACK value is treated as acceptable. This mitigation makes the ACK check more stringent since any ACK < SND.UNA wouldn't be accepted, instead only ACKs that are in the range ((SND.UNA - MAX.SND.WND) <= SEG.ACK <= SND.NXT) get through. This can be refined for new (and possibly spoofed) flows, by not accepting ACK for bytes that were never sent. This greatly improves TCP security at a little cost. I added a Fixes: tag to make sure this patch will reach stable trees, even if the 'blamed' patch was adhering to the RFC. tp->bytes_acked was added in linux-4.2 Following packetdrill test (courtesy of Yepeng Pan) shows the issue at hand: 0 socket(..., SOCK_STREAM, IPPROTO_TCP) = 3 +0 setsockopt(3, SOL_SOCKET, SO_REUSEADDR, [1], 4) = 0 +0 bind(3, ..., ...) = 0 +0 listen(3, 1024) = 0 // ---------------- Handshake ------------------- // // when window scale is set to 14 the window size can be extended to // 65535 * (2^14) = 1073725440. Linux would accept an ACK packet // with ack number in (Server_ISN+1-1073725440. Server_ISN+1) // ,though this ack number acknowledges some data never // sent by the server. +0 < S 0:0(0) win 65535 <mss 1400,nop,wscale 14> +0 > S. 0:0(0) ack 1 <...> +0 < . 1:1(0) ack 1 win 65535 +0 accept(3, ..., ...) = 4 // For the established connection, we send an ACK packet, // the ack packet uses ack number 1 - 1073725300 + 2^32, // where 2^32 is used to wrap around. // Note: we used 1073725300 instead of 1073725440 to avoid possible // edge cases. // 1 - 1073725300 + 2^32 = 3221241997 // Oops, old kernels happily accept this packet. +0 < . 1:1001(1000) ack 3221241997 win 65535 // After the kernel fix the following will be replaced by a challenge ACK, // and prior malicious frame would be dropped. +0 > . 1:1(0) ack 1001
Configurations

Configuration 1 (hide)

OR cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:6.7:rc1:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:6.7:rc2:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:6.7:rc3:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:6.7:rc4:*:*:*:*:*:*

History

27 Sep 2025, 00:00

Type Values Removed Values Added
References () https://git.kernel.org/stable/c/008b807fe487e0b15a3a6c39add4eb477f73e440 - () https://git.kernel.org/stable/c/008b807fe487e0b15a3a6c39add4eb477f73e440 - Patch
References () https://git.kernel.org/stable/c/0d4e0afdd6658cd21dd5be61880411a2553fd1fc - () https://git.kernel.org/stable/c/0d4e0afdd6658cd21dd5be61880411a2553fd1fc - Patch
References () https://git.kernel.org/stable/c/2087d53a66e97a5eb5d1bf558d5bef9e5f891757 - () https://git.kernel.org/stable/c/2087d53a66e97a5eb5d1bf558d5bef9e5f891757 - Patch
References () https://git.kernel.org/stable/c/3d501dd326fb1c73f1b8206d4c6e1d7b15c07e27 - () https://git.kernel.org/stable/c/3d501dd326fb1c73f1b8206d4c6e1d7b15c07e27 - Patch
References () https://git.kernel.org/stable/c/458f07ffeccd17f99942311e09ef574ddf4a414a - () https://git.kernel.org/stable/c/458f07ffeccd17f99942311e09ef574ddf4a414a - Patch
References () https://git.kernel.org/stable/c/69eae75ca5255e876628ac5cee9eaab31f644b57 - () https://git.kernel.org/stable/c/69eae75ca5255e876628ac5cee9eaab31f644b57 - Patch
References () https://git.kernel.org/stable/c/7ffff0cc929fdfc62a74b384c4903d6496c910f0 - () https://git.kernel.org/stable/c/7ffff0cc929fdfc62a74b384c4903d6496c910f0 - Patch
References () https://git.kernel.org/stable/c/b17a886ed29f3b70b78ccf632dad03e0c69e3c1a - () https://git.kernel.org/stable/c/b17a886ed29f3b70b78ccf632dad03e0c69e3c1a - Patch
CVSS v2 : unknown
v3 : unknown
v2 : unknown
v3 : 5.5
CPE cpe:2.3:o:linux:linux_kernel:6.7:rc3:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:6.7:rc1:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:6.7:rc4:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:6.7:rc2:*:*:*:*:*:*
First Time Linux linux Kernel
Linux
CWE NVD-CWE-noinfo

21 Nov 2024, 08:40

Type Values Removed Values Added
References () https://git.kernel.org/stable/c/008b807fe487e0b15a3a6c39add4eb477f73e440 - () https://git.kernel.org/stable/c/008b807fe487e0b15a3a6c39add4eb477f73e440 -
References () https://git.kernel.org/stable/c/0d4e0afdd6658cd21dd5be61880411a2553fd1fc - () https://git.kernel.org/stable/c/0d4e0afdd6658cd21dd5be61880411a2553fd1fc -
References () https://git.kernel.org/stable/c/2087d53a66e97a5eb5d1bf558d5bef9e5f891757 - () https://git.kernel.org/stable/c/2087d53a66e97a5eb5d1bf558d5bef9e5f891757 -
References () https://git.kernel.org/stable/c/3d501dd326fb1c73f1b8206d4c6e1d7b15c07e27 - () https://git.kernel.org/stable/c/3d501dd326fb1c73f1b8206d4c6e1d7b15c07e27 -
References () https://git.kernel.org/stable/c/458f07ffeccd17f99942311e09ef574ddf4a414a - () https://git.kernel.org/stable/c/458f07ffeccd17f99942311e09ef574ddf4a414a -
References () https://git.kernel.org/stable/c/69eae75ca5255e876628ac5cee9eaab31f644b57 - () https://git.kernel.org/stable/c/69eae75ca5255e876628ac5cee9eaab31f644b57 -
References () https://git.kernel.org/stable/c/7ffff0cc929fdfc62a74b384c4903d6496c910f0 - () https://git.kernel.org/stable/c/7ffff0cc929fdfc62a74b384c4903d6496c910f0 -
References () https://git.kernel.org/stable/c/b17a886ed29f3b70b78ccf632dad03e0c69e3c1a - () https://git.kernel.org/stable/c/b17a886ed29f3b70b78ccf632dad03e0c69e3c1a -
Summary
  • (es) En el kernel de Linux, se ha resuelto la siguiente vulnerabilidad: tcp: no acepta ACK de bytes que nunca enviamos. Este parche se basa en un informe detallado e ideas de Yepeng Pan y Christian Rossow. La validación de secuencia de ACK sigue actualmente las pautas RFC 5961 5.2: El valor de ACK se considera aceptable solo si está en el rango de ((SND.UNA - MAX.SND.WND) &lt;= SEG.ACK &lt;= SND.NXT). Todos los segmentos entrantes cuyo valor ACK no satisface la condición anterior DEBEN descartarse y enviarse un ACK. Es necesario tener en cuenta que RFC 793 en la página 72 (quinta verificación) dice: "Si el ACK es un duplicado (SEG.ACK &lt; SND.UNA), se puede ignorar. Si el ACK reconoce algo que aún no se ha enviado (SEG. ACK &gt; SND.NXT) luego envía un ACK, descarta el segmento y regresa". Lo "ignorado" anterior implica que el procesamiento del segmento de datos entrantes continúa, lo que significa que el valor ACK se trata como aceptable. Esta mitigación hace que la verificación de ACK sea más estricta, ya que no se aceptará ningún ACK &lt; SND.UNA; en su lugar, solo se aceptarán ACK que estén en el rango ((SND.UNA - MAX.SND.WND) &lt;= SEG.ACK &lt;= SND. NXT) pasar. Esto se puede perfeccionar para flujos nuevos (y posiblemente falsificados) al no aceptar ACK para bytes que nunca se enviaron. Esto mejora enormemente la seguridad de TCP a un costo reducido. Agregué una etiqueta Correcciones: para asegurarme de que este parche llegue a árboles estables, incluso si el parche "culpado" se adhirió al RFC. tp-&gt;bytes_acked se agregó en Linux-4.2 La siguiente prueba de packagedrill (cortesía de Yepeng Pan) muestra el problema en cuestión: 0 socket(..., SOCK_STREAM, IPPROTO_TCP) = 3 +0 setsockopt(3, SOL_SOCKET, SO_REUSEADDR, [1 ], 4) = 0 +0 enlazar(3, ..., ...) = 0 +0 escuchar(3, 1024) = 0 // ---------------- Apretón de manos ------------------- // // cuando la escala de la ventana se establece en 14, el tamaño de la ventana se puede ampliar a // 65535 * (2^14) = 1073725440. Linux aceptaría un paquete ACK // con un número de reconocimiento en (Server_ISN+1-1073725440. Server_ISN+1) //, aunque este número de reconocimiento reconoce algunos datos // nunca enviados por el servidor. +0 &lt; S 0:0(0) win 65535 +0 &gt; S. 0:0(0) ack 1 &lt;...&gt; +0 &lt; . 1:1(0) ack 1 win 65535 +0 aceptar(3, ..., ...) = 4 // Para la conexión establecida, enviamos un paquete ACK, // el paquete de confirmación utiliza el número de confirmación 1 - 1073725300 + 2^32, // donde 2^32 se usa para envolver. // Nota: utilizamos 1073725300 en lugar de 1073725440 para evitar posibles // casos extremos. // 1 - 1073725300 + 2^32 = 3221241997 // Vaya, los núcleos antiguos aceptan felizmente este paquete. +0 &lt;. 1:1001(1000) ACK 3221241997 win 65535 // Después de la corrección del kernel, lo siguiente será reemplazado por un ACK de desafío, // y el marco malicioso anterior se eliminará. +0 &gt; . 1:1(0) reconocimiento 1001

29 May 2024, 11:16

Type Values Removed Values Added
New CVE

Information

Published : 2024-05-29 11:16

Updated : 2025-09-27 00:00


NVD link : CVE-2023-52881

Mitre link : CVE-2023-52881

CVE.ORG link : CVE-2023-52881


JSON object : View

Products Affected

linux

  • linux_kernel