In the Linux kernel, the following vulnerability has been resolved:
xfrm: iptfs: fix use-after-free on first_skb in __input_process_payload
__input_process_payload() stores first_skb into xtfs->ra_newskb under drop_lock when starting partial reassembly, then unlocks and breaks out of the processing loop. The post-loop check reads xtfs->ra_newskb without the lock to decide whether first_skb is still owned:
if (first_skb && first_iplen && !defer && first_skb != xtfs->ra_newskb)
Between spin_unlock and this read, a concurrent CPU running iptfs_reassem_cont() (or the drop_timer hrtimer) can complete reassembly, NULL xtfs->ra_newskb, and free the skb. The check then evaluates first_skb != NULL as true, and pskb_trim/ip_summed/consume_skb operate on the freed skb — a use-after-free in skbuff_head_cache.
Replace the unlocked read with a local bool that records whether first_skb was handed to the reassembly state in the current call. The flag is set after the existing spin_unlock, before the break, using the pointer equality that is stable at that point (first_skb == skb iff first_skb was stored in ra_newskb).
CVSS Details
- CVSS 3.1 Base Score: 8.8
- CVSS 3.1 Vector: (CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H)
Covered by Rapid7
| Product | Vendor Advisory | Solution File | Added | Published |
|---|---|---|---|---|
| Ubuntu | — | Upgrade linux-image-generic-64kUpgrade linux-image-generic-hwe-24.04Upgrade linux-image-gcpUpgrade linux-image-gkeUpgrade linux-image-gcp-64k-7.0Upgrade linux-image-nvidiaUpgrade linux-image-7.0.0-1011-oracle-64kUpgrade linux-image-gke-64k-7.0Upgrade linux-image-gke-64k-hwe-26.04Upgrade linux-image-realtime-hwe-26.04Upgrade linux-image-azure-7.0Upgrade linux-image-nvidia-bos-7.0Upgrade linux-image-raspiUpgrade linux-image-raspi-realtimeUpgrade linux-image-7.0.0-1011-oracleUpgrade linux-image-ibm-7.0Upgrade linux-image-gcp-64kUpgrade linux-image-ibmUpgrade linux-image-azureUpgrade linux-image-nvidia-64k-7.0Upgrade linux-image-oem-7.0Upgrade linux-image-7.0.0-1011-gcpUpgrade linux-image-nvidia-64k-hwe-26.04Upgrade linux-image-nvidia-hwe-26.04Upgrade linux-image-nvidia-64kUpgrade linux-image-7.0.0-1019-raspi-realtimeUpgrade linux-image-7.0.0-31-generic-64kUpgrade linux-image-aws-64kUpgrade linux-image-generic-hwe-26.04Upgrade linux-image-oem-26.04Upgrade linux-image-oracle-64k-7.0Upgrade linux-image-realtime-64k-hwe-26.04Upgrade linux-image-generic-64k-7.0Upgrade linux-image-virtual-hwe-26.04Upgrade linux-image-virtual-hwe-24.04Upgrade linux-image-oracle-64kUpgrade linux-image-oem-26.04aUpgrade linux-image-oracle-7.0Upgrade linux-image-7.0.0-31-genericUpgrade linux-image-7.0.0-1006-gke-64kUpgrade linux-image-7.0.0-2018-nvidia-bosUpgrade linux-image-virtualUpgrade linux-image-7.0.0-1012-awsUpgrade linux-image-7.0.0-1013-oemUpgrade linux-image-genericUpgrade linux-image-nvidia-bos-64kUpgrade linux-image-gke-64kUpgrade linux-image-7.0.0-31-realtime-64kUpgrade linux-image-7.0.0-1014-azureUpgrade linux-image-gke-hwe-26.04Upgrade linux-image-azure-lts-26.04Upgrade linux-image-7.0.0-1018-nvidia-64kUpgrade linux-image-nvidia-bosUpgrade linux-image-raspi-realtime-7.0Upgrade linux-image-7.0.0-1019-raspiUpgrade linux-image-awsUpgrade linux-image-oracleUpgrade linux-image-oem-26.04bUpgrade linux-image-generic-64k-hwe-26.04Upgrade linux-image-7.0.0-1012-aws-64kUpgrade linux-image-nvidia-bos-64k-7.0Upgrade linux-image-7.0.0-1006-gkeUpgrade linux-image-virtual-7.0Upgrade linux-image-realtime-7.0Upgrade linux-image-realtime-64k-7.0Upgrade linux-image-7.0.0-31-realtimeUpgrade linux-image-nvidia-7.0Upgrade linux-image-generic-7.0Upgrade linux-image-realtimeUpgrade linux-image-7.0.0-1018-nvidiaUpgrade linux-image-7.0.0-2018-nvidia-bos-64kUpgrade linux-image-realtime-64kUpgrade linux-image-aws-64k-7.0Upgrade linux-image-7.0.0-1011-gcp-64kUpgrade linux-image-gke-7.0Upgrade linux-image-generic-64k-hwe-24.04Upgrade linux-image-gcp-7.0Upgrade linux-image-aws-7.0Upgrade linux-image-7.0.0-1013-ibmUpgrade linux-image-raspi-7.0 | Sep 14, 2026 | Sep 7, 2026 |
Prioritise with Active Threat Intelligence
With curated Threat Intelligence, you can see which vulnerabilities truly put you at risk, prioritize what matters most, and act before attackers do.
Explore Intelligence Hub