21 - FTP
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># List all (including hidden) files
ls -a
dir -a
# Change directory
cd <directory>
# Change local directory
lcd <local_directory>
# Delete file
delete <file>
# Create directory
mkdir <directory>
# Remove directory
rmdir <directory>
# Show remote current directory
pwd
# Disconnect
bye / quit / exit Attacks
Applications
FileZilla
Last updated