Using 'netstat -tulp' on my server box running under CentOS I have discovered strange listening ports 33363 (TCP) and 35661 (UDP). The thing is that 'PID/Program name' field for these ports contains nothing (dash actually). 'fuser -n tcp 33363' shows nothing. I have checked my box with chkrootkit and rkhunter utilities and it seems everything is O.K. Does anybody know what these sockets can be used for?
Asked
Active
Viewed 7,298 times
2 Answers
4
Have you tried with lsof?
lsof -i TCP:33363
lsof -i UDP:35661

scetoaux
- 1,289
- 2
- 12
- 26
-
Thanks for reply! Like 'fuser' 'lsof' gives an empty output. – user14241 Jul 24 '09 at 08:35
-
Pretty weird... You can also try to trace the pid and see if it shows something interesting: strace -p
– scetoaux Jul 24 '09 at 08:58 -
1What PID, Fran? – innaM Jul 24 '09 at 09:24
-
Doh! True, we do not know the pid. Thanks for pointing it out Manni :) – scetoaux Jul 24 '09 at 09:26
-
Unfortunately `lsof` seems to usable only by root. My process is running as user "foo". I am user "foo", can get no results. Stragen. The tool `nestat` shows the open ports. – guettli Feb 28 '17 at 08:02