This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

data.data shows only 24byte

1

I want to create a txt-file with the data of my filtered UDP-packets. When i create a custom colu**mn with the field-type "data.data" it shows my filtered packet-data but only the first 24byte and "..."

Is it possible to create a txt-file with the full frame-content (without the header information)?

Thanks a lot!

asked 05 Nov '12, 00:23

Sharkline's gravatar image

Sharkline
16113
accept rate: 0%

edited 05 Nov '12, 00:24

What do you mean by "without the header information"?

(05 Nov '12, 12:32) Guy Harris ♦♦

I believe he means the payload data, similar to "Follow UDP Stream".

(05 Nov '12, 12:35) Kurt Knochner ♦

One Answer:

0

You can try using tshark with the -x option that will basically dump the whole packet including hex bytes in textform and filter/grep for the parts you're looking for or try using the data.data field sogether with -Tfields

e.g. tshark -r test.pcap -Y udp -Tfields -e data.data

answered 17 Sep '14, 08:49

Landi's gravatar image

Landi
2.3k51442
accept rate: 28%