CVE-2026-90054
Last modified
CVE-2026-90054 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: tcp: fix corruption of urgent data on multi-segment retransmit On the normal xmit path, while in urgent mode we refuse to build a multi-segment TSO packet, so every segment gets its own urg_ptr: /* tcp_write_xmit() */ limit = mss_now; if (tso_segs > 1 && !tcp_urg_mode(tp)) limit = tcp_mss_split_point(...); The retransmit path has no such guard. __tcp_retransmit_skb() builds a segs > 1 skb and hands it to the GSO layer, which only advances th->seq per segment and copies urg_ptr verbatim: /* __tcp_retransmit_skb() */ len = cur_mss * segs; /* segs > 1, no urg_mode check */ ... /* tcp_gso_segment(): bumps seq only, urg_ptr is copied */ urg_ptr is an offset from the segment's own seq, so a copied value points at a different place on each segment.
Description
In the Linux kernel, the following vulnerability has been resolved: tcp: fix corruption of urgent data on multi-segment retransmit On the normal xmit path, while in urgent mode we refuse to build a multi-segment TSO packet, so every segment gets its own urg_ptr: /* tcp_write_xmit() */ limit = mss_now; if (tso_segs > 1 && !tcp_urg_mode(tp)) limit = tcp_mss_split_point(...); The retransmit path has no such guard. __tcp_retransmit_skb() builds a segs > 1 skb and hands it to the GSO layer, which only advances th->seq per segment and copies urg_ptr verbatim: /* __tcp_retransmit_skb() */ len = cur_mss * segs; /* segs > 1, no urg_mode check */ ... /* tcp_gso_segment(): bumps seq only, urg_ptr is copied */ urg_ptr is an offset from the segment's own seq, so a copied value points at a different place on each segment. The receiver rebuilds the absolute urgent seq as seg.seq + urg_ptr, so it walks a moving urgent point instead of the one OOB byte: seg1 seq 1 urg_ptr 5001 -> urgent @ 5001 (ok) seg2 seq 1001 urg_ptr 5001 -> urgent @ 6001 (wrong, +MSS) seg3 seq 2001 urg_ptr 5001 -> urgent @ 7001 (wrong, +2*MSS) The real OOB byte is never pointed at, so the receiver stops splicing it out and delivers it as normal in-band data, corrupting the stream. Guard the retransmit length like the xmit path: keep segs = 1 while in urgent mode.
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 10d3be569243def8d92ac3722395ef5a59c504e6, < 8eb51013b6308870479a64b4a2a018697b997849; >= 10d3be569243def8d92ac3722395ef5a59c504e6, < 711bfd762bec05fb19bc3b17cbb157c39f4e66da; >= 10d3be569243def8d92ac3722395ef5a59c504e6, < 3d4e005c198dc410ad568f832bffa7569c059ff8; >= 10d3be569243def8d92ac3722395ef5a59c504e6, < 4fd2ee4ac154c204d95d8db72221446dac5af9b8; >= 10d3be569243def8d92ac3722395ef5a59c504e6, < ebe55406404f3cb28e36d2b668e2c6c05026ec29; >= 10d3be569243def8d92ac3722395ef5a59c504e6, < b8f08a94b2a4addc39249dcf9c792e786108621b; >= 10d3be569243def8d92ac3722395ef5a59c504e6, < 47eb90299e6882d6445672530dd7c51ac33ebdbd; >= 10d3be569243def8d92ac3722395ef5a59c504e6, < ce2b807f42ed5e55567b8864ab72963f90779270 |
| Linux | Linux | 4.7 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-90054?
How severe is CVE-2026-90054?
How do I fix CVE-2026-90054?
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-90048In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-90049In the Linux kernel, the following vulnerability has been re…9.3
- CVE-2026-90050In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90051In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-90052In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-90053In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90055In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90056In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90057In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-90058In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90059In the Linux kernel, the following vulnerability has been re…7.5
- CVE-2026-9006IBM WebSphere Application Server 9.0, and 8.5 is vulnerable …9.1
Are you affected by CVE-2026-90054?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
