CVE-2026-43452
Received Received - Intake
Buffer Overread in Linux Kernel x_tables

Publication date: 2026-05-08

Last updated on: 2026-05-08

Assigner: kernel.org

Description
In the Linux kernel, the following vulnerability has been resolved: netfilter: x_tables: guard option walkers against 1-byte tail reads When the last byte of options is a non-single-byte option kind, walkers that advance with i += op[i + 1] ? : 1 can read op[i + 1] past the end of the option area. Add an explicit i == optlen - 1 check before dereferencing op[i + 1] in xt_tcpudp and xt_dccp option walkers.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-05-08
Last Modified
2026-05-08
Generated
2026-05-09
AI Q&A
2026-05-08
EPSS Evaluated
N/A
NVD
EUVD
Affected Vendors & Products
Showing 2 associated CPEs
Vendor Product Version / Range
linux_kernel linux_kernel *
linux linux_kernel *
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?

This vulnerability exists in the Linux kernel's netfilter subsystem, specifically in the x_tables module that handles option walkers.

The issue occurs when the last byte of options is a non-single-byte option kind. The code that processes these options advances by using the value of the next byte (op[i + 1]) to determine how far to move forward. However, if this next byte is read past the end of the option area, it results in a 1-byte tail read beyond the valid memory.

The fix involves adding an explicit check to ensure that the index i is not at the last byte (i == optlen - 1) before dereferencing op[i + 1], preventing out-of-bounds reads in the xt_tcpudp and xt_dccp option walkers.


How can this vulnerability impact me? :

This vulnerability can lead to out-of-bounds memory reads (1-byte tail reads) in the Linux kernel's netfilter subsystem.

Such out-of-bounds reads may cause system instability, crashes, or potentially expose sensitive kernel memory data, which could be leveraged by attackers for further exploitation.


Ask Our AI Assistant
Need more information? Ask your question to get an AI reply (Powered by our expertise)
0/70
EPSS Chart