CVE-2026-72073
mmc: vub300: fix use-after-free on probe failure
Description
In the Linux kernel, the following vulnerability has been resolved: mmc: vub300: fix use-after-free on probe failure The vub300 driver lifetime-manages its controller state using vub300->kref, with vub300_delete() freeing the mmc host when the last reference is dropped. The probe error path after the inactivity timer has been armed still bypasses that lifetime rule, however, and falls through to mmc_free_host() directly if mmc_add_host() fails. The race window is between arming the inactivity timer and reaching the probe error unwind after mmc_add_host() fails: probe thread timer/workqueue ------------ --------------- kref_init(&vub300->kref) ref = 1 kref_get(&vub300->kref) ref = 2, timer ref add_timer(inactivity_timer) fires after one second | | race window |<----------------------------------------------------> | mmc_add_host(mmc) inactivity timer fires vub300_queue_dead_work() kref_get() ref = 3 queue_work(deadwork) mmc_add_host() fails timer_delete_sync() mmc_free_host(mmc) frees vub300 deadwork runs use-after-free The inactivity timeout is one second, so this would require mmc_add_host() to both fail and take more than one second to do so. This is unlikely to happen in practice, but the error path is still wrong. timer_delete_sync() only waits for the timer callback itself. It does not flush deadwork that the callback may already have queued. As a result, queued deadwork can still hold a kref while the probe error path directly frees the backing mmc host, including the vub300 storage. Fix this by using the same lifetime mechanism as disconnect. Clear vub300->interface so that the timer callback and any queued deadwork return early and drop their references, then drop the initial probe reference and return without falling through to err_free_host.
INFO
Published Date :
Aug. 15, 2026, 6:21 a.m.
Last Modified :
Aug. 17, 2026, 6:18 a.m.
Remotely Exploit :
No
Source :
416baaa9-dc9f-4396-8d5f-8c081fb06d67
Solution
- Synchronize object lifetime across probe and disconnect.
- Clear interface to prevent timer callback issues.
- Drop initial probe reference and return early.
- Update the Linux kernel to the patched version.
References to Advisories, Solutions, and Tools
Here, you will find a curated list of external links that provide in-depth
information, practical solutions, and valuable tools related to
CVE-2026-72073.
CWE - Common Weakness Enumeration
While CVE identifies
specific instances of vulnerabilities, CWE categorizes the common flaws or
weaknesses that can lead to vulnerabilities. CVE-2026-72073 is
associated with the following CWEs:
Common Attack Pattern Enumeration and Classification (CAPEC)
Common Attack Pattern Enumeration and Classification
(CAPEC)
stores attack patterns, which are descriptions of the common attributes and
approaches employed by adversaries to exploit the CVE-2026-72073
weaknesses.
We scan GitHub repositories to detect new proof-of-concept exploits. Following list is a collection of public exploits and proof-of-concepts, which have been published on GitHub (sorted by the most recently updated).
Results are limited to the first 15 repositories due to potential performance issues.
The following list is the news that have been mention
CVE-2026-72073 vulnerability anywhere in the article.
The following table lists the changes that have been made to the
CVE-2026-72073 vulnerability over time.
Vulnerability history details can be useful for understanding the evolution of a vulnerability, and for identifying the most recent changes that may impact the vulnerability's severity, exploitability, or other characteristics.
-
CVE Modified by 416baaa9-dc9f-4396-8d5f-8c081fb06d67
Aug. 17, 2026
Action Type Old Value New Value Changed Affected [{'repo': 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git', 'vendor': 'Linux', 'product': 'Linux', 'versions': [{'status': 'affected', 'version': '0613ad2401f88bdeae5594c30afe318e93b14676', 'lessThan': '5b82af744e06cd741938c3da54fdbe564a7e52d9', 'versionType': 'git'}, {'status': 'affected', 'version': '0613ad2401f88bdeae5594c30afe318e93b14676', 'lessThan': '618cf6b139503ec18ef93ffd663396aaf99b763a', 'versionType': 'git'}, {'status': 'affected', 'version': '0613ad2401f88bdeae5594c30afe318e93b14676', 'lessThan': 'a3b5f242997a3be7404112fd48784881560aea57', 'versionType': 'git'}, {'status': 'affected', 'version': '41ed46bdbd2878cd6567abe0974a445f8b1b8ec8', 'versionType': 'git'}, {'status': 'affected', 'version': '25f05d762ca5e1c685002a53dd44f68e78ca3feb', 'versionType': 'git'}, {'status': 'affected', 'version': 'a46e681151bbdacdf6b89ee8c4e5bad0555142bb', 'versionType': 'git'}, {'status': 'affected', 'version': '3b29f8769d32016b2d89183db4d80c7a71b7e35e', 'versionType': 'git'}, {'status': 'affected', 'version': '3049a3b927a40d89d4582ff1033cd7953be773c7', 'versionType': 'git'}, {'status': 'affected', 'version': 'afc898019e7bf18c5eb7a0ac19852fcb1b341b3c', 'versionType': 'git'}, {'status': 'affected', 'version': 'c9e85979b59cb86f0a15defa8199d740e2b36b90', 'versionType': 'git'}, {'status': 'affected', 'version': '2044b2ea77945f372ef161d1bbf814e471767ff2', 'versionType': 'git'}, {'status': 'affected', 'version': '4.9.337', 'lessThan': '4.10', 'versionType': 'semver'}, {'status': 'affected', 'version': '4.14.303', 'lessThan': '4.15', 'versionType': 'semver'}, {'status': 'affected', 'version': '4.19.270', 'lessThan': '4.20', 'versionType': 'semver'}, {'status': 'affected', 'version': '5.4.229', 'lessThan': '5.5', 'versionType': 'semver'}, {'status': 'affected', 'version': '5.10.163', 'lessThan': '5.11', 'versionType': 'semver'}, {'status': 'affected', 'version': '5.15.86', 'lessThan': '5.16', 'versionType': 'semver'}, {'status': 'affected', 'version': '6.0.16', 'lessThan': '6.1', 'versionType': 'semver'}, {'status': 'affected', 'version': '6.1.2', 'lessThan': '6.2', 'versionType': 'semver'}], 'programFiles': ['drivers/mmc/host/vub300.c'], 'defaultStatus': 'unaffected'}, {'repo': 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git', 'vendor': 'Linux', 'product': 'Linux', 'versions': [{'status': 'affected', 'version': '6.2'}, {'status': 'unaffected', 'version': '0', 'lessThan': '6.2', 'versionType': 'semver'}, {'status': 'unaffected', 'version': '6.18.42', 'versionType': 'semver', 'lessThanOrEqual': '6.18.*'}, {'status': 'unaffected', 'version': '7.1.5', 'versionType': 'semver', 'lessThanOrEqual': '7.1.*'}, {'status': 'unaffected', 'version': '7.2-rc4', 'versionType': 'original_commit_for_fix', 'lessThanOrEqual': '*'}], 'programFiles': ['drivers/mmc/host/vub300.c'], 'defaultStatus': 'affected'}] [{'repo': 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git', 'vendor': 'Linux', 'product': 'Linux', 'versions': [{'status': 'affected', 'version': '0613ad2401f88bdeae5594c30afe318e93b14676', 'lessThan': '5b82af744e06cd741938c3da54fdbe564a7e52d9', 'versionType': 'git'}, {'status': 'affected', 'version': '0613ad2401f88bdeae5594c30afe318e93b14676', 'lessThan': '618cf6b139503ec18ef93ffd663396aaf99b763a', 'versionType': 'git'}, {'status': 'affected', 'version': '0613ad2401f88bdeae5594c30afe318e93b14676', 'lessThan': 'a3b5f242997a3be7404112fd48784881560aea57', 'versionType': 'git'}, {'status': 'affected', 'version': '41ed46bdbd2878cd6567abe0974a445f8b1b8ec8', 'versionType': 'git'}, {'status': 'affected', 'version': '25f05d762ca5e1c685002a53dd44f68e78ca3feb', 'versionType': 'git'}, {'status': 'affected', 'version': 'a46e681151bbdacdf6b89ee8c4e5bad0555142bb', 'versionType': 'git'}, {'status': 'affected', 'version': '3b29f8769d32016b2d89183db4d80c7a71b7e35e', 'versionType': 'git'}, {'status': 'affected', 'version': '3049a3b927a40d89d4582ff1033cd7953be773c7', 'versionType': 'git'}, {'status': 'affected', 'version': 'afc898019e7bf18c5eb7a0ac19852fcb1b341b3c', 'versionType': 'git'}, {'status': 'affected', 'version': 'c9e85979b59cb86f0a15defa8199d740e2b36b90', 'versionType': 'git'}, {'status': 'affected', 'version': '2044b2ea77945f372ef161d1bbf814e471767ff2', 'versionType': 'git'}, {'status': 'affected', 'version': '4.9.337', 'lessThan': '4.10', 'versionType': 'semver'}, {'status': 'affected', 'version': '4.14.303', 'lessThan': '4.15', 'versionType': 'semver'}, {'status': 'affected', 'version': '4.19.270', 'lessThan': '4.20', 'versionType': 'semver'}, {'status': 'affected', 'version': '5.4.229', 'lessThan': '5.5', 'versionType': 'semver'}, {'status': 'affected', 'version': '5.10.163', 'lessThan': '5.11', 'versionType': 'semver'}, {'status': 'affected', 'version': '5.15.86', 'lessThan': '5.16', 'versionType': 'semver'}, {'status': 'affected', 'version': '6.0.16', 'lessThan': '6.1', 'versionType': 'semver'}, {'status': 'affected', 'version': '6.1.2', 'lessThan': '6.2', 'versionType': 'semver'}], 'programFiles': ['drivers/mmc/host/vub300.c'], 'defaultStatus': 'unaffected'}, {'repo': 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git', 'vendor': 'Linux', 'product': 'Linux', 'versions': [{'status': 'affected', 'version': '6.2'}, {'status': 'unaffected', 'version': '0', 'lessThan': '6.2', 'versionType': 'semver'}, {'status': 'unaffected', 'version': '6.18.42', 'versionType': 'semver', 'lessThanOrEqual': '6.18.*'}, {'status': 'unaffected', 'version': '7.1.5', 'versionType': 'semver', 'lessThanOrEqual': '7.1.*'}, {'status': 'unaffected', 'version': '7.2', 'versionType': 'original_commit_for_fix', 'lessThanOrEqual': '*'}], 'programFiles': ['drivers/mmc/host/vub300.c'], 'defaultStatus': 'affected'}] -
New CVE Received by 416baaa9-dc9f-4396-8d5f-8c081fb06d67
Aug. 15, 2026
Action Type Old Value New Value Added Affected [{'repo': 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git', 'vendor': 'Linux', 'product': 'Linux', 'versions': [{'status': 'affected', 'version': '0613ad2401f88bdeae5594c30afe318e93b14676', 'lessThan': '5b82af744e06cd741938c3da54fdbe564a7e52d9', 'versionType': 'git'}, {'status': 'affected', 'version': '0613ad2401f88bdeae5594c30afe318e93b14676', 'lessThan': '618cf6b139503ec18ef93ffd663396aaf99b763a', 'versionType': 'git'}, {'status': 'affected', 'version': '0613ad2401f88bdeae5594c30afe318e93b14676', 'lessThan': 'a3b5f242997a3be7404112fd48784881560aea57', 'versionType': 'git'}, {'status': 'affected', 'version': '41ed46bdbd2878cd6567abe0974a445f8b1b8ec8', 'versionType': 'git'}, {'status': 'affected', 'version': '25f05d762ca5e1c685002a53dd44f68e78ca3feb', 'versionType': 'git'}, {'status': 'affected', 'version': 'a46e681151bbdacdf6b89ee8c4e5bad0555142bb', 'versionType': 'git'}, {'status': 'affected', 'version': '3b29f8769d32016b2d89183db4d80c7a71b7e35e', 'versionType': 'git'}, {'status': 'affected', 'version': '3049a3b927a40d89d4582ff1033cd7953be773c7', 'versionType': 'git'}, {'status': 'affected', 'version': 'afc898019e7bf18c5eb7a0ac19852fcb1b341b3c', 'versionType': 'git'}, {'status': 'affected', 'version': 'c9e85979b59cb86f0a15defa8199d740e2b36b90', 'versionType': 'git'}, {'status': 'affected', 'version': '2044b2ea77945f372ef161d1bbf814e471767ff2', 'versionType': 'git'}, {'status': 'affected', 'version': '4.9.337', 'lessThan': '4.10', 'versionType': 'semver'}, {'status': 'affected', 'version': '4.14.303', 'lessThan': '4.15', 'versionType': 'semver'}, {'status': 'affected', 'version': '4.19.270', 'lessThan': '4.20', 'versionType': 'semver'}, {'status': 'affected', 'version': '5.4.229', 'lessThan': '5.5', 'versionType': 'semver'}, {'status': 'affected', 'version': '5.10.163', 'lessThan': '5.11', 'versionType': 'semver'}, {'status': 'affected', 'version': '5.15.86', 'lessThan': '5.16', 'versionType': 'semver'}, {'status': 'affected', 'version': '6.0.16', 'lessThan': '6.1', 'versionType': 'semver'}, {'status': 'affected', 'version': '6.1.2', 'lessThan': '6.2', 'versionType': 'semver'}], 'programFiles': ['drivers/mmc/host/vub300.c'], 'defaultStatus': 'unaffected'}, {'repo': 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git', 'vendor': 'Linux', 'product': 'Linux', 'versions': [{'status': 'affected', 'version': '6.2'}, {'status': 'unaffected', 'version': '0', 'lessThan': '6.2', 'versionType': 'semver'}, {'status': 'unaffected', 'version': '6.18.42', 'versionType': 'semver', 'lessThanOrEqual': '6.18.*'}, {'status': 'unaffected', 'version': '7.1.5', 'versionType': 'semver', 'lessThanOrEqual': '7.1.*'}, {'status': 'unaffected', 'version': '7.2-rc4', 'versionType': 'original_commit_for_fix', 'lessThanOrEqual': '*'}], 'programFiles': ['drivers/mmc/host/vub300.c'], 'defaultStatus': 'affected'}] Added Description In the Linux kernel, the following vulnerability has been resolved: mmc: vub300: fix use-after-free on probe failure The vub300 driver lifetime-manages its controller state using vub300->kref, with vub300_delete() freeing the mmc host when the last reference is dropped. The probe error path after the inactivity timer has been armed still bypasses that lifetime rule, however, and falls through to mmc_free_host() directly if mmc_add_host() fails. The race window is between arming the inactivity timer and reaching the probe error unwind after mmc_add_host() fails: probe thread timer/workqueue ------------ --------------- kref_init(&vub300->kref) ref = 1 kref_get(&vub300->kref) ref = 2, timer ref add_timer(inactivity_timer) fires after one second | | race window |<----------------------------------------------------> | mmc_add_host(mmc) inactivity timer fires vub300_queue_dead_work() kref_get() ref = 3 queue_work(deadwork) mmc_add_host() fails timer_delete_sync() mmc_free_host(mmc) frees vub300 deadwork runs use-after-free The inactivity timeout is one second, so this would require mmc_add_host() to both fail and take more than one second to do so. This is unlikely to happen in practice, but the error path is still wrong. timer_delete_sync() only waits for the timer callback itself. It does not flush deadwork that the callback may already have queued. As a result, queued deadwork can still hold a kref while the probe error path directly frees the backing mmc host, including the vub300 storage. Fix this by using the same lifetime mechanism as disconnect. Clear vub300->interface so that the timer callback and any queued deadwork return early and drop their references, then drop the initial probe reference and return without falling through to err_free_host. Added Reference https://git.kernel.org/stable/c/5b82af744e06cd741938c3da54fdbe564a7e52d9 Added Reference https://git.kernel.org/stable/c/618cf6b139503ec18ef93ffd663396aaf99b763a Added Reference https://git.kernel.org/stable/c/a3b5f242997a3be7404112fd48784881560aea57