I have a raw HTTPS stream captured via Wireshark. The request and response both contained g-zip encoded binary files. They are in the form octet-stream, and specify accept-encoding gzip.
I would like to mock this request and response object on my own with a node.js, but for this I need to extract the original binary files so I can send them back and forth. Is there any way to extract the original raw BIN from the Wireshark capture?
Thank you!