Security readout for executives and security teams
Plain-English summary
CVE-2025-22070 is a Linux kernel availability issue in the 9p filesystem client. Under a specific 9p mount and ACL configuration, creating a directory can trigger a NULL pointer dereference and crash the client path. It does not indicate data theft or privilege escalation in the provided sources.
Executive priority
Treat as a targeted availability risk, not a broad compromise signal. Patch through normal kernel maintenance, with higher priority for virtualization, development, or shared-filesystem environments that rely on 9p mounts.
Technical view
The flaw is in fs/9p mkdir handling with the posixacl mount option and inherited default ACLs. v9fs_fid_add() can set the fid pointer to NULL before v9fs_set_create_acl() uses it, causing CWE-476 NULL pointer dereference. Stable kernel fixes reorder those calls.
Likely exposure
Exposure is most likely on Linux systems using 9p mounts with posixacl enabled and default ACLs on parent directories. A local low-privileged user with access to create directories on that mount is the relevant actor. Systems not using 9p filesystem mounts are unlikely to be exposed.
Exploitation context
The source bundle does not show CISA KEV listing or any cited evidence of active exploitation. The CVSS vector is local, low complexity, low privileges, no user interaction, with high availability impact and no confidentiality or integrity impact.
Researcher notes
The evidence supports a local denial-of-service condition in a narrow 9p ACL path. The affected-version data in the bundle is abbreviated, so validation should rely on kernel or distribution advisory mapping to the listed stable commits.
Mitigation direction
Update affected Linux kernels using vendor guidance or referenced stable commits.
Prioritize systems where 9p mounts are enabled with posixacl.
Review distribution advisories for fixed package versions before rollout.
Consider disabling unnecessary 9p mounts where operationally safe.
Test kernel updates against workloads that depend on 9p filesystems.
Validation and detection
Inventory Linux kernel versions against vendor fixed releases.
Identify hosts with active 9p filesystem mounts.
Check whether 9p mounts use the posixacl option.
Review logs for 9p-related NULL pointer dereference crashes.
Confirm patched kernels include the referenced fs/9p mkdir fix.
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.