CVE-2026-74628
Last modified
CVE-2026-74628 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: net/x25: fix use-after-free of the socket by its timers The x25 timers are armed with mod_timer() and cancelled with timer_delete(), so a pending timer holds no reference on the socket and a cancel does not wait for a callback already running on another CPU. x25_heartbeat_expiry() also rearms unconditionally, so it can reinstall sk->sk_timer after __x25_destroy_socket() has passed its cancel point. The following __sock_put() frees the socket while the timer is still queued, and the next expiry uses freed memory. KASAN reports a slab-use-after-free on the kmalloc-2k object freed by close(). timer_delete_sync() cannot be used here: x25_heartbeat_expiry() and x25_timer_expiry() both reach the cancels from inside the timer they would wait on, through __x25_destroy_socket() and x25_disconnect(). Arm the timers with sk_reset_timer() and cancel them with sk_stop_timer() so that an armed timer owns a reference, and release it in both expiry handlers.
Description
In the Linux kernel, the following vulnerability has been resolved: net/x25: fix use-after-free of the socket by its timers The x25 timers are armed with mod_timer() and cancelled with timer_delete(), so a pending timer holds no reference on the socket and a cancel does not wait for a callback already running on another CPU. x25_heartbeat_expiry() also rearms unconditionally, so it can reinstall sk->sk_timer after __x25_destroy_socket() has passed its cancel point. The following __sock_put() frees the socket while the timer is still queued, and the next expiry uses freed memory. KASAN reports a slab-use-after-free on the kmalloc-2k object freed by close(). timer_delete_sync() cannot be used here: x25_heartbeat_expiry() and x25_timer_expiry() both reach the cancels from inside the timer they would wait on, through __x25_destroy_socket() and x25_disconnect(). Arm the timers with sk_reset_timer() and cancel them with sk_stop_timer() so that an armed timer owns a reference, and release it in both expiry handlers. Rearm the heartbeat only while sk_hashed(sk) is still true, since __x25_destroy_socket() unlinks the socket before dropping it. Arm the deferred destroy timer the same way and drop its reference in x25_destroy_timer(). Reproduced on net with KASAN, with the heartbeat period shortened so the window recurs. With this patch the reproducer no longer triggers a report and /proc/net/x25 drains. 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, < 6b79659590f0f82a9b8efd2ffd55ec6399ebfc33; >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < fdd9ac50b9b61ef2b2d52c5156aff788be91454d; >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < 1fc9f6d2c7c9fdb341bfe8ca449c990632299ea6; >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < 3c4919be5d910db4beebca420953858606fba7d8; >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < 4bc522b33438fefc3272840ae5988771863a4f1f; >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < e92c7e2b41d1528a830bc64c5e4e46dfa8133dda; >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < 2195424c3da2ef1829a63b807e3a900a90e57d85 |
| Linux | Linux | 2.6.12 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-74628?
How severe is CVE-2026-74628?
How do I fix CVE-2026-74628?
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-74622In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74623In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74624In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74625In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74626In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74627In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74629In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74630In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74631In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74632In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74633In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74634In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-74628?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
