Results 1 to 7 of 7
What "Servers or services" run on port 55555? If anyone know, please let me know asap, thank you....
- 06-11-2006 #1Just Joined!
- Join Date
- May 2006
- Posts
- 31
Port 55555
What "Servers or services" run on port 55555? If anyone know, please let me know asap, thank you.
- 06-11-2006 #2
I googled "port 55555" and got 52,000 hits.
- 06-11-2006 #3Just Joined!
- Join Date
- May 2006
- Posts
- 31
52,000 hits meaning 52,000 exploits on port 55555? I've googled everywhere and I always get something bad from port 55555.
I've heard that port 55555 is an open door for intruders and hackers. I did a netstat -tulp and port 55555 is "Listen" there's no foreign address to it.
Some people say that it's a client port but I don't know. All I know is I have to disable the service that is running on that particular port. The thing is I don't know what's running on that port.
Again if anyone know let me know.
- 06-11-2006 #4
Any TCP/IP connection you make uses two ports. You use the "well-known" port number to initiate the connection with the server and a fairly randomly selected port for the return path. Port 55555 could legitimately be used occasionally for that purpose.
There have indeed been viruses and trojans that have used it. I don't know what's current.
You can run "netstat -a | grep 55555" to see if your computer has a server listening to that port.
Here is an interesting graph of port 55555 use (abuse?) from the internet storm center.
- 06-18-2006 #5Just Joined!
- Join Date
- Jun 2006
- Location
- /bin/bash
- Posts
- 4
I also knew a program that listening on port 55555, it should be metasploits web based...check it with ur browser http://localhost:55555
if metasploit appear, then ur server used to be a zombie...
- 08-25-2006 #6Just Joined!
- Join Date
- Aug 2006
- Posts
- 1
port 55555 avg antivirus
Hi,
Even better is to run netstat with the -p parameter to discover what program is listening on a given port.
The command:
netstat -p -a | grep 55555
gives the following output:
tcp 0 0 my.host.name:55555 *:* LISTEN 5216/avgscan
So it seems AVG for linux is running on my port 55555 which would be normal as I run this antivirus indeed. This is confirmed by googling "port 55555 avg for linux"
(e. g., www.avgbrasil.com.br/br/manuais/avg_linux_wks_usermanual_pt-br_70_3.pdf).
Well, if you have AVG installed, it's just the AvgDaemon.
On the contrary...
======== http://www.netpoliglota.com ======
"La faiblesse est pire pour la vertu que le vice"
======== http://www.netpoliglota.com ======
- 08-25-2006 #7Just Joined!
- Join Date
- Jul 2006
- Posts
- 4
you got it.
Originally Posted by Danidan
Another way, using the lsof can help you a lot
#lsof |grep 55555
but lsof is not the default package in many linux distributions.


Reply With Quote