AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-72402

UNKNOWN · CVSS N/A

Source: NVD + CISA KEV + EPSS · Published 2026-08-15 · Last synced 2026-08-15

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's BPF (Berkeley Packet Filter) verifier, which inadequately masks certain pseudo pointer values in its logs, potentially allowing sensitive kernel pointer information to be exposed. This could lead to information disclosure, increasing the risk of exploitation by attackers. Organizations using Linux systems, particularly those leveraging BPF for network or security functions, should prioritize addressing this issue to mitigate potential security risks.

CVE
CVE-2026-72402
Severity
UNKNOWN
CVSS
N/A
EPSS
N/A
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: bpf: Mask pseudo pointer values in verifier logs print_bpf_insn() masks ldimm64 immediates for pointer-bearing pseudo sources when pointer leaks are not allowed, but the mask only covers BPF_PSEUDO_MAP_FD and BPF_PSEUDO_MAP_VALUE. BPF_PSEUDO_MAP_IDX, BPF_PSEUDO_MAP_IDX_VALUE, and BPF_PSEUDO_BTF_ID can also be resolved to kernel pointer values before the verifier log prints the instruction. Include them in the existing pointer classification so the log prints 0x0 instead of the rewritten address.