CVE-2026-97559
Last modified
CVE-2026-97559 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: smb: client: fail DACL rewrite when the new DACL exceeds 64K replace_sids_and_copy_aces() and set_chmod_dacl() accumulate the size of the DACL they build in a u16. That accumulator can wrap. validate_dacl() caps num_aces at (dacl_size - sizeof(struct smb_acl)) / 20, i.e.
Description
In the Linux kernel, the following vulnerability has been resolved: smb: client: fail DACL rewrite when the new DACL exceeds 64K replace_sids_and_copy_aces() and set_chmod_dacl() accumulate the size of the DACL they build in a u16. That accumulator can wrap. validate_dacl() caps num_aces at (dacl_size - sizeof(struct smb_acl)) / 20, i.e. 3276 for a maximally sized DACL, while each rewritten ACE can grow to sizeof(struct smb_ace) (76 bytes) once its SID is replaced with one carrying SID_MAX_SUB_AUTHORITIES sub-authorities. The worst case is therefore sizeof(struct smb_acl) + 3276 * 76 = 248984 bytes, far beyond what a u16 can hold. A wraparound is reached with 863 ACEs. After the wraparound, ndacl_ptr->size becomes meaningless and the offset will point anywhere in the ACE array. As a result, we will see corruption of the DACL, which then gets sent to the server. This is not an out-of-bounds write as the allocation now covers the worst-case expansion, so writes will always go into the buffer. Adjust the code to use a u32 internally and return -EOVERFLOW in the overflow case. The operation must be refused, because a DACL can only hold 2^16-1 bytes on the wire and larger DACLs cannot be represented. set_chmod_dacl() carries the same pattern and is fixed the same way. It only wraps once the source DACL comes within roughly 380 bytes of the 64K ceiling, but the failure mode is identical.
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= f5065508897a922327f32223082325d10b069ebc, < 2ef532a01f44687f5b95001e88247cf05bff9892; >= f5065508897a922327f32223082325d10b069ebc, < ee13d687d06a6fbb2008625dd560c654231b28e0; >= f5065508897a922327f32223082325d10b069ebc, < d05045177a855386bca5e1909e08d06290e6e3b3 |
| Linux | Linux | 5.12 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-97559?
How severe is CVE-2026-97559?
How do I fix CVE-2026-97559?
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-97553In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97554In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97555In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97556In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97557In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97558In the Linux kernel, the following vulnerability has been re…
- CVE-2026-9756The GenerateBlocks plugin for WordPress is vulnerable to Sto…6.4
- CVE-2026-97560In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97561In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97562In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97563In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97564In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-97559?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
