PatchSiren cyber security CVE debrief
CVE-2026-46062 Linux CVE debrief
A vulnerability in the Linux kernel's ntfs3 filesystem driver has been resolved. The issue was an integer overflow in the `run_unpack()` function's volume boundary check. The original check `lcn + len > sbi->used.bitmap.nbits` used raw addition that could wrap around for large `lcn` and `len` values, allowing validation to be bypassed. The fix applies `check_add_overflow()`, consistent with adjacent overflow checks added in a prior commit (3ac37e100385). The vulnerability was discovered through fuzzing using LibAFL with QEMU. Multiple stable kernel branches have received patches.
- Vendor
- Linux
- Product
- Unknown
- CVSS
- HIGH 7.8
- CISA KEV
- Not listed in stored evidence
- Original CVE published
- 2026-05-27
- Original CVE updated
- 2026-06-16
- Advisory published
- 2026-05-27
- Advisory updated
- 2026-06-16
Who should care
Linux system administrators, kernel maintainers, and security teams managing systems that mount NTFS filesystems, particularly those handling untrusted or externally sourced NTFS volumes. Organizations with embedded Linux devices using ntfs3 should prioritize patching.
Technical summary
The ntfs3 filesystem driver in the Linux kernel contained an integer overflow vulnerability in the `run_unpack()` function. The volume boundary validation check used raw addition (`lcn + len > sbi->used.bitmap.nbits`) which could wrap around when processing NTFS runlists with large logical cluster number (lcn) and length (len) values. This wrap-around would cause the boundary check to incorrectly pass, potentially allowing out-of-bounds access. The resolution replaces the raw addition with `check_add_overflow()`, matching the defensive pattern already implemented for adjacent checks in the same function (prev_lcn + dlcn and vcn64 + len) from commit 3ac37e100385. Patches have been applied to multiple stable kernel branches.
Defensive priority
medium
Recommended defensive actions
- Apply kernel updates from your Linux distribution when available for CVE-2026-46062
- Verify ntfs3 module is not loaded on systems that do not require NTFS filesystem support
- Monitor kernel stable branch announcements for backported fixes
- Review systems that mount untrusted NTFS filesystems as higher priority for patching
Evidence notes
The vulnerability description indicates this was found through fuzzing with a source-patched harness (LibAFL + QEMU), suggesting active security research but no evidence of in-the-wild exploitation. The fix applies established overflow checking patterns already present in the same function.
Sources and references
Verified primary and authoritative sources
-
CVE-2026-46062 CVE Program record
Publisher, destination, and source semantics verified
URL: https://www.cve.org/CVERecord?id=CVE-2026-46062
CVE Program - Official CVE Program record with source-provided CVE metadata.
-
CVE-2026-46062 NVD vulnerability detail
Publisher, destination, and source semantics verified
URL: https://nvd.nist.gov/vuln/detail/CVE-2026-46062
NIST National Vulnerability Database - Official NIST NVD detail page and source-specific vulnerability assessment.
Supplemental references
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/60dab3e2931f3d792438a77a6cb0cb731c43300b
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/6175d09c23bec4b60860ee9a0170308ff4b56e10
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/984a415f019536ea2d24de9010744e5302a9a948
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/a954061b334ec67c79ae9d0cadd83fa521396487
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/f1af27cec07a9fd0847166bdb23c99e86b05bfdc
416baaa9-dc9f-4396-8d5f-8c081fb06d67
Methodology and review provenance
AI-assisted synthesis based on stored public vulnerability evidence. System validation, approval state, and publication status do not by themselves establish human review of this revision. PatchSiren helps prioritize defensive review and does not prove exposure or remediation on any system.