CVE-2025-68219
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
What immediate steps should I take to mitigate this vulnerability?
To mitigate this vulnerability, update your Linux kernel to a version that includes the fix for the memory leak in the cifs smb3_fs_context_parse_param error path. This fix ensures proper cleanup of allocated memory and prevents leaks. Until the update is applied, avoid using mount options that trigger the vulnerable code path if possible.
Can you explain this vulnerability to me?
This vulnerability is a memory leak in the Linux kernel's CIFS (Common Internet File System) implementation. Specifically, when processing SMB3 mount options, if an error occurs after certain memory allocations for source strings (ctx->source and fc->source), the old error handler fails to free this allocated memory, causing a leak. The fix involves properly freeing these source strings and setting pointers to NULL to prevent double-free issues.
How can this vulnerability impact me? :
The memory leak can lead to increased memory usage in the kernel over time, potentially degrading system performance or causing instability if the leak is significant or occurs frequently. This could affect systems using CIFS mounts with SMB3, especially under error conditions during mount option processing.