First published: Wed Feb 26 2025(Updated: )
In the Linux kernel, the following vulnerability has been resolved: ubi: ubi_create_volume: Fix use-after-free when volume creation failed There is an use-after-free problem for 'eba_tbl' in ubi_create_volume()'s error handling path: ubi_eba_replace_table(vol, eba_tbl) vol->eba_tbl = tbl out_mapping: ubi_eba_destroy_table(eba_tbl) // Free 'eba_tbl' out_unlock: put_device(&vol->dev) vol_release kfree(tbl->entries) // UAF Fix it by removing redundant 'eba_tbl' releasing. Fetch a reproducer in [Link].
Credit: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
Affected Software | Affected Version | How to fix |
---|---|---|
Linux Kernel | ||
Linux Kernel | >=4.12<4.14.283 | |
Linux Kernel | >=4.15<4.19.247 | |
Linux Kernel | >=4.20<5.4.198 | |
Linux Kernel | >=5.5<5.10.122 | |
Linux Kernel | >=5.11<5.15.47 | |
Linux Kernel | >=5.16<5.17.15 | |
Linux Kernel | >=5.18<5.18.4 |
Sign up to SecAlerts for real-time vulnerability data matched to your software, aggregated from hundreds of sources.
CVE-2022-49388 has been classified as a high severity vulnerability in the Linux kernel.
To fix CVE-2022-49388, update your Linux kernel to a version that is not affected by the vulnerability.
CVE-2022-49388 affects multiple versions of the Linux kernel prior to 4.14.283, 4.19.247, 5.4.198, 5.10.122, 5.15.47, 5.17.15, and 5.18.4.
CVE-2022-49388 impacts systems running affected versions of the Linux kernel, commonly found in various distributions.
CVE-2022-49388 is a use-after-free vulnerability occurring during error handling in the ubi_create_volume function.