CVE-2026-53235
Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
25/06/2026
Last modified:
08/07/2026
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
net: add pskb_may_pull() to skb_gro_receive_list()<br />
<br />
skb_gro_receive_list() calls skb_pull(skb, skb_gro_offset(skb)) without<br />
first ensuring the data is in the linear area via pskb_may_pull(). When<br />
the skb arrives via napi_gro_frags(), skb_headlen can be 0 (all data in<br />
page fragments) while skb_gro_offset is non-zero (after IP+TCP header<br />
parsing). The skb_pull() then decrements skb->len by skb_gro_offset<br />
but skb->data_len stays unchanged, hitting BUG_ON(skb->len data_len)<br />
in __skb_pull().<br />
<br />
The UDP fraglist GRO path already contains this guard at<br />
udp_offload.c:749. Adding it to skb_gro_receive_list() itself provides<br />
centralized protection for all callers (TCP, UDP, and any future<br />
protocols), and ensures the precondition of skb_pull() is satisfied<br />
before it is called.<br />
<br />
On pskb_may_pull() failure, set NAPI_GRO_CB(skb)->flush = 1 so the<br />
skb is not held as a new GRO head and is instead delivered through the<br />
normal receive path, matching the UDP handling.
Impact
Base Score 3.x
7.50
Severity 3.x
HIGH
Vulnerable products and versions
| CPE | From | Up to |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.10 (including) | 6.12.94 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.13 (including) | 6.18.36 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.19 (including) | 7.0.13 (excluding) |
| cpe:2.3:o:linux:linux_kernel:7.1:rc1:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:7.1:rc2:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:7.1:rc3:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:7.1:rc4:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:7.1:rc5:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:7.1:rc6:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:7.1:rc7:*:*:*:*:*:* |
To consult the complete list of CPE names with products and versions, see this page



