CVE-2026-74588
Last modified
CVE-2026-74588 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: sctp: keep chunk->transport in step with the list it is queued on __sctp_outq_flush_rtx() moves a gap-acked chunk onto another transport's transmitted list without updating chunk->transport: if (chunk->tsn_gap_acked) { list_move_tail(&chunk->transmitted_list, &transport->transmitted); continue; } The chunk then sits on a live transport's list while chunk->transport still names a different one. If that transport is removed - sctp_assoc_rm_peer() from an ASCONF Delete-IP - sctp_transport_free() RCU-frees it and the chunk is left with a dangling pointer.
Description
In the Linux kernel, the following vulnerability has been resolved: sctp: keep chunk->transport in step with the list it is queued on __sctp_outq_flush_rtx() moves a gap-acked chunk onto another transport's transmitted list without updating chunk->transport: if (chunk->tsn_gap_acked) { list_move_tail(&chunk->transmitted_list, &transport->transmitted); continue; } The chunk then sits on a live transport's list while chunk->transport still names a different one. If that transport is removed - sctp_assoc_rm_peer() from an ASCONF Delete-IP - sctp_transport_free() RCU-frees it and the chunk is left with a dangling pointer. sctp_assoc_rm_peer() scrubs peer->transmitted and asoc->outqueue.out_chunk_list, but the chunk is on neither. The pointer is not followed while tsn_gap_acked is set. A SACK that reneges on the TSN clears the flag, and the next SACK reaches tchunk->transport->flight_size -= sctp_data_size(tchunk); inside the freed transport. KASAN reports a slab-use-after-free read in sctp_check_transmitted(), freed from sctp_assoc_rm_peer(). Both the removal and the SACKs come from the association peer. Set chunk->transport at the move. The ordinary resend path needs nothing: it reaches its list_move_tail() only after sctp_packet_append_chunk() returned SCTP_XMIT_OK, and __sctp_packet_append_chunk() has rebound the chunk by then. Discovered by XBOW, triaged by Baul Lee <baul.lee@xbow.com>
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < 6575fb17230814b48b471727c8410c0aadff9274; >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < 6b9e2ea2057113f3393990ba646d2d97c719a80d; >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < 874a7c2b5e184f06134fdfde27e9ce9271bafe58; >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < 1adf929121e13e0b19200bb9fef715b918d483fe; >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < e2e7c1de0e226ca1b7fea2de57a6c9bca408709b; >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < 2b3b5eec8b2c30ee237e3c31a6a38de9c39d804d; >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < 5ccf35ef0ed6059cdf8b1f4606a6584d5b67166b; >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < 9f2cf069a9a72a2d6b97ca8b4c70e714aac99749 |
| Linux | Linux | 2.6.12 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-74588?
How severe is CVE-2026-74588?
How do I fix CVE-2026-74588?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-74582In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74583In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74584In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74585In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74586In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74587In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74589In the Linux kernel, the following vulnerability has been re…
- CVE-2026-7459The Simple History – Track, Log, and Audit WordPress Changes…7.5
- CVE-2026-74590In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74591In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74592In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74593In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-74588?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
