FTP (21)

Usage

# Connect to FTP server
ftp <target>

# No auto login (useful for scripts)
ftp -n <targetp> 

# Verbose mode         
ftp -v <target>          

# Log in as a specific user
ftp <user>@<target>

Attacks

Sometimes are configured to accept passwordless anonymous and/or default logins:

ftp ftp@<server-ip>
ftp anonymous@<server-ip>

Last updated

Was this helpful?