As of July 20, 2026, no public proof-of-concept exists for CVE-2026-14266, the 7-Zip flaw Trend Micro’s Zero Day Initiative (ZDI) disclosed on July 15. A fix had already shipped 20 days earlier, in 7-Zip 26.02 on June 25.
Quick Summary – TLDR:
- The bug rates 7.0, or High severity, per ZDI’s advisory, not the Critical label some early coverage used.
- The bug is a heap-based buffer overflow in how 7-Zip processes XZ chunked data, per Trend Micro’s Zero Day Initiative, triggered by opening a crafted archive.
- The attack vector is local (AV:L), meaning a victim must still open the malicious file themselves, according to The Hacker News.
- The flaw, per ZDI’s disclosure timeline, was reported to the vendor on June 5, 2026, and came from independent researcher Landon Peng of Lunbun LLC.
- 7-Zip has no automatic update feature, so users must install the fix manually from the official site.
What Happened?
CVE-2026-14266 stems from crafted XZ-compressed data that can overflow a heap based buffer during extraction, according to ZDI. An attacker can leverage this vulnerability to execute code in the context of the current process.
That “current process” detail matters. On Windows, a normally launched 7-Zip runs under a filtered standard user token even on an administrator account, so an attacker inherits only those limited rights unless the program was started elevated. The overflow does not hand over any extra privileges on its own.
User interaction is required: the target has to visit a malicious page or open a malicious file for the code to run. The high attack complexity makes reliable exploitation harder still, and no credible report of exploitation in the wild existed as of July 20.
7-Zip fixes archive-based remote-code execution vulnerability
— Dark Web Intelligence (@DailyDarkWeb) July 19, 2026
7-Zip disclosed a heap-based buffer-overflow vulnerability involving malicious XZ-compressed data. Exploitation requires user interaction, such as opening a crafted archive or visiting content that delivers one. The… pic.twitter.com/CA6Yvhj0IT
Severity, Corrected
Several early writeups called this bug Critical. ZDI’s own score is 7.0, or High, built from a vector that requires local access and user interaction, not a network-reachable, no-click exploit. Working professionals who archive files for a living should read that label carefully before triaging.
| Vector component | Value | Plain-English meaning |
|---|---|---|
| Attack Vector | AV:L | Local; the file must reach and be opened on the target machine. |
| Attack Complexity | AC:H | High; reliable exploitation is difficult to engineer. |
| Privileges Required | PR:N | None needed to trigger the bug itself. |
| User Interaction | UI:R | Required; the victim must open the archive. |
| Impact (C/I/A) | H/H/H | High confidentiality, integrity, and availability impact once triggered. |
The full CVSS vector is AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H. Labeling a local, user interaction required bug “Critical” inflates urgency without changing the actual work IT teams need to do this month: confirm the update landed.
A Familiar Pattern in the Decoder
The fix traces to one function, MixCoder_Code in C/XzDec.c, where the decoder was handed the full output-buffer length on each pass instead of the space left after earlier writes. Version 26.02 subtracts bytes already written and bails out if the running total exceeds the buffer, and the same flawed length handling appears unchanged in 7-Zip source back to at least version 21.07 from 2021, though neither ZDI nor 7-Zip has said which releases are actually exploitable.
CVE-2026-14266 joins a run of memory-safety bugs in 7-Zip’s archive handlers; version 26.01 fixed a batch of them in April, including the higher scored CVE-2026-48095, an NTFS handler heap write overflow that GitHub Security Lab detailed with a working proof-of-concept the following month. Version 26.02 rolls up every one of those fixes, so a single update covers them all.
Archive parsing bugs draw real attention from threat actors. A 7-Zip flaw that bypassed Windows’ Mark of the Web (MotW) safeguard was exploited by Russian hackers as a zero-day in early 2025, and a separate WinRAR bug, CVE-2025-8088, was used later that year to deploy RomCom malware. That history is why archive-parser bugs get patched fast rather than shelved, even though there are currently no reports of active exploitation of this newly disclosed 7-Zip vulnerability.
SQ Magazine’s Takeaway
The patch already existed for three weeks before the advisory went public. Every machine that took the routine update in late June closed this gap about 20 days before attackers had the technical write-up to work from, an unusually rare case of ordinary patch hygiene beating disclosure timing instead of trailing it.
What’s next: confirm 7-Zip is at version 26.02 or later on every machine that opens archives from outside sources. Treat any bundled or embedded copy of 7-Zip’s XZ decoder inside another product as that vendor’s problem to fix, since 7-Zip’s own update cannot reach code shipped inside someone else’s software.
Because 7-Zip has no auto-update mechanism, that check has to be manual, and it is worth a recurring calendar reminder rather than a one-time fix. Updating helps reduce exposure to a bug with a real, if narrow, path to code execution; it does not undo any archive already opened before the fix landed.