CVE-2025-22054: arcnet: Add NULL check in com20020pci_probe()
In the Linux kernel, the following vulnerability has been resolved:
arcnet: Add NULL check in com20020pci_probe()
devm_kasprintf() returns NULL when memory allocation fails. Currently,
com20020pci_probe() does not check for this case, which results in a
NULL pointer dereference.
Add NULL check after devm_kasprintf() to prevent this issue and ensure
no resources are left allocated.
Security readout for executives and security teams
Plain-English summary
This is a Linux kernel availability bug in the ARCnet com20020 PCI probe path. If memory allocation fails, the kernel could dereference NULL and crash. The business impact is service disruption on affected Linux systems, not data theft or privilege escalation based on the supplied CVSS details.
Executive priority
Treat as routine but time-bound kernel maintenance. It has a credible denial-of-service impact, but the supplied evidence does not show remote exploitation, data exposure, or active exploitation. Prioritize high-availability Linux systems during normal patch windows.
Technical view
CVE-2025-22054 is CWE-476 in com20020pci_probe(). devm_kasprintf() can return NULL on allocation failure, but the probe path did not check it. Linux stable fixes add the missing NULL check. CVSS 3.1 is 5.5, local attack vector, low privileges, no confidentiality or integrity impact, high availability impact.
Likely exposure
Exposure is likely limited to affected Linux kernel versions where the ARCnet com20020 PCI driver code is present or reachable. Systems not running affected kernels, or already updated to fixed vendor kernel packages, are not indicated as exposed by the source bundle.
Exploitation context
The source bundle marks KEV as false and provides no evidence of active exploitation. The CVSS vector indicates local access with low privileges and no user interaction. The documented impact is availability loss through a NULL pointer dereference, not remote compromise.
Researcher notes
Evidence is strongest for root cause and fix direction because the CVE references multiple Linux stable commits. Exposure details are incomplete: the bundle lists kernel versions and commits but does not identify specific distributions beyond Debian LTS advisories or operational prerequisites beyond the CVSS vector.
Mitigation direction
Update affected Linux kernels through the operating system or distribution vendor.
Apply kernel builds containing the referenced Linux stable fixes.
For Debian LTS systems, review and apply the cited Debian security updates.
Track vendor advisories for affected kernel package status.
Prioritize systems where kernel crashes would disrupt critical services.
Validation and detection
Inventory Linux kernel versions across production and support environments.
Compare kernel versions against the affected and fixed version data in the CVE record.
Confirm deployed kernel packages include the CVE-2025-22054 fix or equivalent stable commit.
Review vendor advisories for Debian or other distributions in use.
Check crash reporting for NULL pointer dereferences in com20020pci_probe().
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.