July 31, 2026
TryHackMe: Room 404 Walkthrough (Hacker’s Holiday Challenge)
https://tryhackme.com/room/hh-room404-804573bf (Web category — Easy)

By Marshall007
1 min read
Step 1: Reconnaissance
I pasted the given target ip to my browser and this page poped up.
Reading the challenge it was obvious it has something to do with the source code and maybe downloading it.
So i started with directory fuzzing using simple dirb command :
dirb http://yourtryhackmeip:8080dirb http://yourtryhackmeip:8080Which returned a file path named " /.git/HEAD "
After some research i understood what it meant, the whole websites source code repository was publicly available.
Now the next step was downloading the whole repo for which i used the tool git-dumper.
pipx install git-dumperpipx install git-dumperThen i downloaded the whole source code :
git-dumper http://yourtryhackmeip:8080/.git ./dumped_repogit-dumper http://yourtryhackmeip:8080/.git ./dumped_repoThen after going through the source file there was a README.md :
cat README.mdcat README.md
There you go.