7.8
CVE-2021-47239
- EPSS 0.02%
- Veröffentlicht 21.05.2024 15:15:13
- Zuletzt bearbeitet 30.12.2024 19:05:15
- Quelle 416baaa9-dc9f-4396-8d5f-8c081f
- CVE-Watchlists
- Unerledigt
In the Linux kernel, the following vulnerability has been resolved:
net: usb: fix possible use-after-free in smsc75xx_bind
The commit 46a8b29c6306 ("net: usb: fix memory leak in smsc75xx_bind")
fails to clean up the work scheduled in smsc75xx_reset->
smsc75xx_set_multicast, which leads to use-after-free if the work is
scheduled to start after the deallocation. In addition, this patch
also removes a dangling pointer - dev->data[0].
This patch calls cancel_work_sync to cancel the scheduled work and set
the dangling pointer to NULL.Daten sind bereitgestellt durch National Vulnerability Database (NVD)
Linux ≫ Linux Kernel Version >= 4.4.271 < 4.4.274
Linux ≫ Linux Kernel Version >= 4.9.271 < 4.9.274
Linux ≫ Linux Kernel Version >= 4.14.235 < 4.14.238
Linux ≫ Linux Kernel Version >= 4.19.193 < 4.19.196
Linux ≫ Linux Kernel Version >= 5.4.124 < 5.4.128
Linux ≫ Linux Kernel Version >= 5.10.42 < 5.10.46
Linux ≫ Linux Kernel Version >= 5.12.9 < 5.12.13
| Typ | Quelle | Score | Percentile |
|---|---|---|---|
| EPSS | FIRST.org | 0.02% | 0.032 |
| Quelle | Base Score | Exploit Score | Impact Score | Vector String |
|---|---|---|---|---|
| nvd@nist.gov | 7.8 | 1.8 | 5.9 |
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
|
CWE-416 Use After Free
The product reuses or references memory after it has been freed. At some point afterward, the memory may be allocated again and saved in another pointer, while the original pointer references a location somewhere within the new allocation. Any operations using the original pointer are no longer valid because the memory "belongs" to the code that operates on the new pointer.