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?
Software/Hardware used:
ASKED:
February 11, 2009 6:17 PM
UPDATED:
February 25, 2009 3:48 PM
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
How about just connecting to it via FTP and see what it responds with?