Mr Robot CTF Writeup
This is the writeup for the Mr Robot CTF challenge on TryHackMe. Solution# First we start by enumerating the ports: nmap -p- -Pn -T4 | tee ports.txt Then we run the nmap script to find more information on the ports discovered: nmap -sC -sV -p -T4 | tee ports.txt It is good practice to run a gobuster scan to find directories while busy enumerating the box further: gobuster dir -u -w /usr/share/dirbuster/wordlists/directory-list-2.3-medium.txt ...