I am trying to filter DNS traffic in a capture file based upon ip address and udp source port randomization. I tried multiple filter strings with tshark but have been unable to come up with a solution. tshark -n -r capture.pcap -T fields -e ip.src -e udp.port|sort -u asked 26 Oct '15, 08:03 m00p edited 26 Oct '15, 08:26 |
One Answer:
What about this:
BTW: What do you mean by "and udp source port randomization"? Maybe I'm misunderstanding your question. If so, please add more information and probably a small example. Regards answered 26 Oct '15, 09:54 Kurt Knochner ♦ |
Kurt,
The filter string worked well with parsing the output. IRT Source Port Randomization, I am checking my DNS traffic to verify queries are using proper security measures. Thanks!
m00p
good!
Hint: If a supplied answer resolves your question can you please "accept" it by clicking the checkmark icon next to it. This highlights good answers for the benefit of subsequent users with the same or similar questions. For extra points you can up vote the answer (thumb up).