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-DO
Basic
+---------------------+
| Anonymous login |
+---------------------+
| Username: anonymous |
| Password: (empty) |
+---------------------+
Sample Output:
TO-DO
# Connect
ftp <TARGET>
Sample Output:
TO-DO
# Over SSL
lftp <TARGET>
Sample Output:
TO-DO
# Fix cert error
echo -n 'set ssl:verify-certificate no' >> ~/.lftp/rc
Sample Output:
TO-DO
# List
ls
Sample Output:
TO-DO
# Switch to binary transfer mode
bin
Sample Output:
TO-DO
# Download
get "<FILE>"
Sample Output:
TO-DO
# Upload
put "<FILE>"
Sample Output:
TO-DO
# Connect over tunnel
passive
Sample Output:
TO-DO
# Exit
quit
Sample Output:
TO-DO
Recusive download
# Anonymous login
wget -r ftp://anonymous:@<TARGET>
Sample Output:
TO-DO
# With creds
wget --user <USER> --password '<PASSWORD>' -m ftp://<TARGET>
Sample Output:
TO-DO
Note: Always check what’s in there first