FTP


Nmap discovered a FTP server on the target port 21 The running service is vsftpd 3.0.2

Null Session


┌──(kali㉿kali)-[~/PEN-200/PG_PRACTICE/quackerJack]
└─$ ftp ftp@$IP
Connected to 192.168.144.57.
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> ls
229 Entering Extended Passive Mode (|||43626|).
^C
receive aborted. Waiting for remote to finish abort.
ftp> passive
Passive mode: off; fallback to active mode: off.
ftp> ls
200 EPRT command successful. Consider using EPSV.

The ls command hangs

┌──(kali㉿kali)-[~/PEN-200/PG_PRACTICE/quackerJack]
└─$ curl ftp://ftp:ftp@$IP/
^C

Same result with curl