• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Ubuntu Linux Security Question

zappa86

Limp Gawd
Joined
Jul 1, 2005
Messages
162
I have ubuntu 5.04 installed. I did a netstat -l to see what was opened on my system and I found several entries like:
unix 2 [ ACC ] STREAM LISTENING 13734 /tmp/orbit-harry/linc-226f-0-1bac2d62a9d22

and

unix 2 [ ACC ] STREAM LISTENING 13186 @/tmp/dbus-hIk2dV0DVj

I'm somewhat new to linux, however in windows I know that programs in the tmp directory that look that that can be problems? is this normal or do I have a virus or worm or something?
 
In unix/linux, there are sockets not only for communication between hosts on a network, but also sockets for passing information between two processes running on the same computer, known as unix domain sockets. Say you have one program that needs to pass information to another in a producer-consumer fashion. One way of passing the data would be through the use of unix sockets.

So when you do a netstat, pay close attention to the categories. You should see at least two sections:

Active Internet connections
Active UNIX domain sockets

Unix domain sockets should not be accessible through the internet--they are not bound to TCP or UDP protocols.
 
Back
Top