Lucene search

K
vulnrichmentLinuxVULNRICHMENT:CVE-2023-52480
HistoryFeb 29, 2024 - 5:43 a.m.

CVE-2023-52480 ksmbd: fix race condition between session lookup and expire

2024-02-2905:43:12
Linux
github.com
2
linux kernel
vulnerability
resolved
race condition
session
smb2_sess_setup
uaf
jiffies
patch
fix
rwsem

AI Score

6.7

Confidence

Low

SSVC

Exploitation

none

Automatable

no

Technical Impact

partial

In the Linux kernel, the following vulnerability has been resolved:

ksmbd: fix race condition between session lookup and expire

Thread A + Thread B
ksmbd_session_lookup | smb2_sess_setup
sess = xa_load |
|
| xa_erase(&conn->sessions, sess->id);
|
| ksmbd_session_destroy(sess) –> kfree(sess)
|
// UAF! |
sess->last_active = jiffies |
+

This patch add rwsem to fix race condition between ksmbd_session_lookup
and ksmbd_expire_session.

AI Score

6.7

Confidence

Low

SSVC

Exploitation

none

Automatable

no

Technical Impact

partial