CVE-2023-54100
Use-After-Free Vulnerability in Linux qedi SCSI Driver
Publication date: 2025-12-24
Last updated on: 2025-12-24
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a use-after-free bug in the Linux kernel's qedi driver, specifically in the qedi_remove() function. The issue arises because scheduled work items (recovery_work and board_disable_work) may still be running or scheduled when the driver is being removed, leading to use of freed memory. The fix involves canceling these scheduled works before cleaning up in qedi_remove() to prevent accessing freed resources.
How can this vulnerability impact me? :
This vulnerability can lead to use-after-free conditions, which may cause system instability, crashes, or potentially allow an attacker to execute arbitrary code or escalate privileges by exploiting the improper handling of memory during driver removal.
What immediate steps should I take to mitigate this vulnerability?
To mitigate this vulnerability, update the Linux kernel to a version that includes the fix for the use-after-free bug in qedi_remove(). The fix involves properly canceling recovery_work and board_disable_work before cleanup in qedi_remove(). Until the update is applied, avoid removing the qedi driver to prevent triggering the bug.