23 - Telnet
Nowadays, telnet often is a security risk: it's traffic is not encrypted, and many running servers are running outdated hosts. Certainly check out the server version on exploit-db!
Banner grabbing with netcat:
nc <ip-addr> 23
Hydra brute force attack:
hydra -l root -P /path/to/wordlist.txt <ip-addr> telnet
Last updated
Was this helpful?