Passwords - A Cracking Christmas | Advent of Cyber 2025 - Day 9
This guide contains the answer and steps necessary to get to them for the Passwords - A Cracking Christmas room.
Table of contents
Attacks Against Encrypted Files
-
What is the flag inside the encrypted PDF?
We can try obtaining the password for the PDF using
pdfcrack.cmdpdfcrack -f flag.pdf -w /usr/share/wordlists/rockyou.txt
We can see that
pdfcrackmanaged to get a password. Now we can get our flag by unlocking the pdf file with this key.
Click for answer
THM{Cr4ck1ng_PDFs_1s_34$y} -
What is the flag inside the encrypted zip file?
Since
fcrackzipis not installed on our machine, we will usejohn.cmdzip2john flag.zip > ziphash.txt john --wordlist=/usr/share/wordlists/rockyou.txt ziphash.txt
We can see it managed to obtain the used password. Now we can extract the file using this password and get our second flag.

Click for answer
THM{Cr4ck1n6_z1p$_1s_34$yyyy} -
For those who want another challenge, have a look around the VM to get access to the key for Side Quest 2! Accessible through our Side Quest Hub!
Click for answer
-
If you enjoyed this task, feel free to check out the Password Attacks room.