Ask Your Question
0

Filter http packets related to specific Call-ID

asked 2024-07-07 10:08:48 +0000

I have a packet that contains thousands of calls. I am trying to look at http packets that are related to a specific Call-ID. is there a way i can filter my PCAP to just show the SIP messages and http packets related to specific Call-ID.

edit retag flag offensive close merge delete

2 Answers

Sort by » oldest newest most voted
0

answered 2024-07-07 11:11:29 +0000

Chuckc gravatar image

That's the type of thing MATE is good for: 12.5. MATE’s configuration tutorial
There have been some recent fixes to it so you may want to test with recent code.
Can you provide a small sample capture if there are further questions?

edit flag offensive delete link more

Comments

I'll look into it but it seems to complicated for me. Sorry due to company policies i can't share the pcap. I thought there would be a filer that i can use.

Housan Makki gravatar imageHousan Makki ( 2024-07-07 11:33:17 +0000 )edit
0

answered 2024-07-07 14:10:18 +0000

SYN-bit gravatar image

To display all SIP packets with the same Call-ID, you can use the filter sip.Call-ID == <call-id>, the easiest way to do that is to open up the SIP details in the details pane and then drag the line that starts with "Call-ID" to the filter bar.

As HTTP and SIP are different protocols, there is no inherent relationship between the HTTP packets and the SIP packets. If there are HTTP packets related to the SIP call setup, do they have a mutual identifier in the headers? Is the Call-ID for instance listed in an HTTP header? In that case, you can filter on the specific header containing the Call-ID value. But that would be specific for your setup, so without knowing how this relationship is visible in the packets, it is not possible to advice you on how to filter in this specific case.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2024-07-07 10:08:48 +0000

Seen: 76 times

Last updated: Jul 07