CVE-2024-53217: NFSD: Prevent NULL dereference in nfsd4_process_cb_update()
In the Linux kernel, the following vulnerability has been resolved:
NFSD: Prevent NULL dereference in nfsd4_process_cb_update()
@ses is initialized to NULL. If __nfsd4_find_backchannel() finds no
available backchannel session, setup_callback_client() will try to
dereference @ses and segfault.
Security readout for executives and security teams
Plain-English summary
A flaw in the Linux kernel’s NFS server can crash the affected system when callback setup proceeds without an available backchannel session. The supplied CVSS score is 7.5, reflecting remotely reachable availability impact without required privileges or user interaction. The sources identify no confidentiality or integrity impact.
Executive priority
Treat this as a high-priority availability issue for exposed or critical NFS servers. Schedule prompt kernel updates and restarts through normal change control. Risk is lower where NFSD is disabled or inaccessible, but the supplied evidence does not establish active exploitation or data compromise.
Technical view
In nfsd4_process_cb_update(), the session pointer starts as NULL. If __nfsd4_find_backchannel() finds no usable backchannel session, setup_callback_client() dereferences that NULL pointer, causing a kernel fault. This is CWE-476 and affects availability. Upstream stable commits resolve the condition across supported kernel branches.
Likely exposure
Exposure is most likely on Linux systems running the NFSD service with an affected kernel and using the relevant NFS callback/backchannel functionality. Systems not acting as NFS servers are less likely to reach this code. The supplied version list is ambiguous, so validate distribution kernel packages rather than relying only on upstream version numbers.
Exploitation context
The supplied CVSS vector describes network reachability, low attack complexity, no privileges, and no user interaction, with availability impact only. However, the bundle provides no evidence of public exploitation or exploit availability, and marks the CVE as absent from KEV. Do not treat active exploitation as established.
Researcher notes
The root cause and failure path are clearly described, but the supplied affected-version representation is flattened and includes repeated commit identifiers. Establish exact exposure through distribution package advisories and upstream branch-specific commits. The bundle does not provide proof-of-concept details, observed attacks, or a confirmed exploitation timeline.
Mitigation direction
Install a vendor-supported kernel package that incorporates the applicable upstream stable fix.
Restart into the updated kernel; installing a package alone may leave the vulnerable kernel running.
Review distribution security guidance for affected package versions and any vendor-approved temporary mitigations.
Prioritize externally reachable or business-critical NFS servers where a crash would disrupt operations.
Validation and detection
Inventory Linux hosts running NFSD and record their active kernel package and build.
Compare each active kernel package against its distribution advisory and the referenced upstream stable fixes.
After updating and restarting, confirm the running kernel is the remediated build.
Review kernel logs and monitoring for NFSD-related NULL dereferences, faults, crashes, or unexpected restarts.
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.