CVE-2025-37964 Vulnerability Analysis & Exploit Details

CVE-2025-37964
Vulnerability Scoring

5.5
/10
Significant Risk

Security assessments indicate that CVE-2025-37964 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-2025-37964 Details

Status: Analyzed

Last updated: 🕣 16 Dec 2025, 20:30 UTC
Originally published on: 🕓 20 May 2025, 16:15 UTC

Time between publication and last update: 210 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-2025-37964 Vulnerability Summary

CVE-2025-37964: In the Linux kernel, the following vulnerability has been resolved: x86/mm: Eliminate window where TLB flushes may be inadvertently skipped tl;dr: There is a window in the mm switching code where the new CR3 is set and the CPU should be getting TLB flushes for the new mm. But should_flush_tlb() has a bug and suppresses the flush. Fix it by widening the window where should_flush_tlb() sends an IPI. Long Version: === History === There were a few things leading up to this. First, updating mm_cpumask() was observed to be too expensive, so it was made lazier. But being lazy caused too many unnecessary IPIs to CPUs due to the now-lazy mm_cpumask(). So code was added to cull mm_cpumask() periodically[2]. But that culling was a bit too aggressive and skipped sending TLB flushes to CPUs that need them. So here we are again. === Problem === The too-aggressive code in should_flush_tlb() strikes in this window: // Turn on IPIs for this CPU/mm combination, but only // if should_flush_tlb() agrees: cpumask_set_cpu(cpu, mm_cpumask(next)); next_tlb_gen = atomic64_read(&next->context.tlb_gen); choose_new_asid(next, next_tlb_gen, &new_asid, &need_flush); load_new_mm_cr3(need_flush); // ^ After 'need_flush' is set to false, IPIs *MUST* // be sent to this CPU and not be ignored. this_cpu_write(cpu_tlbstate.loaded_mm, next); // ^ Not until this point does should_flush_tlb() // become true! should_flush_tlb() will suppress TLB flushes between load_new_mm_cr3() and writing to 'loaded_mm', which is a window where they should not be suppressed. Whoops. === Solution === Thankfully, the fuzzy "just about to write CR3" window is already marked with loaded_mm==LOADED_MM_SWITCHING. Simply checking for that state in should_flush_tlb() is sufficient to ensure that the CPU is targeted with an IPI. This will cause more TLB flush IPIs. But the window is relatively small and I do not expect this to cause any kind of measurable performance impact. Update the comment where LOADED_MM_SWITCHING is written since it grew yet another user. Peter Z also raised a concern that should_flush_tlb() might not observe 'loaded_mm' and 'is_lazy' in the same order that switch_mm_irqs_off() writes them. Add a barrier to ensure that they are observed in the order they are written.

Assessing the Risk of CVE-2025-37964

Access Complexity Graph

The exploitability of CVE-2025-37964 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-2025-37964

CVE-2025-37964 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-2025-37964, 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-2025-37964, showing how Confidentiality, Integrity, and Availability might be affected if the vulnerability is exploited. Higher values usually signal greater potential damage.

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

CVE-2025-37964 References

External References

CWE Common Weakness Enumeration

NVD-CWE-noinfo

Vulnerable Configurations

  • cpe:2.3:o:linux:linux_kernel:5.15.179:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.15.179:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.15.180:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.15.180:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.15.181:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.15.181:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:5.15.182:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:5.15.182:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.129:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.129:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.130:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.130:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.131:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.131:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.132:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.132:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.133:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.133:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.134:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.134:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.135:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.135:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.136:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.136:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.137:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.137:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.138:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.138:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.79:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.79:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.80:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.80:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.81:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.81:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.82:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.82:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.83:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.83:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.84:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.84:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.85:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.85:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.86:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.86:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.87:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.87:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.88:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.88:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.89:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.89:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.6.90:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.6.90:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.12.16:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.12.16:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.12.17:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.12.17:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.12.18:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.12.18:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.12.19:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.12.19:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.12.20:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.12.20:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.12.21:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.12.21:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.12.22:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.12.22:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.12.23:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.12.23:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.12.24:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.12.24:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.12.25:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.12.25:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.12.26:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.12.26:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.12.27:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.12.27:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.12.28:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.12.28:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.13.4:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.13.4:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.13.5:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.13.5:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.13.6:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.13.6:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.13.7:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.13.7:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.13.8:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.13.8:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.13.9:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.13.9:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.13.10:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.13.10:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.13.11:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.13.11:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.13.12:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.13.12:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.13:rc1:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.13:rc1:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.13:rc2:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.13:rc2:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.13:rc3:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.13:rc3:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.13:rc4:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.13:rc4:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.13:rc5:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.13:rc5:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.13:rc6:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.13:rc6:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.13:rc7:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.13:rc7:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.14:-:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.14:-:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.14.1:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.14.1:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.14.2:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.14.2:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.14.3:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.14.3:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.14.4:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.14.4:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.14.5:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.14.5:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.14.6:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.14.6:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.15:rc1:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.15:rc1:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.15:rc2:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.15:rc2:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.15:rc3:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.15:rc3:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.15:rc4:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.15:rc4:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.15:rc5:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.15:rc5:*:*:*:*:*:*
  • cpe:2.3:o:debian:debian_linux:11.0:*:*:*:*:*:*:*
    cpe:2.3:o:debian:debian_linux:11.0:*:*:*:*:*:*:*

Protect Your Infrastructure against CVE-2025-37964: 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-14298 – The FiboSearch – Ajax Search for WooCommerce plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the plugin's `thegem_te_search` ...
  • CVE-2025-12492 – The Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin plugin for WordPress is vulnerab...
  • CVE-2025-13619 – The Flex Store Users plugin for WordPress is vulnerable to Privilege Escalation in all versions up to, and including, 1.1.0. This is due to the 'fs...
  • CVE-2025-12820 – The Pure WC Variation Swatches WordPress plugin through 1.1.7 does not have an authorization check when updating its settings, which could allow an...
  • CVE-2025-14735 – The "Amazon affiliate lite Plugin" plugin for WordPress is vulnerable to Stored Cross-Site Scripting via admin settings in all versions up to, and ...