WGET VIA Anonymous Login
Using wget to gain information from FTP with anonymous logins.
wget -r --no-parent --reject "index.html*" ftp://anonymous:youremail%40example.com@<target>/file/ -P .
This command recursively downloads all files from the FTP directory “/file” on the target “target” (using anonymous login), skips parent directories, ignores any “index.html” files, and saves everything to the current directory (-P .).