in reply to Re: Extract chunked/gzip data from pcap file
in thread Extract chunked/gzip data from pcap file
I have the PerlIO::gzip module installed, and I've tried using it. However, there's more to the puzzle than just using that module.
When I look at these packets in Wireshark, a packet can be viewed in three different forms: (1) full frame, with the binary data intact and still encoded; (2) "De-chunked entity body", which exhibits the majority of the binary data intact -- but which has removed the "chunked encapsulation" (for lack of a better term); and (3) "Uncompressed entity body", which shows no binary data, just the decoded HTML text.
This leads me to believe that there is some intermediate step that is required to remove the "chunked encapsulation", before being able to hand the "clean" compressed data to PerlIO::gzip as a stream for decompression.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Extract chunked/gzip data from pcap file
by Corion (Patriarch) on Dec 28, 2009 at 14:28 UTC | |
by oakb (Scribe) on Jan 04, 2010 at 16:19 UTC | |
by Corion (Patriarch) on Jan 04, 2010 at 16:22 UTC |