Answer in brief
CVE-2026-52923 records a High severity (CVSS 7.8) vulnerability in ipc: limit next_id allocation to the valid ID range. 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-52923 records a High severity (CVSS 7.8) vulnerability in ipc: limit next_id allocation to the valid ID range. 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 7.8. 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.
| Product | Affected versions | Fixed versions |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:3.8:-:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:3.8:rc3:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:3.8:rc4:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:3.8:rc5:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:3.8:rc6:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:3.8:rc7:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:7.1:rc1:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:7.1:rc2:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:7.1:rc3:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:7.1:rc4:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:7.1:rc5:*:*:*:*:*:* | Not reported | Not reported |
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=03f595668017f1a1fb971c02fc37140bc6e7bb1c <3bbe2bb9111ce6967a951bfac79af142d816fae5 || >=03f595668017f1a1fb971c02fc37140bc6e7bb1c <8c58a92849175f5e2ab7bc2734b3b89afe79f6ef || >=03f595668017f1a1fb971c02fc37140bc6e7bb1c <af24e202b543ded8a34f1d5d3db54eb916173f04 || >=03f595668017f1a1fb971c02fc37140bc6e7bb1c <157ce2c6836ce0ff19108a819f38df061345425f || >=03f595668017f1a1fb971c02fc37140bc6e7bb1c <41058d4c3f63ab64901560a704882e0565f4e456 || >=03f595668017f1a1fb971c02fc37140bc6e7bb1c <a3cc795129e5ec0f8948653a3bf471e7d8852f5e || >=03f595668017f1a1fb971c02fc37140bc6e7bb1c <bd4be70669af55b974860d13680348cfdf50bbed || >=03f595668017f1a1fb971c02fc37140bc6e7bb1c <fa0b9b2b7ae3539908d69c2b9ac0d144d9bc5139 | 3bbe2bb9111ce6967a951bfac79af142d816fae5, 8c58a92849175f5e2ab7bc2734b3b89afe79f6ef, af24e202b543ded8a34f1d5d3db54eb916173f04, 157ce2c6836ce0ff19108a819f38df061345425f, 41058d4c3f63ab64901560a704882e0565f4e456, a3cc795129e5ec0f8948653a3bf471e7d8852f5e, bd4be70669af55b974860d13680348cfdf50bbed, fa0b9b2b7ae3539908d69c2b9ac0d144d9bc5139 |
| Linux/Linuxgeneric | 3.8 | Not reported |
Published upstream
Jun 24, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 5, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Jun 24, 2026
In the Linux kernel, the following vulnerability has been resolved: ipc: limit next_id allocation to the valid ID range The checkpoint/restore sysctl path can request the next SysV IPC id through ids->next_id. ipc_idr_alloc() currently forwards that request to idr_alloc() with an open-ended upper bound. If the valid tail of the SysV IPC id space is full, the allocation can spill beyond ipc_mni. The returned SysV IPC id still uses the normal index encoding, so later lookup and removal can target the wrong slot. This leaves the real IDR entry behind and breaks the IDR state for the object. The bug is in ipc_idr_alloc() in the checkpoint/restore path. 1. ids->next_id is passed to: idr_alloc(&ids->ipcs_idr, new, ipcid_to_idx(next_id), 0, ...) 2. The zero upper bound makes the allocation effectively open-ended. Once the valid SysV IPC tail is occupied, idr_alloc() can spill past ipc_mni and allocate an entry beyond the valid IPC id range. 3. The new object id is still encoded with the narrower SysV IPC index width: new->id = (new->seq << ipcmni_seq_shift()) + idx 4. Later removal goes through ipc_rmid(), which uses: ipcid_to_idx(ipcp->id) That truncates the real IDR index. An object actually stored at a high index can then be removed as if it lived at a low in-range index. 5. For shared memory, shm_destroy() frees the current object anyway, but the real high IDR slot is left behind as a dangling pointer. 6. A subsequent walk of /proc/sysvipc/shm reaches the stale IDR entry and dereferences freed memory. Prevent this by bounding the requested allocation to ipc_mni so the checkpoint/restore path fails once the valid range is exhausted.
Quoted source text, attributed separately from HOL analysis.
CVSS is 7.8. 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.
| Product | Affected versions | Fixed versions |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:3.8:-:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:3.8:rc3:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:3.8:rc4:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:3.8:rc5:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:3.8:rc6:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:3.8:rc7:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:7.1:rc1:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:7.1:rc2:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:7.1:rc3:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:7.1:rc4:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:7.1:rc5:*:*:*:*:*:* | Not reported | Not reported |
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=03f595668017f1a1fb971c02fc37140bc6e7bb1c <3bbe2bb9111ce6967a951bfac79af142d816fae5 || >=03f595668017f1a1fb971c02fc37140bc6e7bb1c <8c58a92849175f5e2ab7bc2734b3b89afe79f6ef || >=03f595668017f1a1fb971c02fc37140bc6e7bb1c <af24e202b543ded8a34f1d5d3db54eb916173f04 || >=03f595668017f1a1fb971c02fc37140bc6e7bb1c <157ce2c6836ce0ff19108a819f38df061345425f || >=03f595668017f1a1fb971c02fc37140bc6e7bb1c <41058d4c3f63ab64901560a704882e0565f4e456 || >=03f595668017f1a1fb971c02fc37140bc6e7bb1c <a3cc795129e5ec0f8948653a3bf471e7d8852f5e || >=03f595668017f1a1fb971c02fc37140bc6e7bb1c <bd4be70669af55b974860d13680348cfdf50bbed || >=03f595668017f1a1fb971c02fc37140bc6e7bb1c <fa0b9b2b7ae3539908d69c2b9ac0d144d9bc5139 | 3bbe2bb9111ce6967a951bfac79af142d816fae5, 8c58a92849175f5e2ab7bc2734b3b89afe79f6ef, af24e202b543ded8a34f1d5d3db54eb916173f04, 157ce2c6836ce0ff19108a819f38df061345425f, 41058d4c3f63ab64901560a704882e0565f4e456, a3cc795129e5ec0f8948653a3bf471e7d8852f5e, bd4be70669af55b974860d13680348cfdf50bbed, fa0b9b2b7ae3539908d69c2b9ac0d144d9bc5139 |
| Linux/Linuxgeneric | 3.8 | Not reported |
Published upstream
Jun 24, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 5, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Jun 24, 2026
In the Linux kernel, the following vulnerability has been resolved: ipc: limit next_id allocation to the valid ID range The checkpoint/restore sysctl path can request the next SysV IPC id through ids->next_id. ipc_idr_alloc() currently forwards that request to idr_alloc() with an open-ended upper bound. If the valid tail of the SysV IPC id space is full, the allocation can spill beyond ipc_mni. The returned SysV IPC id still uses the normal index encoding, so later lookup and removal can target the wrong slot. This leaves the real IDR entry behind and breaks the IDR state for the object. The bug is in ipc_idr_alloc() in the checkpoint/restore path. 1. ids->next_id is passed to: idr_alloc(&ids->ipcs_idr, new, ipcid_to_idx(next_id), 0, ...) 2. The zero upper bound makes the allocation effectively open-ended. Once the valid SysV IPC tail is occupied, idr_alloc() can spill past ipc_mni and allocate an entry beyond the valid IPC id range. 3. The new object id is still encoded with the narrower SysV IPC index width: new->id = (new->seq << ipcmni_seq_shift()) + idx 4. Later removal goes through ipc_rmid(), which uses: ipcid_to_idx(ipcp->id) That truncates the real IDR index. An object actually stored at a high index can then be removed as if it lived at a low in-range index. 5. For shared memory, shm_destroy() frees the current object anyway, but the real high IDR slot is left behind as a dangling pointer. 6. A subsequent walk of /proc/sysvipc/shm reaches the stale IDR entry and dereferences freed memory. Prevent this by bounding the requested allocation to ipc_mni so the checkpoint/restore path fails once the valid range is exhausted.
Quoted source text, attributed separately from HOL analysis.