CVE-2023-52490 Vulnerability Analysis & Exploit Details

CVE-2023-52490
Vulnerability Scoring

5.5
/10
Significant Risk

Security assessments indicate that CVE-2023-52490 presents a notable risk, potentially requiring prompt mitigation.

Attack Complexity Details

  • Attack Complexity: Low
    Exploits can be performed without significant complexity or special conditions.
  • Attack Vector: Local
    Vulnerability requires local system access.
  • Privileges Required: Low
    Some privileges are necessary to exploit the vulnerability.
  • Scope: Unchanged
    Exploit remains within the originally vulnerable component.
  • User Interaction: None
    No user interaction is necessary for exploitation.

CVE-2023-52490 Details

Status: Analyzed

Last updated: 🕞 07 Jan 2025, 15:44 UTC
Originally published on: 🕕 11 Mar 2024, 18:15 UTC

Time between publication and last update: 301 days

CVSS Release: version 3

CVSS3 Source

nvd@nist.gov

CVSS3 Type

Primary

CVSS3 Vector

CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H

CVE-2023-52490 Vulnerability Summary

CVE-2023-52490: In the Linux kernel, the following vulnerability has been resolved: mm: migrate: fix getting incorrect page mapping during page migration When running stress-ng testing, we found below kernel crash after a few hours: Unable to handle kernel NULL pointer dereference at virtual address 0000000000000000 pc : dentry_name+0xd8/0x224 lr : pointer+0x22c/0x370 sp : ffff800025f134c0 ...... Call trace: dentry_name+0xd8/0x224 pointer+0x22c/0x370 vsnprintf+0x1ec/0x730 vscnprintf+0x2c/0x60 vprintk_store+0x70/0x234 vprintk_emit+0xe0/0x24c vprintk_default+0x3c/0x44 vprintk_func+0x84/0x2d0 printk+0x64/0x88 __dump_page+0x52c/0x530 dump_page+0x14/0x20 set_migratetype_isolate+0x110/0x224 start_isolate_page_range+0xc4/0x20c offline_pages+0x124/0x474 memory_block_offline+0x44/0xf4 memory_subsys_offline+0x3c/0x70 device_offline+0xf0/0x120 ...... After analyzing the vmcore, I found this issue is caused by page migration. The scenario is that, one thread is doing page migration, and we will use the target page's ->mapping field to save 'anon_vma' pointer between page unmap and page move, and now the target page is locked and refcount is 1. Currently, there is another stress-ng thread performing memory hotplug, attempting to offline the target page that is being migrated. It discovers that the refcount of this target page is 1, preventing the offline operation, thus proceeding to dump the page. However, page_mapping() of the target page may return an incorrect file mapping to crash the system in dump_mapping(), since the target page->mapping only saves 'anon_vma' pointer without setting PAGE_MAPPING_ANON flag. There are seveval ways to fix this issue: (1) Setting the PAGE_MAPPING_ANON flag for target page's ->mapping when saving 'anon_vma', but this can confuse PageAnon() for PFN walkers, since the target page has not built mappings yet. (2) Getting the page lock to call page_mapping() in __dump_page() to avoid crashing the system, however, there are still some PFN walkers that call page_mapping() without holding the page lock, such as compaction. (3) Using target page->private field to save the 'anon_vma' pointer and 2 bits page state, just as page->mapping records an anonymous page, which can remove the page_mapping() impact for PFN walkers and also seems a simple way. So I choose option 3 to fix this issue, and this can also fix other potential issues for PFN walkers, such as compaction.

Assessing the Risk of CVE-2023-52490

Access Complexity Graph

The exploitability of CVE-2023-52490 depends on two key factors: attack complexity (the level of effort required to execute an exploit) and privileges required (the access level an attacker needs).

Exploitability Analysis for CVE-2023-52490

CVE-2023-52490 presents an accessible attack vector with minimal effort required. Restricting access controls and implementing security updates are critical to reducing exploitation risks.

Understanding AC and PR

A lower complexity and fewer privilege requirements make exploitation easier. Security teams should evaluate these aspects to determine the urgency of mitigation strategies, such as patch management and access control policies.

Attack Complexity (AC) measures the difficulty in executing an exploit. A high AC means that specific conditions must be met, making an attack more challenging, while a low AC means the vulnerability can be exploited with minimal effort.

Privileges Required (PR) determine the level of system access necessary for an attack. Vulnerabilities requiring no privileges are more accessible to attackers, whereas high privilege requirements limit exploitation to authorized users with elevated access.

CVSS Score Breakdown Chart

Above is the CVSS Sub-score Breakdown for CVE-2023-52490, illustrating how Base, Impact, and Exploitability factors combine to form the overall severity rating. A higher sub-score typically indicates a more severe or easier-to-exploit vulnerability.

CIA Impact Analysis

Below is the Impact Analysis for CVE-2023-52490, showing how Confidentiality, Integrity, and Availability might be affected if the vulnerability is exploited. Higher values usually signal greater potential damage.

  • Confidentiality: None
    CVE-2023-52490 has no significant impact on data confidentiality.
  • Integrity: None
    CVE-2023-52490 poses no threat to data integrity.
  • Availability: High
    CVE-2023-52490 can disrupt system operations, potentially causing complete denial of service (DoS).

Exploit Prediction Scoring System (EPSS)

The EPSS score estimates the probability that this vulnerability will be exploited in the near future.

EPSS Score: 0.042% (probability of exploit)

EPSS Percentile: 5.02% (lower percentile = lower relative risk)
This vulnerability is less risky than approximately 94.98% of others.

CVE-2023-52490 References

External References

CWE Common Weakness Enumeration

CWE-476

Vulnerable Configurations

  • cpe:2.3:o:linux:linux_kernel:6.3:-:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3:-:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.1:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.1:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.2:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.2:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.3:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.3:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.4:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.4:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.5:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.5:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.6:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.6:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.7:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.7:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.8:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.8:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.9:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.9:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.10:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.10:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.11:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.11:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.12:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.12:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.13:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.13:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3:rc1:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3:rc1:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3:rc2:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3:rc2:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3:rc3:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3:rc3:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3:rc4:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3:rc4:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3:rc5:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3:rc5:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3:rc6:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3:rc6:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3:rc7:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3:rc7:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4:-:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4:-:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.1:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.1:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.2:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.2:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.3:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.3:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.4:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.4:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.5:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.5:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.6:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.6:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.7:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.7:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.8:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.8:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.9:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.9:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.10:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.10:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.11:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.11:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.12:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.12:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.13:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.13:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.14:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.14:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.15:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.15:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.16:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.16:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4:rc1:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4:rc1:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4:rc2:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4:rc2:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4:rc3:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4:rc3:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4:rc4:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4:rc4:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4:rc5:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4:rc5:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4:rc6:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4:rc6:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4:rc7:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4:rc7:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5:-:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5:-:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5.1:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5.1:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5.2:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5.2:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5.3:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5.3:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5.4:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5.4:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5.5:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5.5:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5.6:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5.6:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5.7:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5.7:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5.8:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5.8:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5.9:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5.9:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5.10:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5.10:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5.11:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5.11:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5.12:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5.12:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5.13:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5.13:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5:rc1:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5:rc1:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5:rc2:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5:rc2:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5:rc3:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5:rc3:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5:rc4:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5:rc4:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5:rc5:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5:rc5:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5:rc6:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5:rc6:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5:rc7:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5:rc7:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6:-:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6:-:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.1:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.1:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.2:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.2:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.3:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.3:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.4:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.4:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.5:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.5:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.6:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.6:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.7:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.7:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.8:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.8:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.9:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.9:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.10:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.10:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.11:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.11:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.12:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.12:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.13:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.13:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.14:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.14:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.7:-:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.7:-:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.7.1:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.7.1:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.7.2:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.7.2:*:*:*:*:*:*:*

Protect Your Infrastructure against CVE-2023-52490: Combat Critical CVE Threats

Stay updated with real-time CVE vulnerabilities and take action to secure your systems. Enhance your cybersecurity posture with the latest threat intelligence and mitigation techniques. Develop the skills necessary to defend against CVEs and secure critical infrastructures. Join the top cybersecurity professionals safeguarding today's infrastructures.

Other 5 Recently Published CVEs Vulnerabilities

  • CVE-2025-2129 – A vulnerability was found in Mage AI 0.9.75. It has been classified as problematic. This affects an unknown part. The manipulation leads to insecur...
  • CVE-2025-2127 – A vulnerability was found in JoomlaUX JUX Real Estate 3.4.0 on Joomla. It has been classified as problematic. Affected is an unknown function of th...
  • CVE-2025-2126 – A vulnerability was found in JoomlaUX JUX Real Estate 3.4.0 on Joomla and classified as critical. This issue affects some unknown processing of the...
  • CVE-2025-2125 – A vulnerability has been found in Control iD RH iD 25.2.25.0 and classified as problematic. This vulnerability affects unknown code of the file /v2...
  • CVE-2025-2124 – A vulnerability, which was classified as problematic, was found in Control iD RH iD 25.2.25.0. This affects an unknown part of the file /v2/custome...