📂 Anonymous FTP Access
📌 Description
File Transfer Protocol (FTP) allows users to transfer files between client and server. Anonymous FTP allows anyone to log in with the username anonymous and either a blank password or a dummy email address.
🔍 How to Test
- Connect to the FTP server:
ftp <IP> - Username:
anonymous - Password: (Press Enter)
🛠️ Mitigations
- Disable Anonymous Login: Ensure
anonymous_enable=NOinvsftpd.conf. - Limit Access: Restrict FTP access to specific users and directories.
- Use SFTP: Prefer SSH File Transfer Protocol for encryption.