CVE-2026-89695
Last modified
CVE-2026-89695 is a high-severity vulnerability rated 7.5/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: nfsd: cap decoded POSIX ACL count to bound sort cost nfsd4_decode_posixacl() reads a u32 entry count off the wire and passes it straight to posix_acl_alloc() and sort_pacl_range(). The latter is an O(n^2) bubble sort, so a client-chosen count drives unbounded CPU in the server's compound processing path. nfsd4_decode_posixacl() xdr_stream_decode_u32(&count) /* uncapped u32 */ posix_acl_alloc(count, GFP_KERNEL) sort_pacl_range(*acl, 0, count - 1) /* O(n^2) bubble sort */ The encoder side in the same file already rejects ACLs whose a_count exceeds NFS_ACL_MAX_ENTRIES, but the decoder introduced in commit 5fc51dfc2eb1 ("NFSD: Add support for XDR decoding POSIX draft ACLs") omitted the symmetric check. Fix by rejecting a wire count greater than NFS_ACL_MAX_ENTRIES with nfserr_inval, before any allocation, so the sort is bounded by NFS_ACL_MAX_ENTRIES^2 comparisons. While we're in here, also fix the nfserr_resource return if posix_acl_alloc() fails. EPSS estimates a 0.20% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: nfsd: cap decoded POSIX ACL count to bound sort cost nfsd4_decode_posixacl() reads a u32 entry count off the wire and passes it straight to posix_acl_alloc() and sort_pacl_range(). The latter is an O(n^2) bubble sort, so a client-chosen count drives unbounded CPU in the server's compound processing path. nfsd4_decode_posixacl() xdr_stream_decode_u32(&count) /* uncapped u32 */ posix_acl_alloc(count, GFP_KERNEL) sort_pacl_range(*acl, 0, count - 1) /* O(n^2) bubble sort */ The encoder side in the same file already rejects ACLs whose a_count exceeds NFS_ACL_MAX_ENTRIES, but the decoder introduced in commit 5fc51dfc2eb1 ("NFSD: Add support for XDR decoding POSIX draft ACLs") omitted the symmetric check. Fix by rejecting a wire count greater than NFS_ACL_MAX_ENTRIES with nfserr_inval, before any allocation, so the sort is bounded by NFS_ACL_MAX_ENTRIES^2 comparisons. While we're in here, also fix the nfserr_resource return if posix_acl_alloc() fails. That's not a legal error code for v4.1+. Change it to return nfserr_jukebox as that's more appropriate for memory allocation failures.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 5fc51dfc2eb160bd7ab3251ab1767cacf9c8bf05, < ea14d71d6ecb925673761bcf79f781f7dc9042cc; >= 5fc51dfc2eb160bd7ab3251ab1767cacf9c8bf05, < 4bc1108e876153a2dd6d874052b99182c3603135 |
| Linux | Linux | 7.0 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-89695?
How severe is CVE-2026-89695?
How do I fix CVE-2026-89695?
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-8969Mitigation bypass in the DOM: Security component. This vulne…8.1
- CVE-2026-89690In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89691In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2026-89692In the Linux kernel, the following vulnerability has been re…7.5
- CVE-2026-89693In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89694In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89696In the Linux kernel, the following vulnerability has been re…7.5
- CVE-2026-89697In the Linux kernel, the following vulnerability has been re…9.1
- CVE-2026-89698In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89699In the Linux kernel, the following vulnerability has been re…7.5
- CVE-2026-8970Privilege escalation in the Security component. This vulnera…8.8
- CVE-2026-89700In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-89695?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
