CVE-2023-53728
Last modified
CVE-2023-53728 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: posix-timers: Ensure timer ID search-loop limit is valid posix_timer_add() tries to allocate a posix timer ID by starting from the cached ID which was stored by the last successful allocation. This is done in a loop searching the ID space for a free slot one by one. The loop has to terminate when the search wrapped around to the starting point. But that's racy vs. EPSS estimates a 0.19% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: posix-timers: Ensure timer ID search-loop limit is valid posix_timer_add() tries to allocate a posix timer ID by starting from the cached ID which was stored by the last successful allocation. This is done in a loop searching the ID space for a free slot one by one. The loop has to terminate when the search wrapped around to the starting point. But that's racy vs. establishing the starting point. That is read out lockless, which leads to the following problem: CPU0 CPU1 posix_timer_add() start = sig->posix_timer_id; lock(hash_lock); ... posix_timer_add() if (++sig->posix_timer_id < 0) start = sig->posix_timer_id; sig->posix_timer_id = 0; So CPU1 can observe a negative start value, i.e. -1, and the loop break never happens because the condition can never be true: if (sig->posix_timer_id == start) break; While this is unlikely to ever turn into an endless loop as the ID space is huge (INT_MAX), the racy read of the start value caught the attention of KCSAN and Dmitry unearthed that incorrectness. Rewrite it so that all id operations are under the hash lock.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 5ed67f05f66c41e39880a6d61358438a25f9fee5, < 8dc52c200b889bc1cb34288fbf623d4ff381d2ae; >= 5ed67f05f66c41e39880a6d61358438a25f9fee5, < 9ea26a8494a0a9337e7415eafd6f3ed940327dc5; >= 5ed67f05f66c41e39880a6d61358438a25f9fee5, < 8ad6679a5bb97cdb3e14942729292b4bfcc0e223; >= 5ed67f05f66c41e39880a6d61358438a25f9fee5, < 322377cc909defcca9451487484845e7e1d20d1b; >= 5ed67f05f66c41e39880a6d61358438a25f9fee5, < ef535e0315afd098c4beb1da364847eca4b56a20; >= 5ed67f05f66c41e39880a6d61358438a25f9fee5, < 6a0ac84501b4fec73a1a823c55cf13584c43f418; >= 5ed67f05f66c41e39880a6d61358438a25f9fee5, < 37175e25edf7cc0d5a2cd2c2a1cbe2dcbf4a1937; >= 5ed67f05f66c41e39880a6d61358438a25f9fee5, < 8ce8849dd1e78dadcee0ec9acbd259d239b7069f |
| Linux | Linux | 3.10 |
References
Timeline
- Published
- Last Modified
- Status
- Deferred
Frequently Asked Questions
What is CVE-2023-53728?
How severe is CVE-2023-53728?
How do I fix CVE-2023-53728?
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 2023
- CVE-2023-53722In the Linux kernel, the following vulnerability has been re…
- CVE-2023-53723In the Linux kernel, the following vulnerability has been re…
- CVE-2023-53724In the Linux kernel, the following vulnerability has been re…
- CVE-2023-53725In the Linux kernel, the following vulnerability has been re…
- CVE-2023-53726In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2023-53727In the Linux kernel, the following vulnerability has been re…
- CVE-2023-53729In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2023-5373A vulnerability classified as critical has been found in Sou…9.8
- CVE-2023-53730In the Linux kernel, the following vulnerability has been re…
- CVE-2023-53731In the Linux kernel, the following vulnerability has been re…
- CVE-2023-53732In the Linux kernel, the following vulnerability has been re…
- CVE-2023-53733In the Linux kernel, the following vulnerability has been re…7.8
Are you affected by CVE-2023-53728?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
