0 pts 0 solved
โ† Back to Mission Control

๐Ÿ“ File Forensics

File extensions are just labels โ€” they can lie! A file called photo.jpg doesn't have to be a photo. In this mission, you'll investigate what files really are.

0/6 solved ยท 0/120 pts
๐Ÿ”ง Tools You'll Need
๐Ÿ“
Notepad โ€” Opens any file as text. Search "Notepad" in the Start menu. To open a file in Notepad: right-click โ†’ Open with โ†’ Notepad.
๐Ÿ“ฆ
File Explorer โ€” Shows file names and properties. Right-click a file โ†’ Properties to see its size and type.
๐Ÿ—œ๏ธ
ZIP files โ€” Windows can open .zip files by double-clicking (no extra software needed).
Tip: To see file extensions (like .jpg or .txt) in File Explorer, click View โ†’ Show โ†’ File name extensions (Windows 11) or View โ†’ File name extensions (Windows 10).
1
This "Image" Won't Open
Easy 10 pts โ–ผ
Someone sent us a photo, but the image viewer won't open it. Something's wrong with this "image" โ€” it's not really an image at all.

๐Ÿ“ฅ Download fake-photo.jpg
Try opening it in the Photos app โ€” it will fail. Then try opening it in Notepad (right-click โ†’ Open with โ†’ Notepad). What does it really contain?
It's a text file that was renamed to .jpg to disguise itself. When you open it in Notepad, you'll see plain text โ€” including the flag.
โœ“ It was text all along! Changing the extension doesn't change what a file really is โ€” it's just a disguise.
2
What's Inside This Zip?
Easy 10 pts โ–ผ
ZIP files are like envelopes โ€” they contain other files inside. Download this ZIP archive and open it. The flag is hidden inside one of the files within it.

๐Ÿ“ฅ Download secret-files.zip
Double-click the .zip file in File Explorer to open it, then explore the files inside.
There are three files inside the ZIP. One of them is called flag.txt. Open that one in Notepad to find the flag.
โœ“ Found it in the ZIP! ZIP files are containers โ€” always check what's inside, not just the outer file.
3
The Document with a Secret
Medium 20 pts โ–ผ
Here's something surprising: a Microsoft Word document (.docx) is secretly a ZIP file in disguise! Rename it to .zip and open it โ€” you'll find lots of XML files inside, including one with document metadata.

๐Ÿ“ฅ Download mission-report.docx
1
Download the file. In File Explorer, right-click it and rename it from mission-report.docx to mission-report.zip.
2
Double-click the .zip to open it. You'll see folders: docProps, word, etc.
3
Open the docProps folder. Inside is core.xml โ€” open it in Notepad.
4
Search for agent{ in the XML file to find the flag.
After renaming to .zip and opening, look in the docProps folder. The core.xml file contains document metadata โ€” author, title, and hidden comments.
โœ“ Every .docx is a ZIP! This is how Word documents actually work. Real investigators use this technique to find hidden metadata in Office documents.
4
The Flag That Requires Scrolling
Medium 20 pts โ–ผ
This text file contains an agent's field notes โ€” and at the very end, a hidden flag. The trick? There are hundreds of blank lines in the middle to discourage anyone from scrolling all the way through.

๐Ÿ“ฅ Download agents-notes.txt
Open the file in Notepad, then press Ctrl+End to jump straight to the very bottom of the file. The flag is there.
In Notepad, pressing Ctrl+End jumps to the last line of the file immediately. The flag is on one of the last few lines.
โœ“ Hidden in plain sight, just far away! Always check files from both ends โ€” beginning AND end.
5
This File Has Two Identities
Hard 30 pts โ–ผ
This file is called mystery-file.png and opens as an image. But it's also a valid ZIP file at the same time โ€” a polyglot file. Investigate both identities to find the flag.

๐Ÿ“ฅ Download mystery-file.png
โœ“ A true polyglot! Polyglot files are used in security research (and occasionally malware) โ€” they exploit the fact that different programs parse files differently.
6
Find the Flag in the Folder
Hard 30 pts โ–ผ
This archive contains a folder of "mission files" โ€” but most of them are decoys. One file is easy to miss. Find it and extract the flag.

๐Ÿ“ฅ Download mission-folder.zip
โœ“ Hidden files! On Mac and Linux, any file starting with . is invisible in normal views. Real investigators always check for hidden files when analysing a system.
๐ŸŽ‰ Mission Complete!
You've cracked all 6 file forensics challenges. File extensions can't fool you anymore!
โ†’ Back to Mission Control