Port 23 - Telnet
Last updated
Last updated
Permite acceder a otra máquina de manera remota a través de la linea de comandos, siendo un protocolo inseguro ya que la conexión no viaja cifrada.
# Connect to a machine
telnet <IP> <Port>
# Banner grabbing
nmap -sV -p23 -n -Pn <IP> # Telnet
telnet <IP> 22 # SSH Version grabbing
telnet <IP> 25
hydra -l <USERNAME> -P <WORDLIST> telnet://<IP> [-t <THREADS> -s <PORT>]
# No me funcionaron estos métodos
DSNIFF
# In the local machine
dsniff -i <NETWORK_INTERFACE>
# Alternative way with arp-spoofing
arpspoof -i <NETWORK_INTERFACE> -r -t <TARGET> <GATEWAY>
dsniff -t 23/tcp=telnet -n
Wireshark