Is there an automated way (either in tcpdump or via a helper app Out There) to generate a pcap file that contains only Ethernet, IP and Layer 4 (TCP in my case) headers, so that there is no payload/application data in the resulting pcap? I've found that since header sizes often vary, it's impossible to pick a capture size that won't catch any payload data.
|
feedback
|
|
You can strip out the TCP payload very easily with Python's BEFORE
PAYLOAD STRIPPING Running this as root in linux...
AFTER
In the | ||||
|
feedback
|
|
If simple truncate would work for you, you could use:
Later on you can analyze it with wireshark. | |||
feedback
|