Answer in brief
CVE-2026-31712 records a High severity (CVSS 8.3) vulnerability in ksmbd: require minimum ACE size in smb_check_perm_dacl(). The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
Answer in brief
CVE-2026-31712 records a High severity (CVSS 8.3) vulnerability in ksmbd: require minimum ACE size in smb_check_perm_dacl(). The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
CVSS is 8.3. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=e2f34481b24db2fd634b5edb0a5bd0e4d38cc6e9 <282cbbb476b9f35793452bc461934af4c7eca169 || >=e2f34481b24db2fd634b5edb0a5bd0e4d38cc6e9 <f20adc4ef7428bc485ee83fd1a592252fb87718b || >=e2f34481b24db2fd634b5edb0a5bd0e4d38cc6e9 <325d4ac11f526cb8964cff14548ccf02d8c756d8 || >=e2f34481b24db2fd634b5edb0a5bd0e4d38cc6e9 <95e5aa3c3261da8c95b27d7aecf8ee39b9f86a4c || >=e2f34481b24db2fd634b5edb0a5bd0e4d38cc6e9 <90089584b2e25c4510b7b987387b4405f0673ece || >=e2f34481b24db2fd634b5edb0a5bd0e4d38cc6e9 <151b1799861fde38087c08f613abc2843ef597b0 || >=e2f34481b24db2fd634b5edb0a5bd0e4d38cc6e9 <d07b26f39246a82399661936dd0c853983cfade7 | 282cbbb476b9f35793452bc461934af4c7eca169, f20adc4ef7428bc485ee83fd1a592252fb87718b, 325d4ac11f526cb8964cff14548ccf02d8c756d8, 95e5aa3c3261da8c95b27d7aecf8ee39b9f86a4c, 90089584b2e25c4510b7b987387b4405f0673ece, 151b1799861fde38087c08f613abc2843ef597b0, d07b26f39246a82399661936dd0c853983cfade7 |
| Linux/Linuxgeneric | 5.15 | Not reported |
Published upstream
May 1, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Jun 19, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Jun 19, 2026
In the Linux kernel, the following vulnerability has been resolved: ksmbd: require minimum ACE size in smb_check_perm_dacl() Both ACE-walk loops in smb_check_perm_dacl() only guard against an under-sized remaining buffer, not against an ACE whose declared `ace->size` is smaller than the struct it claims to describe: if (offsetof(struct smb_ace, access_req) > aces_size) break; ace_size = le16_to_cpu(ace->size); if (ace_size > aces_size) break; The first check only requires the 4-byte ACE header to be in bounds; it does not require access_req (4 bytes at offset 4) to be readable. An attacker who has set a crafted DACL on a file they own can declare ace->size == 4 with aces_size == 4, pass both checks, and then granted |= le32_to_cpu(ace->access_req); /* upper loop */ compare_sids(&sid, &ace->sid); /* lower loop */ reads access_req at offset 4 (OOB by up to 4 bytes) and ace->sid at offset 8 (OOB by up to CIFS_SID_BASE_SIZE + SID_MAX_SUB_AUTHORITIES * 4 bytes). Tighten both loops to require ace_size >= offsetof(struct smb_ace, sid) + CIFS_SID_BASE_SIZE which is the smallest valid on-wire ACE layout (4-byte header + 4-byte access_req + 8-byte sid base with zero sub-auths). Also reject ACEs whose sid.num_subauth exceeds SID_MAX_SUB_AUTHORITIES before letting compare_sids() dereference sub_auth[] entries. parse_sec_desc() already enforces an equivalent check (lines 441-448); smb_check_perm_dacl() simply grew weaker validation over time. Reachability: authenticated SMB client with permission to set an ACL on a file. On a subsequent CREATE against that file, the kernel walks the stored DACL via smb_check_perm_dacl() and triggers the OOB read. Not pre-auth, and the OOB read is not reflected to the attacker, but KASAN reports and kernel state corruption are possible.
Quoted source text, attributed separately from HOL analysis.
CVSS is 8.3. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=e2f34481b24db2fd634b5edb0a5bd0e4d38cc6e9 <282cbbb476b9f35793452bc461934af4c7eca169 || >=e2f34481b24db2fd634b5edb0a5bd0e4d38cc6e9 <f20adc4ef7428bc485ee83fd1a592252fb87718b || >=e2f34481b24db2fd634b5edb0a5bd0e4d38cc6e9 <325d4ac11f526cb8964cff14548ccf02d8c756d8 || >=e2f34481b24db2fd634b5edb0a5bd0e4d38cc6e9 <95e5aa3c3261da8c95b27d7aecf8ee39b9f86a4c || >=e2f34481b24db2fd634b5edb0a5bd0e4d38cc6e9 <90089584b2e25c4510b7b987387b4405f0673ece || >=e2f34481b24db2fd634b5edb0a5bd0e4d38cc6e9 <151b1799861fde38087c08f613abc2843ef597b0 || >=e2f34481b24db2fd634b5edb0a5bd0e4d38cc6e9 <d07b26f39246a82399661936dd0c853983cfade7 | 282cbbb476b9f35793452bc461934af4c7eca169, f20adc4ef7428bc485ee83fd1a592252fb87718b, 325d4ac11f526cb8964cff14548ccf02d8c756d8, 95e5aa3c3261da8c95b27d7aecf8ee39b9f86a4c, 90089584b2e25c4510b7b987387b4405f0673ece, 151b1799861fde38087c08f613abc2843ef597b0, d07b26f39246a82399661936dd0c853983cfade7 |
| Linux/Linuxgeneric | 5.15 | Not reported |
Published upstream
May 1, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Jun 19, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Jun 19, 2026
In the Linux kernel, the following vulnerability has been resolved: ksmbd: require minimum ACE size in smb_check_perm_dacl() Both ACE-walk loops in smb_check_perm_dacl() only guard against an under-sized remaining buffer, not against an ACE whose declared `ace->size` is smaller than the struct it claims to describe: if (offsetof(struct smb_ace, access_req) > aces_size) break; ace_size = le16_to_cpu(ace->size); if (ace_size > aces_size) break; The first check only requires the 4-byte ACE header to be in bounds; it does not require access_req (4 bytes at offset 4) to be readable. An attacker who has set a crafted DACL on a file they own can declare ace->size == 4 with aces_size == 4, pass both checks, and then granted |= le32_to_cpu(ace->access_req); /* upper loop */ compare_sids(&sid, &ace->sid); /* lower loop */ reads access_req at offset 4 (OOB by up to 4 bytes) and ace->sid at offset 8 (OOB by up to CIFS_SID_BASE_SIZE + SID_MAX_SUB_AUTHORITIES * 4 bytes). Tighten both loops to require ace_size >= offsetof(struct smb_ace, sid) + CIFS_SID_BASE_SIZE which is the smallest valid on-wire ACE layout (4-byte header + 4-byte access_req + 8-byte sid base with zero sub-auths). Also reject ACEs whose sid.num_subauth exceeds SID_MAX_SUB_AUTHORITIES before letting compare_sids() dereference sub_auth[] entries. parse_sec_desc() already enforces an equivalent check (lines 441-448); smb_check_perm_dacl() simply grew weaker validation over time. Reachability: authenticated SMB client with permission to set an ACL on a file. On a subsequent CREATE against that file, the kernel walks the stored DACL via smb_check_perm_dacl() and triggers the OOB read. Not pre-auth, and the OOB read is not reflected to the attacker, but KASAN reports and kernel state corruption are possible.
Quoted source text, attributed separately from HOL analysis.