CVE-2026-53092
Received Received - Intake
BaseFortify

Publication date: 2026-06-24

Last updated on: 2026-06-24

Assigner: kernel.org

Description
In the Linux kernel, the following vulnerability has been resolved: bpf: Fix linked reg delta tracking when src_reg == dst_reg Consider the case of rX += rX where src_reg and dst_reg are pointers to the same bpf_reg_state in adjust_reg_min_max_vals(). The latter first modifies the dst_reg in-place, and later in the delta tracking, the subsequent is_reg_const(src_reg)/reg_const_value(src_reg) reads the post-{add,sub} value instead of the original source. This is problematic since it sets an incorrect delta, which sync_linked_regs() then propagates to linked registers, thus creating a verifier-vs-runtime mismatch. Fix it by just skipping this corner case.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-06-24
Last Modified
2026-06-24
Generated
2026-06-25
AI Q&A
2026-06-24
EPSS Evaluated
N/A
NVD
EUVD
Affected Vendors & Products
Showing 2 associated CPEs
Vendor Product Version / Range
linux linux_kernel *
linux_kernel linux_kernel *
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN
Attack-Flow Graph
AI Quick Actions
Instant insights powered by AI
Executive Summary

This vulnerability exists in the Linux kernel's BPF (Berkeley Packet Filter) subsystem. It occurs when the source and destination registers are the same in an operation like rX += rX. The issue arises because the code modifies the destination register in-place and then incorrectly reads the updated value of the source register instead of its original value during delta tracking. This leads to an incorrect delta calculation, which is then propagated to linked registers, causing a mismatch between the verifier's expectations and the runtime behavior.

The fix involves skipping this specific corner case to prevent the incorrect delta tracking and ensure consistency between the verifier and runtime.

Impact Analysis

This vulnerability can cause a mismatch between the BPF verifier's analysis and the actual runtime behavior of BPF programs. Such a verifier-vs-runtime mismatch could potentially lead to incorrect program execution or security checks being bypassed, which might result in unexpected behavior or security risks within the Linux kernel environment.

Chat Assistant
Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-53092. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70
EPSS Chart