CVE-2025-68167
BaseFortify
Publication date: 2025-12-16
Last updated on: 2025-12-18
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability in the Linux kernel's gpiolib debugfs occurs because if memory allocation in the function gpiolib_seq_start() fails, a pointer field (s->private) remains uninitialized. Later, this uninitialized pointer is dereferenced in gpiolib_seq_stop() without checking if it is valid, which can lead to invalid pointer access. The fix involves initializing s->private to NULL before allocation and checking it before dereferencing.
How can this vulnerability impact me? :
The impact of this vulnerability could include kernel crashes or undefined behavior due to invalid pointer dereferencing, potentially leading to system instability or denial of service. However, specific impacts are not detailed in the provided information.