My machine is continously making udp dns traffic request. what i need to know is the PID of the process generating this traffic.
The normal way in TCP connection is to use netstat/lsof and get the process associated at the pid.
Is UDP the connection is stateles, so, when i call netastat/lsof I can see it only if the UDP socket is opened and it's sending traffic.
I have tried with lsof -i UDP
and with nestat -anpue
, but I can't find wich process is doing that request because i need to call lsof/netstat exactly when the udp traffic is sended, if i call lsof/netstat before/after the udp datagram is sended is impossible to view the opened UDP socket.
Call netstat/lsof exactly when 3/4 udp packet is sended is IMPOSSIBLE.
How I can identify the infamous process? I have already inspected the traffic to try to identify the sended PID from the content of the packet, but is not possible to identify it from the contect of the traffic.
Anyone can help me ?
I'm root on this machine FEDORA 12 Linux noise.company.lan 2.6.32.16-141.fc12.x86_64 #1 SMP Wed Jul 7 04:49:59 UTC 2010 x86_64 x86_64 x86_64 GNU/Linux
Linux auditing can help. It will at least locate users and processes making datagram network connections. UDP packets are datagrams.
First, install the
auditd
framework on your platform and ensure thatauditctl -l
returns something, even if it says that no rules are defined.Then, add a rule to watch the system call
socket()
and tag it for easy finding later (-k
). I need to assume that you are on a 64-bit architecture, but you can substituteb32
in place of theb64
if you aren't.You have to pick through man pages and header files to build this, but what it captures is essentially this system call:
socket(PF_INET, SOCK_DGRAM|X, Y)
, where the third parameter is unspecified but frequently zero.PF_INET
is 2 andSOCK_DGRAM
is 2. TCP connections would useSOCK_STREAM
which would seta1=1
. (SOCK_DGRAM
in the second parameter may be ORed withSOCK_NONBLOCK
orSOCK_CLOEXEC
, hence the&=
comparison.) The-k SOCKET
is our keyword we want to use when searching audit trails later. It can be anything, but I like to keep it simple.Let a few moments go by and review the audit trails. Optionally, you could force a couple of packets by pinging a host out on the net, which will cause a DNS lookup to occur, which uses UDP, which should trip our audit alert.
And output similar to the section below will appear. I'm abbreviating it to highlight the important parts
In the above output, we can see that the
ping
command caused the socket to be opened. I could then runstrace -p 14510
on the process, if it was still running. Theppid
(parent process ID) is also listed in case it is a script that spawns the problem child a lot.Now, if you have a lot of UDP traffic, this isn't going to be good enough and you'll have to resort to OProfile or SystemTap, both of which are currently beyond my expertise.
This should help narrow things down in the general case.
When you are done, remove the audit rule by using the same line you used to create it, only substitute
-a
with-d
.You can use netstat, but you need the right flags, and it only works if the process that is sending the data is still alive. It won't find the traces of something that came briefly to life, sent UDP traffic, then went away. It also requires local root privileges. That said:
Here's me starting an ncat on my local host, sending UDP traffic to port 2345 on a (non-existent) machine 10.11.12.13:
Here's some tcpdump output proving that the traffic is going:
Here's the useful bit, using netstat with the -a flag (to see port details) and the -p flag to see process ID details. It's the -p flag that requires root privileges:
As you can see, pid 9152 is fingered as having a connection open to port 2345 on the specified remote host. Netstat helpfully also runs that through ps and tells me the process name is
ncat
.Hopefully that's of some use.
I had exactly the same problem and unfortunately
auditd
didn't do much for me.I had traffic from some of my servers going towards google DNS addresses,
8.8.8.8
and8.8.4.4
. Now, my network admin has mild OCD and he wanted to clean all the unnecessary traffic since we have our intern DNS caches. He wanted to disable outgoing port 53 for everyone except those cache servers.So, after failing with
auditctl
, I dig intosystemtap
. I come up with the following script:Then simply run:
This is the output that I got:
That's it! After changing
resolv.conf
those PIDs didn't pick up the changes.Hope this helps :)
Here's a systemtap option, using the netfilter probes available in stap verson 1.8 and later. See also
man probe::netfilter.ip.local_out
.I would use a net-sniffer like tcpdump or wireshark to view the DNS requests. The contents of the query can give an idea of what program is issuing them.
Be aware that when using autitctl, nscd for example uses a slightly different parameter in the socket system call, when doing a DNS query:
So to make sure you catch those queries in addition to the ones that were mentioned above, you can add an additional filter, with the same name if you want:
Here 2050 is a bitwise OR of SOCK_DGRAM (2) and SOCK_NONBLOCK (2048).
Then the search will find both those filters with the same key,
SOCKET
:The hex values for the socket constants I found here: https://golang.org/pkg/syscall/#pkg-constants
As I have no reputation points to comment I added this.