CVE-2026-53381
Awaiting Analysis
Awaiting Analysis - Queue
Use-After-Free in Linux Kernel virtiofs
Vulnerability report for CVE-2026-53381, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.
Publication date: 2026-07-19
Last updated on: 2026-07-29
Assigner: kernel.org
Description
Description
In the Linux kernel, the following vulnerability has been resolved:
virtiofs: fix UAF on submount umount
iput() called from fuse_release_end() can Oops if the super block has
already been destroyed. Normally this is prevented by waiting for
num_waiting to go down to zero before commencing with super block shutdown.
This only works, however, for the last submount instance, as the wait
counter is per connection, not per superblock.
Revert to using synchronous release requests for the auto_submounts case,
which is virtiofs only at this time.
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 6.19 (inc) to 7.0.14 (exc) |
| linux | linux_kernel | From 7.1 (inc) to 7.1.2 (exc) |
| linux | linux_kernel | From 5.10.246 (inc) to 5.10.260 (exc) |
| linux | linux_kernel | From 5.15.196 (inc) to 5.15.211 (exc) |
| linux | linux_kernel | From 6.1.158 (inc) to 6.1.177 (exc) |
| linux | linux_kernel | From 6.12.54 (inc) to 6.12.95 (exc) |
| linux | linux_kernel | From 6.17.4 (inc) to 6.18.37 (exc) |
| linux | linux_kernel | From 6.6.115 (inc) to 6.6.144 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-416 | 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. |