How to see if my Nmap tcpwrapped port is open after a GFI LANguard scan
1445 pts.
0
Q:
How to see if my Nmap tcpwrapped port is open after a GFI LANguard scan
I ran Nmap 4.0 and GFI LANguard GFI LANguard Network Security Scanner (N.S.S.) on a Windows 2003 server and noticed that the FTP Port 21 is open but tcpwrapped. How do I check further if Port 21 is indeed open? I've checked the IIS6.0 and the Windows Add/ Remove program section there's not FTP installed. Is there something behind it?
ASKED: Feb 11 2009  6:17 PM GMT
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
0
90 pts.
0
A:
 RATE THIS ANSWER
+1
Click to Vote:
  •   1
  •  0
  • AddThis Social Bookmark Button
telnet to the ip address / port. The system should return a banner if the port is truly open. You can also run netstat -an at a command prompt to see if the host is listening on port 21. You can also use the Process Explorer tool from Sysinternals (Microsoft) to see what IP addresses are connected to processes/ports.

Just to add - If the port is TCPwrapped, kindly make sure that the allow and deny rules reflect the intended configuration and not something that leaves a backdoor for an attacker to get in. Since the port is TCPwrapped it would generally be assumed to be secure and can easily fool anyone. So beware and doublecheck the config.
Last Answered: Feb 24 2009  11:36 AM GMT by Puneet   90 pts.
Latest Contributors: Labnuke99   26290 pts.
0
0
Discuss This Answer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _



_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

Petkoa   1005 pts.  |   Feb 24 2009  5:10PM GMT

On the local side run netstat. Under Win switches will be something like this:

netstat -a -p tcp -b

-a: all, including listening
-p tcp: protocol
-b: name of the program which opened the port (a good thing™ - so you can kill it!)

And follow the advice of Labnuke99 on tcpwrapping - novadays it generally just creates “a false sense of security”

BR,

Petko

 

KevinBeaver   7610 pts.  |   Feb 25 2009  3:48PM GMT

How about just connecting to it via FTP and see what it responds with?

 
0