Telnet is an application protocol used on the internet or local area network. A default port is 23.
nmap --script telnet-encryption -p 23 <target-ip> nmap --script telnet-ntlm-info -p 23 <target-ip> nmap --script telnet-brute --script-args userdb=users.txt,passdb=passwords.txt,telnet-brute.timeout=8s -p 23 <target-ip>
cat /etc/inetd.conf # or cat /etc/xinetd.d/telnet
telnet <target-ip> <target-port> telnet <target-ip> 23
Last updated 1 year ago