$$ RED55 $$

Download the VM HERE

Lab Objectives:

First Steps:

Once you have started the CTF machine, do the following to determine the IP Address of the target:

arp-scan --localnet | grep -i aa:bb:cc 
#Comment grep for the MAC address you gave your machine in the previous step.
#You should grep for the entire MAC address, not just the first 6 characters.

Untitled

An initial NMAP scan shows we have a website on port 80.

nmap -sC -sV IP_OF_TARGET_VM 

image.png

The webpage allows us to upload a .xml file and provides a template we can use to get started.

image.png

View the page source and copy the template provided.

image.png