CVE-2026-97417

Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
24/09/2026
Last modified:
25/09/2026

Description

In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> netfilter: nf_conntrack: use get_unaligned_be32() in tcp_sack()<br /> <br /> The timestamp-only fast path dereferences the option stream as<br /> *(__be32 *)ptr, which assumes 4-byte alignment that the TCP option<br /> stream does not guarantee. Use get_unaligned_be32() instead, which<br /> reads the value safely and already returns host byte order, so the<br /> htonl() on the comparison constant can be dropped.<br /> <br /> This matches the existing get_unaligned_be32() use later in the same<br /> function.