HOMEVULNERABILITIESCVE-2026-53036
HIGH

CVE-2026-53036

Published: June 24, 2026· Updated: Jun 28, 2026

7.8
CVSS v3.1
EPSS:0.18%probability of exploitation in 30 daysPercentile:7.8th

Official Description

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.

NVD Source

Technical Analysis

CVE-2026-53036 requires local access, meaning attackers must already have a foothold on the target system.

Exploitation requires low privileges, which limits the exposure to scenarios where an attacker has already gained initial access.

A successful exploit results in complete confidentiality breach (data exposure), full integrity compromise (data manipulation), availability disruption (denial of service), with a CVSS base score of 7.8.

CVSS v3.1 Vector Breakdown

Exploitability
Attack VectorLocal
Attack ComplexityLow
Privileges Req.Low
User InteractionNone
ScopeUnchanged
Impact
ConfidentialityHigh
IntegrityHigh
AvailabilityHigh
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H

Affected Vendors & Products

Mentioned vendors (from description):
Linux
CPE data not yet available in NVD for this CVE.

Exploit & PoC Resources

NO KNOWN EXPLOITNo public exploit confirmed at this time
External links open in a new tab. Always verify in a controlled environment before use.

All References (6)

Quick Facts

CVE IDCVE-2026-53036
CVSS Score7.8 / 10
SeverityHIGH
CISA KEVNo
EPSS (30d)0.18%
PublishedJun 24, 2026

Recommended Actions

  • Apply vendor patches immediately
  • Monitor CVE-2026-53036 in threat intel feeds
  • Review IDS/IPS signatures for exploitation attempts
Data sourced from NVD (NIST), CISA KEV, and EPSS (FIRST). Analysis generated by CTIWATCH.COM. CVE data is provided under the NVD usage policy.