VYPR
Unrated severityNVD Advisory· Published Dec 16, 2025· Updated Apr 15, 2026

CVE-2025-68309

CVE-2025-68309

Description

In the Linux kernel, the following vulnerability has been resolved:

PCI/AER: Fix NULL pointer access by aer_info

The kzalloc(GFP_KERNEL) may return NULL, so all accesses to aer_info->xxx will result in kernel panic. Fix it.

AI Insight

LLM-synthesized narrative grounded in this CVE's description and references.

A NULL pointer dereference in the Linux kernel's PCI/AER subsystem can cause a kernel panic, patched by adding a NULL check after kzalloc.

Overview

In the Linux kernel, the PCI/AER (Advanced Error Reporting) subsystem function aer_info fails to check the return value of kzalloc(GFP_KERNEL). If memory allocation fails and returns NULL, all subsequent accesses to aer_info->xxx will dereference a NULL pointer, leading to a kernel panic [1].

Exploitation

To trigger this vulnerability, an attacker would need to cause memory pressure on the target system such that a GFP_KERNEL allocation fails. This may be achievable through local user actions that exhaust system memory, or other means of inducing allocation failure. No special privileges are required beyond the ability to trigger an AER event that invokes the vulnerable code path.

Impact

A successful NULL pointer dereference in the kernel causes a system crash (kernel panic or oops), resulting in a denial of service (DoS). There is no evidence of privilege escalation or data corruption from this bug.

Mitigation

The fix is a one-line change that adds a NULL check after the return value of kzalloc and returns early if it fails, preventing the dereference [1]. The patch has been committed to the Linux kernel stable tree and is available in subsequent releases. Systems running unpatched kernels are vulnerable.

AI Insight generated on May 19, 2026. Synthesized from this CVE's description and the cited reference URLs; citations are validated against the source bundle.

Affected products

1

Patches

0

No patches discovered yet.

Vulnerability mechanics

AI mechanics synthesis has not run for this CVE yet.

References

2

News mentions

0

No linked articles in our index yet.