I'm running tshark on a web-surfing capture and noticed than it parses the http response's data (when I choose PDML as the output format). This is somewhat annoying when the response consists of an image. I would rather get a blob of data which I can view later as an image, than the PNG's headers and their values. Here's an example:
(and it goes on and on) Is there a way to get tshark to "dechunk" and decompress the response's data, without it going further and parse the data itself? I Couldn't find this option in Wireshark's config file, but maybe I've missed it. Thanks (and a happy new year!) asked 03 Jan '11, 07:08 r0u1i |
One Answer:
Try disabling the PNG protocol (under Analyze ! Enabled Protocols ...) The above is for Wireshark. If you do the above and then run tshark, the protocol will also be disabled in tshark since tshark reads the "disabled_protos" configuration file created when the protocol is disabled in Wireshark. answered 03 Jan '11, 07:33 Bill Meier ♦♦ edited 03 Jan '11, 07:50 |
Thanks, should have thought about it on my own!