CVE-2026-68289
Last modified
CVE-2026-68289 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: tipc: fix integer overflow in tipc_recvmsg() and tipc_recvstream() In tipc_recvmsg(), the copy length is computed as: copy = min_t(int, dlen - offset, buflen); buflen is size_t but min_t(int, ...) casts it to int. When buflen exceeds INT_MAX (e.g.
Description
In the Linux kernel, the following vulnerability has been resolved: tipc: fix integer overflow in tipc_recvmsg() and tipc_recvstream() In tipc_recvmsg(), the copy length is computed as: copy = min_t(int, dlen - offset, buflen); buflen is size_t but min_t(int, ...) casts it to int. When buflen exceeds INT_MAX (e.g. 0xFFFFFFFF via io_uring provided buffers), it wraps negative, wins the comparison, and the negative copy length propagates to simple_copy_to_iter() where int-to-size_t promotion makes it SIZE_MAX, triggering a WARN_ON. tipc_recvstream() has the same pattern. Kernel panic - not syncing: kernel: panic_on_warn set ... RIP: 0010:simple_copy_to_iter+0x9e/0xd0 (net/core/datagram.c:521) Call Trace: __skb_datagram_iter+0x123/0x8b0 (net/core/datagram.c:402) skb_copy_datagram_iter+0x77/0x1a0 (net/core/datagram.c:534) tipc_recvmsg+0x3d7/0xe80 (net/tipc/socket.c:1934) io_recvmsg+0x47e/0xda0 Fix by changing min_t(int, ...) to min_t(size_t, ...) in both functions. The result is always <= (dlen - offset), which is bounded by TIPC maximum message size (0x1ffff bytes), so the implicit narrowing on assignment to int copy is always safe.
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= e9f8b10101c6da3ab000a2fb17162374c9bd2c69, < fe9bf32bb18f2d35789d4960fb007d1059bbaa38; >= e9f8b10101c6da3ab000a2fb17162374c9bd2c69, < 47f42ff521b4eeb46e82f9a46a4783a99f7570d7 |
| Linux | Linux | 4.12 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-68289?
How severe is CVE-2026-68289?
How do I fix CVE-2026-68289?
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-68283In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68284In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68285In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68286In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68287In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68288In the Linux kernel, the following vulnerability has been re…
- CVE-2026-6829nesquena hermes-webui contains a trust-boundary failure vuln…6.3
- CVE-2026-68290In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68291In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68292In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68293In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68294In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-68289?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
