Telnet Banner and Service Enumeration
Telnet runs plaintext on port 23. Exposed banners often leak OS, version, or device type. Positive hits flag legacy systems ripe for weak creds or known exploits.
Manual Banner Grab
Connect and observe initial output:
Banner appears immediately or after newline. Look for strings like "Cisco", "FreeBSD", or version numbers.
Full interactive session:
Once connected, escape to telnet prompt:
Ctrl + ]Send control commands:
send aytSome servers reply with OS or version.
send aoTriggers additional banner leakage on certain implementations.
No response or immediate disconnect indicates restricted banner.
Nmap Service Detection
Version probe:
Output shows software like "Linux telnetd" or "Cisco IOS". Match versions against CVEs.
Encryption negotiation check:
Reports if encryption offered. Plaintext confirmation means full session sniffing possible if pivoted.
NTLM info leak on Windows telnet:
Dumps domain, hostname, OS version if NTLM supported.
All safe telnet scripts:
Combines version, encryption, and info scripts. Unexpected OS details guide next attacks.
Was this helpful?
Your feedback helps improve this page.