Zombie ZIP method can fool antivirus during the first scan
嗯,用户让我帮忙总结一下这篇文章的内容,控制在一百个字以内,而且不需要用“文章内容总结”或者“这篇文章”这样的开头。直接写文章描述即可。好的,首先我得通读一下这篇文章,理解它的主要意思。 文章讲的是一个叫做“Zombie ZIP”的技术,研究人员通过修改ZIP文件的头部信息,让文件声称内容是未压缩的,但实际上还是压缩的。这样很多杀毒软件就会信任这个头部信息,不去正确解压或检查实际的内容,导致恶意软件被隐藏起来。测试显示大约95%的杀毒软件无法检测到这种隐藏的恶意软件。 不过,这个技术也有缺点。因为需要一个自定义的加载器才能正确打开这个被修改过的ZIP文件,普通的解压工具比如Windows自带的、7-zip、WinRAR等都会认为文件是损坏的。所以这个漏洞主要影响的是那些已经被感染的系统。 另外,文章还提到了一些技术细节,比如修改压缩类型为0(STORED),让工具误以为内容未压缩,而实际上还是用了DEFLATE压缩。这样杀毒软件扫描的时候看到的是压缩后的噪音数据,找不到恶意软件的特征码。 还有人质疑这是否应该算作漏洞或者分配CVE编号。总的来说,“Zombie ZIP”主要是用来绕过杀毒软件的初始检查,并不意味着一旦执行就会传播恶意软件。 用户的需求是用中文总结内容,并且控制在100字以内。我需要抓住几个关键点:Zombie ZIP的技术原理、它如何绕过杀毒软件、测试结果、以及它的限制条件。 可能还需要提到它依赖于自定义加载器,以及对未被感染系统的威胁较小。同时要保持语言简洁明了。 好的,现在试着组织一下语言: “研究人员提出‘Zombie ZIP’技术,通过修改ZIP文件头使其声称内容未压缩而实际压缩。多数杀毒软件因此未能检测到隐藏恶意软件(约95%)。该方法需自定义加载器支持,普通解压工具无法正确处理。” 这样大概在100字以内,并且涵盖了主要的信息点。 </think> 研究人员提出“Zombie ZIP”技术,通过修改ZIP文件头使其声称内容未压缩而实际压缩,多数杀毒软件因此未能检测到隐藏恶意软件(约95%)。该方法需自定义加载器支持,普通解压工具无法正确处理。 2026-3-16 16:9:8 Author: www.malwarebytes.com(查看原文) 阅读量:2 收藏

A researcher published “Zombie ZIP,” a simple way to change the first part (header) of a ZIP file so it falsely claims its contents are uncompressed while they are actually compressed.

Many antivirus products trust that header and never properly decompress or inspect the real payload. In tests conducted about a week after disclosure, around 60 of 63 common antivirus suites failed to detect malware hidden this way—roughly 95% of engines let it pass.

Zombie ZIP is essentially a method to create a malformed ZIP file that can bypass detection by most antivirus scanners. The technique has a major caveat, though. The malformed ZIP file requires a custom loader to open it correctly. Any normal archive utility like the built-in Windows extractor, 7-zip, WinRAR, and others will also flag the file as malformed.

The vulnerability is tracked as CVE-2026-0866, although several cybersecurity researchers dispute whether it should be categorized as a vulnerability or assigned a CVE at all. The fact that it requires a custom loader makes it almost impossible for this method to infect a system that is not already compromised.

It still allows anti-malware solutions to detect both the custom loader and any known malware once the payload is properly decompressed. In other words, the bypass only affects the initial inspection of the ZIP file, not the actual execution of already known malware.

Malwarebytes/ThreatDown products detected both files, by the way.

Malwarebytes detects Zombie ZIPs

Technical details

On their GitHub page (currently blocked by Malwarebytes Browser Guard due to a risky pattern), the researchers explain how the Zombie ZIP method works.

By changing the file’s compressiontype to 0 (STORED), tools trying to read the archive assume the file’s contents are simply stored inside the ZIP file and not compressed.

“AV engines trust the ZIP Method field. When Method=0 (STORED), they scan the data as raw uncompressed bytes. But the data is actually DEFLATE compressed — so the scanner sees compressed noise and finds no signatures.

The CRC is set to the uncompressed payload’s checksum, creating an additional mismatch that causes standard extraction tools (7-Zip, unzip, WinRAR) to report errors or extract corrupted output.

However, a purpose-built loader that ignores the declared method and decompresses as DEFLATE recovers the payload perfectly.

The vulnerability is scanner evasion: security controls assert ‘no malware present’ while malware is present and trivially recoverable by attacker tooling.”

Security researcher Didier Stevens published a method to safely examine the content of a malformed Zombie ZIP file. One way to spot the manipulation is by comparing the ZIP header fields compressedsize and uncompressedsize. If they are different, that means the ZIP file is not actually STORED, but compressed.


We don’t just report on threats—we remove them

Cybersecurity risks should never spread beyond a headline. Keep threats off your devices by downloading Malwarebytes today.


文章来源: https://www.malwarebytes.com/blog/news/2026/03/zombie-zip-method-can-fool-antivirus-during-the-first-scan
如有侵权请联系:admin#unsafe.sh