CVE-2026-68100
Last modified
CVE-2026-68100 is a high-severity vulnerability rated 8.1/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: ksmbd: validate num_subauth when copying ACE in set_ntacl_dacl set_ntacl_dacl() copies each ACE from the attacker-controlled stored security descriptor verbatim into the response DACL without checking sid.num_subauth. The ACE bytes (including an unchecked num_subauth) originate from an authenticated SMB2_SET_INFO(SecInfo=DACL) that is stored raw via ksmbd_vfs_set_sd_xattr(); parse_dacl() rejects a bad ACE with `break` rather than an error, so parse_sec_desc() still returns success and the malformed SD reaches the xattr intact. On a subsequent SMB2_QUERY_INFO(SecInfo=DACL) for an inode carrying a POSIX access ACL, build_sec_desc() -> set_ntacl_dacl() -> set_posix_acl_entries_dacl() walks the copied ACEs and reads ntace->sid.sub_auth[ntace->sid.num_subauth - 1] with num_subauth taken straight from the stored SD. EPSS estimates a 0.40% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: ksmbd: validate num_subauth when copying ACE in set_ntacl_dacl set_ntacl_dacl() copies each ACE from the attacker-controlled stored security descriptor verbatim into the response DACL without checking sid.num_subauth. The ACE bytes (including an unchecked num_subauth) originate from an authenticated SMB2_SET_INFO(SecInfo=DACL) that is stored raw via ksmbd_vfs_set_sd_xattr(); parse_dacl() rejects a bad ACE with `break` rather than an error, so parse_sec_desc() still returns success and the malformed SD reaches the xattr intact. On a subsequent SMB2_QUERY_INFO(SecInfo=DACL) for an inode carrying a POSIX access ACL, build_sec_desc() -> set_ntacl_dacl() -> set_posix_acl_entries_dacl() walks the copied ACEs and reads ntace->sid.sub_auth[ntace->sid.num_subauth - 1] with num_subauth taken straight from the stored SD. Since sub_auth[] is fixed at SID_MAX_SUB_AUTHORITIES (15), a crafted num_subauth (e.g. 255) drives an out-of-bounds heap read of ~1 KB with an offset fully controlled by an authenticated client. The sibling functions already gate this field: parse_dacl() -- num_subauth == 0 || > SID_MAX_SUB_AUTHORITIES parse_sid() -- num_subauth > SID_MAX_SUB_AUTHORITIES smb_copy_sid() -- min_t(u8, num_subauth, SID_MAX_SUB_AUTHORITIES) set_ntacl_dacl() is the lone inconsistent path that omits the check. Add the same num_subauth validation in set_ntacl_dacl() before copying the ACE, matching the gate already enforced by parse_dacl().
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= e2f34481b24db2fd634b5edb0a5bd0e4d38cc6e9, < 26cb845e22a00c85bf566337417fa33492395f10; >= e2f34481b24db2fd634b5edb0a5bd0e4d38cc6e9, < e31fada5143784bc05c7ae44c79eed9b7a2e147e; >= e2f34481b24db2fd634b5edb0a5bd0e4d38cc6e9, < fb3dc8e6da46a1ccad1956cda57de29d9b3033e0; >= e2f34481b24db2fd634b5edb0a5bd0e4d38cc6e9, < b6d3cc6a524416dfdb2b47e4bba2e7e20011d056; >= e2f34481b24db2fd634b5edb0a5bd0e4d38cc6e9, < 5acbd3012fd4a7ccfebd91ea6f784120084eb897; >= e2f34481b24db2fd634b5edb0a5bd0e4d38cc6e9, < 47f0b34f6bc98ed85bfdc293e8f3e432ec24958d |
| Linux | Linux | 5.15 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-68100?
How severe is CVE-2026-68100?
How do I fix CVE-2026-68100?
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-68095In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68096In the Linux kernel, the following vulnerability has been re…7.5
- CVE-2026-68097In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-68098In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-68099In the Linux kernel, the following vulnerability has been re…
- CVE-2026-6810The Booking Calendar Contact Form plugin for WordPress is vu…5.3
- CVE-2026-68101Rejected reason: This CVE ID has been rejected or withdrawn …
- CVE-2026-68102In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68103In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2026-68104In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-68105In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68106In the Linux kernel, the following vulnerability has been re…7.8
Are you affected by CVE-2026-68100?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
