CVE-2026-63922

Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
19/07/2026
Last modified:
28/07/2026

Description

In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> ipv6: exthdrs: refresh nh after handling HAO option<br /> <br /> ip6_parse_tlv() caches skb_network_header(skb) in nh while walking<br /> IPv6 TLVs.<br /> <br /> ipv6_dest_hao() may call pskb_expand_head() for a cloned skb, which can<br /> move the skb head and invalidate the cached network header pointer.<br /> Refresh nh after ipv6_dest_hao() returns so any trailing padding or TLVs<br /> are parsed from the current skb head.<br /> <br /> This matches the existing pattern used in ip6_parse_tlv() after helpers<br /> that can modify skb header storage.