You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
cve 2026 23359
About this tag
CVE-2026-23359 is a Linux kernel vulnerability in the BPF devmap code affecting XDP redirect operations. The flaw resides in the get_upper_ifindexes() function, which writes interface indices into an array without properly checking the array's capacity. This can lead to a stack-out-of-bounds write when a network device has more upper devices than expected, such as in configurations with many macvlan interfaces. The fix adds an explicit maximum parameter, stops writing once the buffer is full, and returns -EOVERFLOW to abort the redirect. This vulnerability is relevant for Linux system administrators and security professionals managing kernel updates and XDP-based networking.
The Linux kernel’s CVE-2026-23359 is a classic example of how a small-looking bounds mistake in BPF devmap code can turn into a real memory-safety problem. The issue sits in get_upper_ifindexes(), where the kernel walks every upper device and writes interface indices into an array without...