Security readout for executives and security teams
Plain-English summary
CVE-2025-39895 is a Linux kernel availability bug. Under a specific condition where a CPU mask contains only offline CPUs, scheduler code can dereference an invalid pointer and crash the kernel. The documented impact is denial of service, not data theft or privilege escalation.
Executive priority
Treat this as a targeted availability risk. Patch through normal kernel maintenance, faster for shared, embedded, or operational systems where a local crash has business impact. Current sources do not justify emergency internet-wide incident response.
Technical view
The flaw is a NULL pointer dereference in sched_numa_find_nth_cpu(). Its bsearch can return NULL when sched_domains_numa_masks and the provided CPU mask do not intersect. The fix bails out instead of dereferencing the bogus pointer. The source shows a boot-time kernel panic on rk3399 with maxcpus=4.
Likely exposure
Exposure applies to affected Linux kernels, especially systems using CPU offline, CPU hotplug, NUMA scheduling paths, or custom boot limits such as maxcpus. The bundle lists affected Linux versions and commit references, but exact downstream distro package status must be verified with vendors.
Exploitation context
The CVSS vector is local, low privilege, no user interaction, with high availability impact. KEV is false, and the supplied sources do not state active exploitation. Practical triggering appears configuration and topology dependent.
Researcher notes
Evidence supports CWE-476 and CVSS 5.5. The public description is kernel-resolution text, not a full exploit analysis. Do not assume broad exploitability beyond local, topology-dependent denial of service without additional vendor or researcher confirmation.
Mitigation direction
Apply vendor kernel updates that include the referenced stable fixes.
Check distribution advisories for backported fixes in supported kernel packages.
Avoid risky CPU offline or maxcpus configurations on affected kernels where practical.
Prioritize systems where local users can influence CPU hotplug or boot configuration.
Validation and detection
Inventory Linux kernel versions and map them to vendor advisories.
Check whether deployed kernels include the referenced stable commits.
Review systems using CPU hotplug, offline CPUs, NUMA, or maxcpus settings.
Confirm no recurring kernel oops or panic traces mention sched_numa_find_nth_cpu().
Generated from the cited source records. This long-tail analysis has not been individually reviewed by a named human.
Potential ATT&CK relevance
Conservative CVE-to-ATT&CK context
These mappings and lookup hints may be relevant to the vulnerability behavior, CWE, affected product, or exposure path. Glexia-inferred context is not an official MITRE, ATT&CK, CWE, or CVE Program mapping.
ATT&CK lookup starting points
Use these exact CWE pages and searches to review the Glexia ATT&CK library from this CVE's weakness and description context.
cwe · low confidence lookup
CWE-476: Exact CWE lookup
Use the exact CWE identifier as the starting point before reviewing related ATT&CK behavior. Open the exact CWE lookup page first, then review the ATT&CK searches from that MITRE weakness context. This is a Glexia lookup hint, not an official ATT&CK mapping.
These fields come from the CVE record and ADP containers, not from Glexia's Take. They preserve time-varying source decisions such as CISA SSVC, KEV status, CVSS metrics, and provider references.
We collect every scored CVSS vector available in the official CNA and ADP containers. When more than one version is present, the table keeps the source vectors side by side instead of collapsing them into the highest score.
CWE links open Glexia weakness intelligence pages with official CWE context, developer remediation guidance, and related CVE mappings.
CWE-476 · source CWE mapping
NULL Pointer Dereference
NULL Pointer Dereference represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.