easy peasy
Get the IP of the machine and Ping it ( to see if its live or not ) Scan all the open ports using Nmap, for this try the command below nmap 10.10.219.249 -p- -T4 -p- is to scan all the port -A is for aggressive scan We got 3 open ports Right? 1st is 80, 2nd is 6498, 3rd is 65524. Now we scan these open ports with Nmap to see the versions nmap -sV 10.10.219.249 -p80,6498,65524 -sV It is used to find the version on open ports. -p It is useful to scan the specified ports. We got “Apache” and nigix version 1.16.1 Now we run Gobuster for directory busting using the following command along wordlist gobuster dir -u 10.10.219.249 -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt Gobuster is used for directory busting. dir Uses directory/file enumeration mode -w Path to the wordlist. Set to - to use STDIN. /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt specifies the path to a word lists (in this case, directory-list-2.3-med...