CVE-2026-53036
Gravedad CVSS v3.1:
ALTA
Tipo:
No Disponible / Otro tipo
Fecha de publicación:
24/06/2026
Última modificación:
15/07/2026
Descripción
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
bpf, arm64: Fix off-by-one in check_imm signed range check<br />
<br />
check_imm(bits, imm) is used in the arm64 BPF JIT to verify that<br />
a branch displacement (in arm64 instruction units) fits into the<br />
signed N-bit immediate field of a B, B.cond or CBZ/CBNZ encoding<br />
before it is handed to the encoder. The macro currently tests for<br />
(imm > 0 && imm >> bits) || (imm > bits) which admits<br />
values in [-2^N, 2^N) — effectively a signed (N+1)-bit range. A<br />
signed N-bit field only holds [-2^(N-1), 2^(N-1)), so the check<br />
admits one extra bit of range on each side.<br />
<br />
In particular, for check_imm19(), values in [2^18, 2^19) slip past<br />
the check but do not fit into the 19-bit signed imm19 field of<br />
B.cond. aarch64_insn_encode_immediate() then masks the raw value<br />
into the 19-bit field, setting bit 18 (the sign bit) and flipping<br />
a forward branch into a backward one. Same class of issue exists<br />
for check_imm26() and the B/BL encoding. Shift by (bits - 1)<br />
instead of bits so the actual signed N-bit range is enforced.
Impacto
Puntuación base 3.x
7.80
Gravedad 3.x
ALTA
Productos y versiones vulnerables
| CPE | Desde | Hasta |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 3.18 (incluyendo) | 6.1.175 (excluyendo) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.2 (incluyendo) | 6.6.141 (excluyendo) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.7 (incluyendo) | 6.12.91 (excluyendo) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.13 (incluyendo) | 6.18.33 (excluyendo) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.19 (incluyendo) | 7.0.10 (excluyendo) |
Para consultar la lista completa de nombres de CPE con productos y versiones, ver esta página
Referencias a soluciones, herramientas e información
- https://git.kernel.org/stable/c/1a113b5497297871699cd498b1b83542e0db7f15
- https://git.kernel.org/stable/c/1dd8be4ec722ce54e4cace59f3a4ba658111b3ec
- https://git.kernel.org/stable/c/6927f0d6794aa73318bbfa929f1ff6065b0620df
- https://git.kernel.org/stable/c/7fd3b41260c6120e7b60164afea5d961af6224f9
- https://git.kernel.org/stable/c/a5dfeb3b61065039488342d43ae06d4729d955d4
- https://git.kernel.org/stable/c/fb74defa1cca1a73177c0c761e641332e4f979a3



