Skip to content

Instantly share code, notes, and snippets.

@mhils
Created April 29, 2015 08:42
Show Gist options
  • Save mhils/c9264432f5d6b8f9320a to your computer and use it in GitHub Desktop.
Save mhils/c9264432f5d6b8f9320a to your computer and use it in GitHub Desktop.
from libmproxy.protocol.http import decoded
def response(context, flow):
with decoded(flow.response): # automatically decode gzipped responses.
with open("body.txt","wb") as f:
f.write(flow.response.content)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment