Is it possible to run any script in Wireshark to extend filter capabilities? I have a pcap file with requests/responses. Each request/response pair has unique id. I need to find all requests which don't have response pair. What would be the best way to find such responses in Wireshark? The protocol is TCAP. I'm analyzing Source Transaction ID and Destination Transaction ID fields. asked 13 Apr '17, 08:10 Soteric edited 13 Apr '17, 11:53 JeffMorriss ♦ |
One Answer:
Depending on your needs you may be able to do this by:
If that doesn't work for your needs then you may have to use MATE. answered 13 Apr '17, 11:56 JeffMorriss ♦ |
You need to tell us what requests and responses you're working with. There are some cases where Wireshark correlates the request packet with the response packet. Wireshark puts a link to the response in the request packet, and a link to the request in the response packet. In those cases, it is possible to build a filter to show requests with no responses. DNS and HTTP are examples where this can be done.
Thanks for pointing this. I added protocol details. It is TCAP. And transaction ID is the field I'm looking at.