Room Created by MuirlandOracle

image.png

Enumeration

Let's start with the nmap scan.

nmap -Pn -sV -sC 10.10.111.18 -vvv

image.png

As we can see 3 open ports are found 21,22,80. Ftp is not allowing me to log in as anonymous so let’s move on to the web app.

Since port 80 is open let's find some directory.

gobuster -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt dir -u [<http://10.10.111.18>](<http://10.10.111.18/>)

image.png

I found a Directory called “assets” Let’s look into that.

image.png

The “style.css” file has an interesting hit mentioning a secret directory. Let’s check it out. We were asked to turn off the JavaScript, and when we hit OK, the page redirected to Rick Roll.

image.png

image.png

Let’s turn off JavaScript and see what we got.