CVE-2026-63918
Last modified
CVE-2026-63918 is a high-severity vulnerability rated 7.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: l2tp: use refcount_inc_not_zero in l2tp_session_get_by_ifname A reader in l2tp_session_get_by_ifname() can return a pointer to a session whose refcount has reached zero. The getter takes its reference with plain refcount_inc(), but every other session getter in the same file (l2tp_v2_session_get, l2tp_v3_session_get, and the corresponding _get_next variants) uses refcount_inc_not_zero() because the IDR/RCU lookup can race with refcount_dec_and_test() -> l2tp_session_free() -> kfree_rcu(). EPSS estimates a 0.16% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: l2tp: use refcount_inc_not_zero in l2tp_session_get_by_ifname A reader in l2tp_session_get_by_ifname() can return a pointer to a session whose refcount has reached zero. The getter takes its reference with plain refcount_inc(), but every other session getter in the same file (l2tp_v2_session_get, l2tp_v3_session_get, and the corresponding _get_next variants) uses refcount_inc_not_zero() because the IDR/RCU lookup can race with refcount_dec_and_test() -> l2tp_session_free() -> kfree_rcu(). The ifname getter is the only outlier; the inconsistency was raised on-list after 979c017803c4 ("l2tp: use list_del_rcu in l2tp_session_unhash"). A reader inside rcu_read_lock_bh() that matches session->ifname can be preempted between the strcmp() and the refcount_inc(). If the last reference drops on another CPU in that window, the reader's refcount_inc() runs on a counter that has reached zero. refcount_t catches the addition-on-zero, prints "refcount_t: addition on 0; use-after-free", saturates the counter, and returns the saturated pointer to the caller. Session memory is held live by the in-flight RCU read section, but the kfree_rcu() callback queued from l2tp_session_free() will free it once the grace period closes; a caller that dereferences the returned session past that point hits a slab-use-after-free. On PREEMPT_RT local_bh_disable() is a per-CPU sleeping lock and the preemption window is real; on stock PREEMPT kernels local_bh_disable() is a preempt_count increment that closes the cross-CPU race in practice (see below). Use refcount_inc_not_zero() and continue the list walk on failure, matching the other session getters in the file. The ifname getter is the only session getter in net/l2tp/ that still uses the bare refcount_inc() pattern; this change restores file-internal consistency. The success path is unchanged.
Metrics
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= abe7a1a7d0b69e63b1bca5f9531023a52336784f, < ee80455feffb9cb62b5b58715cabeff495e666b2; >= abe7a1a7d0b69e63b1bca5f9531023a52336784f, < 947013fd7c8c35dd5856557b215840098a3f67f8; >= abe7a1a7d0b69e63b1bca5f9531023a52336784f, < 782d60a6596aee9b29c2eecfa70033899278bf65; >= abe7a1a7d0b69e63b1bca5f9531023a52336784f, < 05f95729ca844704d15e49ce14868af4b403b32b |
| Linux | Linux | 6.12 |
References
Timeline
- Published
- Last Modified
- Status
- Awaiting Analysis
Frequently Asked Questions
What is CVE-2026-63918?
How severe is CVE-2026-63918?
How do I fix CVE-2026-63918?
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-63912In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-63913In the Linux kernel, the following vulnerability has been re…8.2
- CVE-2026-63914In the Linux kernel, the following vulnerability has been re…7.3
- CVE-2026-63915In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-63916In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-63917In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-63919In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-6392Tanium addressed an information disclosure vulnerability in …2.7
- CVE-2026-63920In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2026-63921In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-63922In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-63923In the Linux kernel, the following vulnerability has been re…8.8
Are you affected by CVE-2026-63918?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
