I ran nmap on my server and found a strange port open. I'm trying to figure out if there is a way to map that port to a specific process but have no idea if there is such a tool.
Any suggestions?
|
I ran nmap on my server and found a strange port open. I'm trying to figure out if there is a way to map that port to a specific process but have no idea if there is such a tool. Any suggestions? | |||
|
feedback
|
|
As well as Netstat, mentioned in other posts, the lsof command should be able to do this just fine. Just use this:
and all of the processes should come up. I use it on OS X quite frequently. | |||||||||||||||
feedback
|
Lists ports that are listening for incoming connections and the associated process that has the port open. | ||||
|
feedback
|
Warning: Your system is compromised.The tool you need is This is indeed a rootkit. I have seen this behavior before, and it is always a rootkit. Your system is compromised, and any tools you are using that originate from the same machine cannot be trusted. Boot into a Live CD (which has read-only trusted binaries) and use that to extract your data, settings, etc. Any programs you had, any scripts you had, abandon them. Do not bring them. Treat them, and the system, as if they have leprosy, because they do. Once you're done, nuke it from orbit.
Do this as soon as possible. Oh, and unplug your network connection - deny your attacker access. | |||||||||||||||
feedback
|
|
netstat -anp The "-p" tells it to list the process-ID that has the port open. The -an tells it to list listening ports and don't resolve names. On busy systems that can greatly speed up how fast it returns. netstat -anp | grep "LIST" That'll just give you the open ports. | |||
|
feedback
|
|
If you can't see the port open with operating system tools and you suspect an intrussion it could be that a rootkit has been installed. The rootkit could have changed systems tools to avoid certain processes and ports or changed kernel modules. You can check for rootkit with several automated tools. 'apt-cache search rootkit' shows the following in Ubuntu:
If you happen to have a rootkit you can revert the 'changed' to your system but I recommend that you find out how the intrussion was made and harden the system for it not to repeat. They are not exclusive to Ubuntu, you can use them in CentOS too. Just look for the package or download it from their page. By the output from that port it seems you're running pcanywhere indeed: "�Ы� <Enter>" is very similar to "Please press <Enter>" which is pcanywhere welcome message. I don't know why the process doesn't show up in the process list. Are you root? You can try rebooting to see if it's a one time process running, as well. | |||||||||
feedback
|