PatchSiren cyber security CVE debrief
CVE-2026-48103 mcmilk CVE debrief
CVE-2026-48103 is an off-by-one heap out-of-bounds read vulnerability in 7-Zip, a file archiver with a high compression ratio, affecting versions 9.34 through 26.00. The vulnerability is located in the WIM (Windows Imaging) archive handler's security descriptor lookup, specifically in the `CHandler::GetSecurity` function (CPP/7zip/Archive/Wim/WimHandler.cpp). The issue arises from the per-image SecurOffsets table holding `numEntries + 1` cumulative offsets, but the check `securityId >= SecurOffsets.Size()` admitting `securityId == numEntries`, leading to reading `SecurOffsets[securityId + 1]`, which fetches one UInt32 past the end of the heap-allocated CRecordVector. The `securityId` is attacker-controlled at offset +0xC of any directory entry in WIM metadata. The handler is registered for .wim, .swm, .esd, and .ppkg and enabled by default in stock 7z.dll. The vulnerability can be triggered zero-click in the GUI because 7zFM.exe's ListView calls `GetRawProp(kpidNtSecure)` for every item during listing. The impact is limited to denial of service under hardened allocators and minor information disclosure, as the OOB value is only consumed arithmetically as a length and is not surfaced to the attacker.
- Vendor
- mcmilk
- Product
- 7-Zip
- CVSS
- MEDIUM 4.3
- CISA KEV
- Not listed in stored evidence
- Original CVE published
- 2026-06-05
- Original CVE updated
- 2026-06-08
- Advisory published
- 2026-06-05
- Advisory updated
- 2026-06-08
Who should care
Users of 7-Zip versions 9.34 through 26.00 should be aware of this vulnerability, especially those who handle WIM files or use the GUI for listing archive contents.
Technical summary
Off-by-one heap out-of-bounds read in 7-Zip's WIM archive handler, allowing for denial of service and minor information disclosure.
Defensive priority
Medium
Recommended defensive actions
- Update to 7-Zip version 26.01 or later.
- Avoid handling untrusted WIM files with 7-Zip versions 9.34 through 26.00.
Evidence notes
CVE-2026-48103 was analyzed and published by the National Vulnerability Database (NVD) on [cvePublishedAt].
Sources and references
Verified primary and authoritative sources
-
CVE-2026-48103 CVE Program record
Publisher, destination, and source semantics verified
URL: https://www.cve.org/CVERecord?id=CVE-2026-48103
CVE Program - Official CVE Program record with source-provided CVE metadata.
-
CVE-2026-48103 NVD vulnerability detail
Publisher, destination, and source semantics verified
URL: https://nvd.nist.gov/vuln/detail/CVE-2026-48103
NIST National Vulnerability Database - Official NIST NVD detail page and source-specific vulnerability assessment.
Supplemental references
-
Mitigation or vendor reference
Unverified legacy reference
URL: https://securitylab.github.com/advisories/GHSL-2026-115_GHSL-2026-122_7-zip/
[email protected] - Exploit, Patch, Third Party Advisory
Methodology and review provenance
AI-assisted synthesis based on stored public vulnerability evidence. System validation, approval state, and publication status do not by themselves establish human review of this revision. PatchSiren helps prioritize defensive review and does not prove exposure or remediation on any system.