In the Linux kernel, the following vulnerability has been resolved:
net/xen-netback: prevent UAF in xenvif_flush_hash()
During the list_for_each_entry_rcu iteration call of xenvif_flush_hash,
kfree_rcu does not exist inside the rcu read critical section, so if
kfree_rcu is called when the rcu grace period ends during the iteration,
UAF occurs when accessing head->next after the entry becomes free.
Therefore, to solve this, you need to change it to list_for_each_entry_safe.
References
Configurations
Configuration 1 (hide)
|
History
02 Feb 2025, 11:15
Type | Values Removed | Values Added |
---|---|---|
References |
|
Information
Published : 2024-10-21 18:15
Updated : 2025-02-02 11:15
NVD link : CVE-2024-49936
Mitre link : CVE-2024-49936
CVE.ORG link : CVE-2024-49936
JSON object : View
Products Affected
linux
- linux_kernel
CWE
CWE-416
Use After Free