← All Challenges

Challenge 19: Archive Container

Difficulty: Easy
Category: Non-Printable Ratio Bypass


Objective

The scanner reads raw file bytes and performs its checks on the file as a flat byte stream. It has no archive unpacking capability. Exploit this limitation by hiding malicious content inside a container format that the scanner cannot look into.

Scanner Behavior

The scanner operates on files as raw byte sequences. When it reads a file, it:

It does not:

To the scanner, a ZIP file is just a sequence of bytes — some printable, some not. It has no concept of “files inside files.”

Rules

Hints

  1. ZIP files are just bytes to the scanner. It can’t look inside.
  2. Most archive formats compress their contents, which changes the byte patterns entirely.
  3. Even an uncompressed archive wraps content in a format structure that breaks signature continuity.
  4. Think about what a real attacker would do to smuggle a file past a gateway scanner that can’t unpack archives.

View Solution