PatchSiren

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].

Official resources

CVE-2026-48103 was published on 2026-06-05T17:16:48.133Z and modified on 2026-06-08T17:54:13.640Z.