FTP
Nmap discovered a FTP server on the target port 21
The running service is vsftpd 3.0.2
┌──(kali㉿kali)-[~/PEN-200/PG_PRACTICE/snookums]
└─$ ftp ftp@$IP
Connected to 192.168.132.58.
220 (vsFTPd 3.0.2)
331 Please specify the password.
Password:
230 Login successful.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp>
The target FTP server allows anonymous access
ftp> put test
local: test remote: test
229 Entering Extended Passive Mode (|||39474|).
ftp: Can't connect to `192.168.132.58:39474': Connection timed out
200 EPRT command successful. Consider using EPSV.
550 Permission denied.
ftp> passive
Passive mode: off; fallback to active mode: off.
ftp> ls
200 EPRT command successful. Consider using EPSV.
421 Service not available, remote server timed out. Connection closed.
┌──(kali㉿kali)-[~/PEN-200/PG_PRACTICE/snookums]
└─$ curl ftp://ftp:ftp@192.168.132.58
^C
The FTP server just hangs