5.5
MEDIUM CVSS 3.1
CVE-2023-53481
ubi: ubi_wl_put_peb: Fix infinite loop when wear-leveling work failed
Description

In the Linux kernel, the following vulnerability has been resolved: ubi: ubi_wl_put_peb: Fix infinite loop when wear-leveling work failed Following process will trigger an infinite loop in ubi_wl_put_peb(): ubifs_bgt ubi_bgt ubifs_leb_unmap ubi_leb_unmap ubi_eba_unmap_leb ubi_wl_put_peb wear_leveling_worker e1 = rb_entry(rb_first(&ubi->used) e2 = get_peb_for_wl(ubi) ubi_io_read_vid_hdr // return err (flash fault) out_error: ubi->move_from = ubi->move_to = NULL wl_entry_destroy(ubi, e1) ubi->lookuptbl[e->pnum] = NULL retry: e = ubi->lookuptbl[pnum]; // return NULL if (e == ubi->move_from) { // NULL == NULL gets true goto retry; // infinite loop !!! $ top PID USER PR NI VIRT RES SHR S %CPU %MEM COMMAND 7676 root 20 0 0 0 0 R 100.0 0.0 ubifs_bgt0_0 Fix it by: 1) Letting ubi_wl_put_peb() returns directly if wearl leveling entry has been removed from 'ubi->lookuptbl'. 2) Using 'ubi->wl_lock' protecting wl entry deletion to preventing an use-after-free problem for wl entry in ubi_wl_put_peb(). Fetch a reproducer in [Link].

INFO

Published Date :

Oct. 1, 2025, 12:15 p.m.

Last Modified :

Jan. 20, 2026, 4:36 p.m.

Remotely Exploit :

No

Source :

416baaa9-dc9f-4396-8d5f-8c081fb06d67
Affected Products

The following products are affected by CVE-2023-53481 vulnerability. Even if cvefeed.io is aware of the exact versions of the products that are affected, the information is not represented in the table below.

ID Vendor Product Action
1 Linux linux_kernel
CVSS Scores
The Common Vulnerability Scoring System is a standardized framework for assessing the severity of vulnerabilities in software and systems. We collect and displays CVSS scores from various sources for each CVE.
Score Version Severity Vector Exploitability Score Impact Score Source
CVSS 3.1 MEDIUM [email protected]
Solution
Fix infinite loop in wear-leveling by checking for entry removal.
  • Return directly if wear-leveling entry removed.
  • Protect entry deletion using wl_lock.
  • Update the Linux kernel to the patched version.
CWE - Common Weakness Enumeration

While CVE identifies specific instances of vulnerabilities, CWE categorizes the common flaws or weaknesses that can lead to vulnerabilities. CVE-2023-53481 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-2023-53481 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-2023-53481 vulnerability anywhere in the article.

The following table lists the changes that have been made to the CVE-2023-53481 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.

  • Initial Analysis by [email protected]

    Jan. 20, 2026

    Action Type Old Value New Value
    Added CVSS V3.1 AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
    Added CWE CWE-835
    Added CPE Configuration OR *cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* versions from (including) 4.15 up to (excluding) 4.19.276 *cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* versions from (including) 4.20 up to (excluding) 5.4.235 *cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* versions from (including) 5.5 up to (excluding) 5.10.173 *cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* versions from (including) 5.11 up to (excluding) 5.15.100 *cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* versions from (including) 5.16 up to (excluding) 6.1.18 *cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* versions from (including) 6.2 up to (excluding) 6.2.5 *cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* versions from (including) 2.6.25 up to (excluding) 4.14.308
    Added Reference Type kernel.org: https://git.kernel.org/stable/c/3afaaf6f5867dc4ad383808d4053f428ec7b867d Types: Patch
    Added Reference Type kernel.org: https://git.kernel.org/stable/c/4d57a7333e26040f2b583983e1970d9d460e56b0 Types: Patch
    Added Reference Type kernel.org: https://git.kernel.org/stable/c/5af1c643184a5d09ff5b3f334077a4d0a163c677 Types: Patch
    Added Reference Type kernel.org: https://git.kernel.org/stable/c/8a18856e074479bd050b01e688c58defadce7ab0 Types: Patch
    Added Reference Type kernel.org: https://git.kernel.org/stable/c/b40d2fbf47af58377e898b5062077a47bb28a132 Types: Patch
    Added Reference Type kernel.org: https://git.kernel.org/stable/c/b5be23f6ae610bdb262160a1f294afee6d0e6a69 Types: Patch
    Added Reference Type kernel.org: https://git.kernel.org/stable/c/cc4bc532acda66189bddc03b3fe1ad689d9a48a2 Types: Patch
    Added Reference Type kernel.org: https://git.kernel.org/stable/c/f006f596fe851c3b6aae60b79f89f89f0e515d2f Types: Patch
  • New CVE Received by 416baaa9-dc9f-4396-8d5f-8c081fb06d67

    Oct. 01, 2025

    Action Type Old Value New Value
    Added Description In the Linux kernel, the following vulnerability has been resolved: ubi: ubi_wl_put_peb: Fix infinite loop when wear-leveling work failed Following process will trigger an infinite loop in ubi_wl_put_peb(): ubifs_bgt ubi_bgt ubifs_leb_unmap ubi_leb_unmap ubi_eba_unmap_leb ubi_wl_put_peb wear_leveling_worker e1 = rb_entry(rb_first(&ubi->used) e2 = get_peb_for_wl(ubi) ubi_io_read_vid_hdr // return err (flash fault) out_error: ubi->move_from = ubi->move_to = NULL wl_entry_destroy(ubi, e1) ubi->lookuptbl[e->pnum] = NULL retry: e = ubi->lookuptbl[pnum]; // return NULL if (e == ubi->move_from) { // NULL == NULL gets true goto retry; // infinite loop !!! $ top PID USER PR NI VIRT RES SHR S %CPU %MEM COMMAND 7676 root 20 0 0 0 0 R 100.0 0.0 ubifs_bgt0_0 Fix it by: 1) Letting ubi_wl_put_peb() returns directly if wearl leveling entry has been removed from 'ubi->lookuptbl'. 2) Using 'ubi->wl_lock' protecting wl entry deletion to preventing an use-after-free problem for wl entry in ubi_wl_put_peb(). Fetch a reproducer in [Link].
    Added Reference https://git.kernel.org/stable/c/3afaaf6f5867dc4ad383808d4053f428ec7b867d
    Added Reference https://git.kernel.org/stable/c/4d57a7333e26040f2b583983e1970d9d460e56b0
    Added Reference https://git.kernel.org/stable/c/5af1c643184a5d09ff5b3f334077a4d0a163c677
    Added Reference https://git.kernel.org/stable/c/8a18856e074479bd050b01e688c58defadce7ab0
    Added Reference https://git.kernel.org/stable/c/b40d2fbf47af58377e898b5062077a47bb28a132
    Added Reference https://git.kernel.org/stable/c/b5be23f6ae610bdb262160a1f294afee6d0e6a69
    Added Reference https://git.kernel.org/stable/c/cc4bc532acda66189bddc03b3fe1ad689d9a48a2
    Added Reference https://git.kernel.org/stable/c/f006f596fe851c3b6aae60b79f89f89f0e515d2f
EPSS is a daily estimate of the probability of exploitation activity being observed over the next 30 days. Following chart shows the EPSS score history of the vulnerability.
Vulnerability Scoring Details
Base CVSS Score: 5.5
Attack Vector
Attack Complexity
Privileges Required
User Interaction
Scope
Confidentiality Impact
Integrity Impact
Availability Impact