FTP - 21
Service Interaction
# Anonymous Login
ftp ip
# vsFTPd status
status
# vsFTPd Detailed Output
debug
trace
# Recursive Listing
ls -R
# Download a file
get filename
# Download All Available Files
wget -m --no-passive <ftp://anonymous:anonymous@10.10.10.10>
# Upload a file
put filename
# Netcat
nc -nv ip 21
# telnet
telnet ip 21
# Using OpenSSl for TLS/SSL encryption
openssl s_client -connect 10.129.14.136:21 -starttls ftpNmap FTP Scripts
Brute Forcing
Last updated