CVE-2025-68299
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 AFS (Andrew File System) involves the delayed allocation of a cell's anonymous key. The allocation happens in a background thread during cell setup, but the key may not be allocated when requested, causing a kernel oops (crash). The issue arises because the key description used for request_key() might not be set yet. The fix involves allocating a reference name at cell creation, allocating the anonymous key on demand with mutex protection, and handling cases where the key isn't allocated by returning NULL and retrying appropriately.
How can this vulnerability impact me? :
This vulnerability can cause a kernel oops (crash) in the Linux kernel when the anonymous key is accessed before it is allocated. This can lead to system instability or denial of service in environments using AFS, potentially disrupting file system operations that rely on this key management.