Telnet (TELecommunication NETwork) is a unsecured network protocol used on the Internet or local area network (LAN) connections popularly to remotely access a server from client. The problem with Telnet is that the session is unencrypted with user name and password transmit across network in plain text, greatly increase security risk.
If you want to identify and check if the Telnet service is running on your server, especially on web server or web host which exposes to worldwide attacks, here’s an easy way to perform the verification on Telnet process.
The easiest way to check if the Telnet process is running or not on the server is by using ps command that displays the currently running processes. To check for any running Telnet process, login to the server via SSH (or physically using console, if you can Telnet into the server, obviously the Telnet service is running), and run the following command:
ps -aux | grep telnet
If the result returns any other processes other than “grep telnet” line means that some Telnet process is running or session is opened.
Alternatively, scan your server for open port 23, which Telnet normally uses to connect to. If the port 23 is not closed, mean Telnet service may be running. To check if port 23 is closed or opened, you need to have nmap installed on server. The command to use is:
nmap -sT -O localhost
Home »
Windows XP
» How to Check if Telnet Is Running on a Server
How to Check if Telnet Is Running on a Server
Related Posts:
How To Repair And Restore Windows Vista Master Boot Record (MBR)The Master Boot Record (MBR) will be created when you create the first partition on the hard disk. It is very important data structure on the hard dis… Read More
How to Install Perl on Windows XPInstall Perl on Windows XP 1.Download ActivePerl for Windows XP from ActiveState. At the time I downloaed, the version was ActivePerl 5.6.1 build … Read More
How to determine client (Windows/Mac) IP addressTo find the IP address of a computer to which you have physical access: ■Windows 95/98/ME &nbs… Read More
How do I make Dial-Up Networking Redial Automatically?In Windows Vista: By default, a dial-up connection redials three times (at one-minute intervals) if it cannot reach the remote access server. Also b… Read More
How to Shutdown Windows machine remotely from Linux command lineThe easiest way to shutdown a Windows machine from Linux is by using Samba’s net command. The following command will send an RPC call to the Windows m… Read More
0 comments:
Post a Comment