I would like to know all the things that can be done with telnet, currently i use it to determine if a remote machine is listening on some specific port like this telnet [machine] [port]. any ideas please
|
|
|||
|
closed as belongs on serverfault.com by Noldorin, SilentGhost, Greg Hewgill, Vilx-, Yuval A Jul 15 at 12:34 |
|
|
Look at telnet as basically opening a socket to another machine on a port. You can log into another machine (not securely) using it. If you know the SMTP protocol, you can send mail with it. If you know how to formulate an HTTP request, you can even make HTTP requests with it and get back a HTTP response stream. It's a lovely tool. |
||||||
|
|
|
It can be useful in debugging many application level protocols. For example:
returns the HTTP headers of stackoverflow.com front page. Though netcat ( |
||
|
|
|
FTP, HTTP I already tried. You can telnet to a web server to work with the headers themselves etc... |
||
|
|
|
|
You can interact with an SMTP server to send mail:
|
||
|
|
|
|
You can connect to your mail server and send an email using telnet. Telnet to hostname on port 25 DATA hit ENTER QUIT |
||
|
|
