CVE-2026-46094
Last modified
CVE-2026-46094 is a high-severity vulnerability rated 7.1/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: ext4: fix bounds check in check_xattrs() to prevent out-of-bounds access The bounds check for the next xattr entry in check_xattrs() uses (void *)next >= end, which allows next to point within sizeof(u32) bytes of end. On the next loop iteration, IS_LAST_ENTRY() reads 4 bytes via *(__u32 *)(entry), which can overrun the valid xattr region. For example, if next lands at end - 1, the check passes since next < end, but IS_LAST_ENTRY() reads 4 bytes starting at end - 1, accessing 3 bytes beyond the valid region. Fix this by changing the check to (void *)next + sizeof(u32) > end, ensuring there is always enough space for the IS_LAST_ENTRY() read on the subsequent iteration.. EPSS estimates a 0.13% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: ext4: fix bounds check in check_xattrs() to prevent out-of-bounds access The bounds check for the next xattr entry in check_xattrs() uses (void *)next >= end, which allows next to point within sizeof(u32) bytes of end. On the next loop iteration, IS_LAST_ENTRY() reads 4 bytes via *(__u32 *)(entry), which can overrun the valid xattr region. For example, if next lands at end - 1, the check passes since next < end, but IS_LAST_ENTRY() reads 4 bytes starting at end - 1, accessing 3 bytes beyond the valid region. Fix this by changing the check to (void *)next + sizeof(u32) > end, ensuring there is always enough space for the IS_LAST_ENTRY() read on the subsequent iteration.
Metrics
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H
Weakness Enumeration
Affected Software
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux Kernel | >= 6.3, < 6.6.140 |
| Linux | Linux Kernel | >= 6.7, < 6.12.86 |
| Linux | Linux Kernel | >= 6.13, < 6.18.27 |
| Linux | Linux Kernel | >= 6.19, < 7.0.4 |
References
Timeline
- Published
- Last Modified
- Status
- Analyzed
Frequently Asked Questions
What is CVE-2026-46094?
How severe is CVE-2026-46094?
How do I fix CVE-2026-46094?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-46089In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-4609The ProfileGrid – User Profiles, Groups and Communities plug…7.1
- CVE-2026-46090In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-46091In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-46092In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-46093In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-46095In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-46096In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-46097In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-46098In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-46099In the Linux kernel, the following vulnerability has been re…8.1
- CVE-2026-4610The ProfileGrid – User Profiles, Groups and Communities plug…6.4
Are you affected by CVE-2026-46094?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
