CVE-2026-63979
Last modified
CVE-2026-63979 is a critical-severity vulnerability rated 9.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: net/handshake: hand off the pinned file reference to accept_doit handshake_req_next() removes the request from the per-net pending list and drops hn_lock before handshake_nl_accept_doit() reads req->hr_sk->sk_socket and dereferences sock->file (once in FD_PREPARE() and again in get_file()). In that window a consumer running tls_handshake_cancel() followed by sockfd_put() (svc_sock_free) or __fput_sync() (xs_reset_transport) releases sock->file. EPSS estimates a 0.52% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: net/handshake: hand off the pinned file reference to accept_doit handshake_req_next() removes the request from the per-net pending list and drops hn_lock before handshake_nl_accept_doit() reads req->hr_sk->sk_socket and dereferences sock->file (once in FD_PREPARE() and again in get_file()). In that window a consumer running tls_handshake_cancel() followed by sockfd_put() (svc_sock_free) or __fput_sync() (xs_reset_transport) releases sock->file. sock_release() then runs sock_orphan(), zeroing sk_socket, and frees the struct socket. The accept-side code either reads NULL through sk_socket or chases freed memory. The submit-side sock_hold() does not prevent this. sk_refcnt protects struct sock, but struct socket and sock->file are independently refcounted via the file descriptor the consumer owns. Pinning sk leaves sock and sock->file unprotected. Retarget the accept-side dereferences at req->hr_file, which was pinned at submit time, instead of req->hr_sk->sk_socket->file. Pinning on its own is not sufficient: a consumer that cancels between handshake_req_next() returning and accept_doit reaching FD_PREPARE() takes the !remove_pending() branch in handshake_req_cancel() and drops hr_file before the accept side takes its own reference. Hand off an additional file reference inside handshake_req_next(), under hn_lock, so the accept side operates on a reference that no concurrent handshake_req_cancel() can revoke. FD_PREPARE() consumes that handed-off reference, either by transferring it to the new fd in fd_publish() or by dropping it in the cleanup destructor on error; the explicit get_file() that previously balanced FD_PREPARE() is therefore redundant and goes away. Update handshake_req_cancel_test2 and _test3 to simulate the FD_PREPARE() consumption with an fput() so the kunit file-count assertions stay balanced.
Metrics
CVSS:3.1/AV:N/AC:L/PR:N/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 | >= 3b3009ea8abb713b022d94fba95ec270cf6e7eae, < 68eba6519cbd6359fb554a9720f3a3b6b2eba23f; >= 3b3009ea8abb713b022d94fba95ec270cf6e7eae, < c06876d4fac38f35820946ee3b1be7d7da799cd4; >= 3b3009ea8abb713b022d94fba95ec270cf6e7eae, < f4251190e58b209999c1ba9e6d2976136a1be055 |
| Linux | Linux | 6.4 |
References
Timeline
- Published
- Last Modified
- Status
- Awaiting Analysis
Frequently Asked Questions
What is CVE-2026-63979?
How severe is CVE-2026-63979?
How do I fix CVE-2026-63979?
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-63973In the Linux kernel, the following vulnerability has been re…
- CVE-2026-63974In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-63975In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-63976In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-63977In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-63978In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-6398Rejected reason: ** REJECT ** DO NOT USE THIS CANDIDATE NUMB…
- CVE-2026-63980In the Linux kernel, the following vulnerability has been re…7.5
- CVE-2026-63981In the Linux kernel, the following vulnerability has been re…
- CVE-2026-63982In the Linux kernel, the following vulnerability has been re…
- CVE-2026-63983In the Linux kernel, the following vulnerability has been re…
- CVE-2026-63984In the Linux kernel, the following vulnerability has been re…9.8
Are you affected by CVE-2026-63979?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
