FTP: Difference between revisions

From RCATs
(Created page with "-COMMANDS- ftp <FQDN/IP> Interact with the FTP service on the target. nc -nv <FQDN/IP> 21 Interact with the FTP service on the target. telnet <FQDN/IP> 21 Interact with the FTP service on the target. openssl s_client -connect <FQDN/IP>:21 -starttls ftp Interact with the FTP service on the target using encrypted connection. wget -m --no-passive ftp://anonymous:anonymous@<target> Download all available files on the target FTP server.")
 
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
-COMMANDS-
==COMMANDS==
ftp <FQDN/IP> Interact with the FTP service on the target.
<syntaxhighlight lang="powershell">
nc -nv <FQDN/IP> 21 Interact with the FTP service on the target.
##Interact with the FTP service on the target.
telnet <FQDN/IP> 21 Interact with the FTP service on the target.
ftp <FQDN/IP>
openssl s_client -connect <FQDN/IP>:21 -starttls ftp Interact with the FTP service on the target using encrypted connection.
 
wget -m --no-passive ftp://anonymous:anonymous@<target> Download all available files on the target FTP server.
##Interact with the FTP service on the target.
nc -nv <FQDN/IP> 21
 
##Interact with the FTP service on the target.
telnet <FQDN/IP> 21
 
##Interact with the FTP service on the target using encrypted connection.
openssl s_client -connect <FQDN/IP>:21 -starttls ftp
 
##Download all available files on the target FTP server.
wget -m --no-passive ftp://anonymous:anonymous@<target>
</syntaxhighlight>

Latest revision as of 12:48, 8 July 2023

COMMANDS

##Interact with the FTP service on the target.
ftp <FQDN/IP>

##Interact with the FTP service on the target.
nc -nv <FQDN/IP> 21	

##Interact with the FTP service on the target.
telnet <FQDN/IP> 21	

##Interact with the FTP service on the target using encrypted connection.
openssl s_client -connect <FQDN/IP>:21 -starttls ftp	

##Download all available files on the target FTP server.
wget -m --no-passive ftp://anonymous:anonymous@<target>