🔑 Initial Access
1. Anonymous Access
Gaining initial access was straightforward due to the enabled anonymous login on the FTP service. This allowed me to interact with the file system without a valid user account.
Steps taken:
- Connected to the target using the
ftputility. - Supplied
anonymousas the username. - Verified access with the
lscommand.

2. Capturing the Flag
I used the get command to exfiltrate the flag from the server to my local machine.
Command:
ftp> get flag.txtOutcome:
The file was successfully downloaded.

Next Step