Usage Tips:
- Click on a keyword to enable inline editing.
- Click inside a code block to copy (excludes comments).
- Use the button to view examples.
- Click outside to collapse all examples.
Config Location
/etc/vsftpd.conf
Sample Output:
TO-DOGeneral
# Anonymous
ftp ftp://anonymous:@<TARGET>
Sample Output:
TO-DO# Anonymous
ftp ftp://ftp:ftp@<TARGET>
Sample Output:
TO-DO# Password
ftp ftp://<USER>:<PASSWORD>@<TARGET>
Sample Output:
TO-DO# Interactive
ftp <TARGET>
Sample Output:
TO-DO# Over SSL/TLS
lftp <TARGET>
Sample Output:
TO-DO# Disable SSL certificate verification
echo -n 'set ssl:verify-certificate no' >> ~/.lftp/rc
Sample Output:
TO-DO# List directory
ls
Sample Output:
TO-DO# Use for non-text files
binary
Sample Output:
TO-DO# Download
get "<FILE>"
Sample Output:
TO-DO# Upload
put "<FILE>"
Sample Output:
TO-DO# For firewall/NAT compatibility
passive
Sample Output:
TO-DO# Exit
quit
Sample Output:
TO-DORecusive download
# Anonymous
wget -r ftp://anonymous:@<TARGET>
Sample Output:
TO-DO# Password
wget --user <USER> --password '<PASSWORD>' -m ftp://<TARGET>
Sample Output:
TO-DONote: Always check what’s in there first