Logo
-

Byte Open Security

(ByteOS Network)

Log In

Sign Up

ByteOS

Security
Vulnerability Details
Registries
Custom Views
Weaknesses
Attack Patterns
Filters & Tools
CVE Vulnerability Details :
CVE-2026-53036
PUBLISHED
More InfoOfficial Page
Assigner-Linux
Assigner Org ID-416baaa9-dc9f-4396-8d5f-8c081fb06d67
View Known Exploited Vulnerability (KEV) details
Published At-24 Jun, 2026 | 16:29
Updated At-28 Jun, 2026 | 06:38
Rejected At-
▼CVE Numbering Authority (CNA)
bpf, arm64: Fix off-by-one in check_imm signed range check

In the Linux kernel, the following vulnerability has been resolved: bpf, arm64: Fix off-by-one in check_imm signed range check check_imm(bits, imm) is used in the arm64 BPF JIT to verify that a branch displacement (in arm64 instruction units) fits into the signed N-bit immediate field of a B, B.cond or CBZ/CBNZ encoding before it is handed to the encoder. The macro currently tests for (imm > 0 && imm >> bits) || (imm < 0 && ~imm >> bits) which admits values in [-2^N, 2^N) — effectively a signed (N+1)-bit range. A signed N-bit field only holds [-2^(N-1), 2^(N-1)), so the check admits one extra bit of range on each side. In particular, for check_imm19(), values in [2^18, 2^19) slip past the check but do not fit into the 19-bit signed imm19 field of B.cond. aarch64_insn_encode_immediate() then masks the raw value into the 19-bit field, setting bit 18 (the sign bit) and flipping a forward branch into a backward one. Same class of issue exists for check_imm26() and the B/BL encoding. Shift by (bits - 1) instead of bits so the actual signed N-bit range is enforced.

Affected Products
Vendor
Linux Kernel Organization, IncLinux
Product
Linux
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Program Files
  • arch/arm64/net/bpf_jit_comp.c
Default Status
unaffected
Versions
Affected
  • From e54bcde3d69d40023ae77727213d14f920eb264a before a5dfeb3b61065039488342d43ae06d4729d955d4 (git)
  • From e54bcde3d69d40023ae77727213d14f920eb264a before 7fd3b41260c6120e7b60164afea5d961af6224f9 (git)
  • From e54bcde3d69d40023ae77727213d14f920eb264a before 6927f0d6794aa73318bbfa929f1ff6065b0620df (git)
  • From e54bcde3d69d40023ae77727213d14f920eb264a before 1a113b5497297871699cd498b1b83542e0db7f15 (git)
  • From e54bcde3d69d40023ae77727213d14f920eb264a before fb74defa1cca1a73177c0c761e641332e4f979a3 (git)
  • From e54bcde3d69d40023ae77727213d14f920eb264a before 1dd8be4ec722ce54e4cace59f3a4ba658111b3ec (git)
Vendor
Linux Kernel Organization, IncLinux
Product
Linux
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Program Files
  • arch/arm64/net/bpf_jit_comp.c
Default Status
affected
Versions
Affected
  • 3.18
Unaffected
  • From 0 before 3.18 (semver)
  • From 6.1.175 through 6.1.* (semver)
  • From 6.6.141 through 6.6.* (semver)
  • From 6.12.91 through 6.12.* (semver)
  • From 6.18.33 through 6.18.* (semver)
  • From 7.0.10 through 7.0.* (semver)
  • From 7.1 through * (original_commit_for_fix)
Metrics
VersionBase scoreBase severityVector
3.17.8HIGH
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Version: 3.1
Base score: 7.8
Base severity: HIGH
Vector:
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Metrics Other Info
Impacts
CAPEC IDDescription
Solutions

Configurations

Workarounds

Exploits

Credits

Timeline
EventDate
Replaced By

Rejected Reason

References
HyperlinkResource
https://git.kernel.org/stable/c/a5dfeb3b61065039488342d43ae06d4729d955d4
N/A
https://git.kernel.org/stable/c/7fd3b41260c6120e7b60164afea5d961af6224f9
N/A
https://git.kernel.org/stable/c/6927f0d6794aa73318bbfa929f1ff6065b0620df
N/A
https://git.kernel.org/stable/c/1a113b5497297871699cd498b1b83542e0db7f15
N/A
https://git.kernel.org/stable/c/fb74defa1cca1a73177c0c761e641332e4f979a3
N/A
https://git.kernel.org/stable/c/1dd8be4ec722ce54e4cace59f3a4ba658111b3ec
N/A
Hyperlink: https://git.kernel.org/stable/c/a5dfeb3b61065039488342d43ae06d4729d955d4
Resource: N/A
Hyperlink: https://git.kernel.org/stable/c/7fd3b41260c6120e7b60164afea5d961af6224f9
Resource: N/A
Hyperlink: https://git.kernel.org/stable/c/6927f0d6794aa73318bbfa929f1ff6065b0620df
Resource: N/A
Hyperlink: https://git.kernel.org/stable/c/1a113b5497297871699cd498b1b83542e0db7f15
Resource: N/A
Hyperlink: https://git.kernel.org/stable/c/fb74defa1cca1a73177c0c761e641332e4f979a3
Resource: N/A
Hyperlink: https://git.kernel.org/stable/c/1dd8be4ec722ce54e4cace59f3a4ba658111b3ec
Resource: N/A
Details not found