Port 21 - FTP
Enumeration
# Basic info
nmap -p21 -sCV -Pn <TARGET-IP>
# Banner grabbing
nc -vn <IP> 21
openssl s_client -connect <IP or domain-name>:21 -starttls ftp #Get certificate if anyAnonymous login
ftp <IP> [port]
Name: anonymous
Password: anonymousBrute Force
hydra -l <USERNAME> -P <WORDLIST> ftp://<TARGET-IP> [-t <THREADS> -s <PORT>]
ncrack -u <USERNAME> -P <WORDSLIST> <TARGET-IP> [-T5]
medusa -u <USERNAME> -P wordlist.txt -h <TARGET-IP> -M ftp [-L <nthreads>]Password Sniffing

Last updated