CVE-2026-97985
Last modified
CVE-2026-97985 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: af_unix: Update last skb marker in manage_oob(). Fahad Alharbi reported that blocking recv(MSG_PEEK) could hog CPU due to OOB skb. In the following cases, manage_oob() skips OOB skb(s) and returns NULL for the last recv(MSG_PEEK): socketpair(AF_UNIX, SOCK_STREAM, 0, sk); 1) skb -> OOB skb -> NULL send(sk[0], "ab", 2, MSG_OOB); recv(sk[1], buf, 0, MSG_PEEK); 2) skb -> consumed OOB skb -> NULL send(sk[0], "ab", 2, MSG_OOB); recv(sk[1], buf, 1, MSG_OOB); recv(sk[1], buf, 0, MSG_PEEK); 3) consumed OOB skb -> OOB skb -> NULL send(sk[0], "a", 1, MSG_OOB); recv(sk[1], buf, 0, MSG_OOB); send(sk[0], "b", 1, MSG_OOB); recv(sk[1], buf, 1, MSG_PEEK); Then, @copied is 0 in unix_stream_read_generic() (zero-length buffer, or non-OOB skb is not yet consumed), and unix_stream_data_wait() is called. However, it returns immediately because @last is not updated in unix_stream_read_generic(), and the thread busy-waits for a new skb. Let's update @last in manage_oob(). For MSG_PEEK, @last is updated with the skipped OOB, and for the non-peek case, @last matches the returned value (when !copied) because OOB is unlinked. Note that manage_oob() is inlined and no stack canary is added..
Description
In the Linux kernel, the following vulnerability has been resolved: af_unix: Update last skb marker in manage_oob(). Fahad Alharbi reported that blocking recv(MSG_PEEK) could hog CPU due to OOB skb. In the following cases, manage_oob() skips OOB skb(s) and returns NULL for the last recv(MSG_PEEK): socketpair(AF_UNIX, SOCK_STREAM, 0, sk); 1) skb -> OOB skb -> NULL send(sk[0], "ab", 2, MSG_OOB); recv(sk[1], buf, 0, MSG_PEEK); 2) skb -> consumed OOB skb -> NULL send(sk[0], "ab", 2, MSG_OOB); recv(sk[1], buf, 1, MSG_OOB); recv(sk[1], buf, 0, MSG_PEEK); 3) consumed OOB skb -> OOB skb -> NULL send(sk[0], "a", 1, MSG_OOB); recv(sk[1], buf, 0, MSG_OOB); send(sk[0], "b", 1, MSG_OOB); recv(sk[1], buf, 1, MSG_PEEK); Then, @copied is 0 in unix_stream_read_generic() (zero-length buffer, or non-OOB skb is not yet consumed), and unix_stream_data_wait() is called. However, it returns immediately because @last is not updated in unix_stream_read_generic(), and the thread busy-waits for a new skb. Let's update @last in manage_oob(). For MSG_PEEK, @last is updated with the skipped OOB, and for the non-peek case, @last matches the returned value (when !copied) because OOB is unlinked. Note that manage_oob() is inlined and no stack canary is added.
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 22dd70eb2c3d754862964377a75abafd3167346b, < 0630bfc773d85ac44da05b2c5a037dbbd39301ab; >= 22dd70eb2c3d754862964377a75abafd3167346b, < f1816b3d7ce80dcf086bb68ff5ae6e09520ca1fa; >= 22dd70eb2c3d754862964377a75abafd3167346b, < fc62a26493a98a0424d9dae2eb92a1daa1321f65; >= 22dd70eb2c3d754862964377a75abafd3167346b, < 94fd4debd2e3a69cf93e766c8b328a810c228119; ae3f9e1221b31b18dbd4c4b85d08574996bbd973; ba0db4638525b8b054b3d546b45f7e473f477027; 022d81a709cd553bbe2db8675f8e824f4aee6284; 16dc252e7007547a7b72a2c21022ef81fb45e6a3; >= 5.15.157, < 5.16; >= 6.1.88, < 6.2; >= 6.6.29, < 6.7; >= 6.8.8, < 6.9 |
| Linux | Linux | 6.9 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-97985?
How severe is CVE-2026-97985?
How do I fix CVE-2026-97985?
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-9798A flaw was found in Keycloak, an open-source identity and ac…4.3
- CVE-2026-97980In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97981In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97982In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97983In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97984In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97986In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97987In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97988In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97989In the Linux kernel, the following vulnerability has been re…
- CVE-2026-9799A flaw was found in org.keycloak.authorization. An authentic…4.6
- CVE-2026-97990In the Linux kernel, the following vulnerability has been re…7.5
Are you affected by CVE-2026-97985?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
