Submit Flag

Submit Flag

Submit root flag


How to

Port Scanning

Like in Task 5, we need to run sudo nmap -T5 -sCV <target_ip> to get the open ports. In this case, only port 21 is open, running FTP.


Connecting via FTP

To connect via FTP, we'll use the anonymous user without a password.

ftp <target_ip>
ftp <target_ip>

Obtaining the Root Flag

Now, let's find the root flag and download it.

get flag.txt

Finally, let's display the flag

cat flag.txt

Last updated