📂 Enumeration

1. FTP Enumeration

Since anonymous login is enabled, the next step is to log in and list the files available on the server.

Command:

ftp 10.129.85.119
  • Username: anonymous
  • Password: (Leave blank)

Observation: The login was successful, confirming the misconfiguration.


2. Investigating Commands

I checked the available commands on the server using help.


The server contains a file named flag.txt in the root directory.


Next Step