# PLATFORM . THM# CTF NAME . Corridor# DESCRIPTION . Can you escape the Corridor?# DIFFICULTY . Easy# CTF LINK . https://tryhackme.com/room/corridor-
The doors on the main page are all clickable.
-
When clicked, the URL address of each page displays a hash-like format, so I decided to grab one and bruteforce it.
-
It was the MD5 hash of “1”.
-
I made a list of all the hashes
- grab them by clicking on each door
- or by inspecting the source code of the page
-
After bruteforcing, they’re the hashes of numbers
1,2,3and so on until13. -
So I have hashed the number
14and went to that directory, but I got aNot Foundmessage. Then, I tried with0and I found the flag.
echo -n "0" | md5sumcurl http://ip/hash_from_above | grep flag