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 download perl (withs screenshots)1. Install Perl 2. Create Hello World program 3. Learn More 1. Download Perl We will first go to the ActiveState site and download Perl … Read More
How to Install Perl on Windows XP1. Download Perl 2. Create Hello World program 3. Learn More We will now install Perl on your computer using the file you jus… Read More
Howto Restore Ubuntu After Windows Installation Using LiveCDWindows will overwrite the grub boot loader , So You cannot access Linux partition after Windows Installation. Tools Required : Ubuntu LiveCD First… Read More
How to extract icons from EXE, DLL, OCX, and CPL filesWish you could extract all of icons stored on your computer? If I were to ask you how many icons you have stored on your computer, would you be able t… Read More
HowTo Run Squid Proxy Server in Windows XPIt is better to use Linux for this purpose. , You can make an experiment in your windows and switch to Linux. installing squid on windows Download … Read More
0 comments:
Post a Comment