CVE-2025-68796
BaseFortify
Publication date: 2026-01-13
Last updated on: 2026-01-19
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| 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 is in the Linux kernel's F2FS filesystem. It occurs because the system may add a zero-sized extent into the extent cache during an error path in the f2fs_zero_range() function. This improper update can cause a kernel BUG and crash, as the extent length is zero, which should be avoided.
How can this vulnerability impact me? :
The vulnerability can cause the Linux kernel to crash (kernel BUG) when handling certain filesystem operations on F2FS. This can lead to system instability, potential data loss, or denial of service due to the kernel panic triggered by the zero-sized extent update.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by monitoring kernel logs for specific error messages related to the f2fs filesystem. Look for kernel BUG messages mentioning '__update_extent_tree_range' and zero-sized extent updates in the extent cache. You can use the following command to check the kernel log for such errors: sudo dmesg | grep -i 'f2fs.*extent len is zero' or sudo journalctl -k | grep -i 'f2fs.*extent len is zero' These commands help identify if the system has encountered the bug described in the vulnerability.
What immediate steps should I take to mitigate this vulnerability?
The immediate mitigation step is to update the Linux kernel to a version where this vulnerability has been fixed. The fix avoids updating zero-sized extents in the extent cache in the f2fs filesystem. Until the kernel is updated, avoid operations that trigger f2fs zero range updates, such as fallocate or ioctl operations on f2fs filesystems that might cause this bug to manifest.