Hackers use ZIP file concatenation to evade detection
bleepingcomputer.com
Hackers use ZIP file concatenation to evade detection
1–10 of 111 posts
Re: Hackers use ZIP file concatenation to evade detection
#2Re: Hackers use ZIP file concatenation to evade detection
#3https://entropymine.wordpress.com/2018/11/01/about-that-jpeg...
Re: Hackers use ZIP file concatenation to evade detection
#4Re: Hackers use ZIP file concatenation to evade detection
#5Encrypted ZIP files have long been a way to evade any sort of malware detection during transmission.
Re: Hackers use ZIP file concatenation to evade detection
#6Encrypted ZIP files have long been a way to evade any sort of malware detection during transmission.
I doubt it still works but things I needed to get through email I would embed in word documents.
Re: Hackers use ZIP file concatenation to evade detection
#7Encrypted ZIP files have long been a way to evade any sort of malware detection during transmission.
I doubt it still works but things I needed to get through email I would embed in word documents.
I pity the programmer that has to decode the 1000 versions of xls to find the binary blob that could be a virus.
Re: Hackers use ZIP file concatenation to evade detection
#8Encrypted ZIP files have long been a way to evade any sort of malware detection during transmission.
Re: Hackers use ZIP file concatenation to evade detection
#9> only files specified in the central directory at the end of the file are valid. Scanning a ZIP file for local file headers is invalid (except in the case of corrupted archives)
Re: Hackers use ZIP file concatenation to evade detection
#10A similar security problem, though not as fundamentally baked into the format, is MIME parsing. The header section is supposed to be delimited from the body by an empty line (likewise for nested entities). But what if it's not? For better or worse, Sendmail was tolerant of the absence of an empty line and treated as headers everything up to the first line that didn't parse as a header or header continuation.[1] Later systems, like Postfix, originally copied this behavior. But Microsoft Exchange and Outlook are even more tolerant, yet in a much more horrendous way, by parsing as a header anything that looks like a Content-Type or related header immediately after the first empty line. They have similar hacks for other, similar violations. So today, depending on the receiving software, you can send messages that appear differently, including having different attachments. It's a security nightmare!
I not a Postel's Law hater, but ZIP archives and Microsoft's MIME parsing behaviors are just egregiously wrong and indefensible. And even if you think the Robustness Principle is inherently bad policy, you still have to design your formats, protocols, and systems to be as intrinsically constraining as possible. You can't rely on vendors adhering to a MUST rule in an RFC, unless it's unquestioningly crystal clear what the repercussions will be--everybody else will (because it's the natural and convenient thing to do) reject your output as trash and drop it on the floor immediately so violations never have a chance to get a foothold.
[1] MTAs don't necessarily need to care about MIME parsing, but Sendmail eventually gained features where parsing message contents mattered, setting the de facto norm (for those paying attention) until Microsoft came along.