HTB Academy: Footprinting Lab - Easy
Right off the bat, there were credentials provided to us: ceil:qwer1234 They also included a note about target employees discussing SSH keys in a public forum online 1. I'm going to start by initiating an nmap scan to discover open ports, services, and service versions sudo nmap -sV -sC -vv -p- 10.129.35.86 2. After receiving the results, I see ports 21, 22, 53, 2121 are open running FTP, SSH, DNS, and a FTP proxy 3. I am going to attempt to log into the FTP server using the credentials provided at the beginning of the lab 4. Connecting to FTP server via port 21 is unsuccessful using Ceil's credentials provided 5. I am going to attempt to connect to the FTP server via port 2121 and log in with Ceil's credentials ftp 10.129.35.86 2121 user ceil qwer1234 5. The login was successful. I am now going to list out the files present on the working directory ls 6. Th...