How could you detect anonymous ftp ?
Reminder, you should be root for use this command.
nmap -sC -sV -p 21 10.10.10.98

We could detect Anonymous FTP with Nmap.
I will show, how could you connect to anonymous ftp.
ftp 192.168.2.10
It will come this output in terminal. It will come this output in terminal. You don’t need password.
name: anonymous
password: (dont need)
There are many important commands. These commands; put, get, dir and binary
put backdoor.exe
put command could send file to FTP server.
get backup.mdb
get command could downloads file from FTP server.
Sometimes we can mistake when ran get command. therefore We should use first binary than recurse on. These command will fix mistake and you can downloads file from FTP server.
binary
recurse on
When run this command you will exit FTP
bye
Be First to Comment