mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
commit
5d6f855387
@ -40,7 +40,7 @@ def highlight_key(s, k):
|
|||||||
|
|
||||||
def format_keyvals(lst, key="key", val="text", space=5, indent=0):
|
def format_keyvals(lst, key="key", val="text", space=5, indent=0):
|
||||||
"""
|
"""
|
||||||
Format a list of (key, value) tuples.
|
Format a list of (key, value) tuples.
|
||||||
|
|
||||||
If key is None, it's treated specially:
|
If key is None, it's treated specially:
|
||||||
- We assume a sub-value, and add an extra indent.
|
- We assume a sub-value, and add an extra indent.
|
||||||
@ -311,8 +311,9 @@ class ConnectionView(WWrap):
|
|||||||
def _conn_text(self, conn, viewmode):
|
def _conn_text(self, conn, viewmode):
|
||||||
if conn:
|
if conn:
|
||||||
e = conn.headers["content-encoding"]
|
e = conn.headers["content-encoding"]
|
||||||
if e:
|
if e and conn.should_autodecode:
|
||||||
e = e[0]
|
e = e[0]
|
||||||
|
conn.should_autodecode = False
|
||||||
else:
|
else:
|
||||||
e = "identity"
|
e = "identity"
|
||||||
return self.master._cached_conn_text(
|
return self.master._cached_conn_text(
|
||||||
@ -530,6 +531,20 @@ class ConnectionView(WWrap):
|
|||||||
self.master.view_next_flow(self.flow)
|
self.master.view_next_flow(self.flow)
|
||||||
elif key == "|":
|
elif key == "|":
|
||||||
self.master.path_prompt("Script: ", self.state.last_script, self.run_script)
|
self.master.path_prompt("Script: ", self.state.last_script, self.run_script)
|
||||||
|
elif key == "g":
|
||||||
|
if self.state.view_flow_mode == VIEW_FLOW_RESPONSE:
|
||||||
|
conn = self.flow.response
|
||||||
|
e = conn.headers["content-encoding"]
|
||||||
|
if e:
|
||||||
|
if conn.last_encoding:
|
||||||
|
conn.content = encoding.encode(
|
||||||
|
conn.last_encoding,
|
||||||
|
encoding.decode(e[0], conn.content)
|
||||||
|
)
|
||||||
|
conn.last_encoding, conn.headers["content-encoding"] = e[0], [conn.last_encoding]
|
||||||
|
else:
|
||||||
|
conn.last_encoding = "identity"
|
||||||
|
self.master.refresh_connection(self.flow)
|
||||||
return key
|
return key
|
||||||
|
|
||||||
def run_script(self, path):
|
def run_script(self, path):
|
||||||
@ -1245,37 +1260,37 @@ class ConsoleMaster(flow.FlowMaster):
|
|||||||
("L", "load saved flows"),
|
("L", "load saved flows"),
|
||||||
|
|
||||||
("m", "change body display mode"),
|
("m", "change body display mode"),
|
||||||
(None,
|
(None,
|
||||||
highlight_key("raw", "r") +
|
highlight_key("raw", "r") +
|
||||||
[("text", ": raw data")]
|
[("text", ": raw data")]
|
||||||
),
|
),
|
||||||
(None,
|
(None,
|
||||||
highlight_key("pretty", "p") +
|
highlight_key("pretty", "p") +
|
||||||
[("text", ": pretty-print XML, HTML and JSON")]
|
[("text", ": pretty-print XML, HTML and JSON")]
|
||||||
),
|
),
|
||||||
(None,
|
(None,
|
||||||
highlight_key("hex", "h") +
|
highlight_key("hex", "h") +
|
||||||
[("text", ": hex dump")]
|
[("text", ": hex dump")]
|
||||||
),
|
),
|
||||||
|
|
||||||
("o", "toggle options:"),
|
("o", "toggle options:"),
|
||||||
(None,
|
(None,
|
||||||
highlight_key("anticache", "a") +
|
highlight_key("anticache", "a") +
|
||||||
[
|
[
|
||||||
|
|
||||||
("text", ": modify requests to prevent cached responses")
|
("text", ": modify requests to prevent cached responses")
|
||||||
|
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
(None,
|
(None,
|
||||||
highlight_key("anticomp", "c") +
|
highlight_key("anticomp", "c") +
|
||||||
[("text", ": modify requests to try to prevent compressed responses")]
|
[("text", ": modify requests to try to prevent compressed responses")]
|
||||||
),
|
),
|
||||||
(None,
|
(None,
|
||||||
highlight_key("killextra", "k") +
|
highlight_key("killextra", "k") +
|
||||||
[("text", ": kill requests not part of server replay")]
|
[("text", ": kill requests not part of server replay")]
|
||||||
),
|
),
|
||||||
(None,
|
(None,
|
||||||
highlight_key("norefresh", "n") +
|
highlight_key("norefresh", "n") +
|
||||||
[("text", ": disable server replay response refresh")]
|
[("text", ": disable server replay response refresh")]
|
||||||
),
|
),
|
||||||
@ -1307,6 +1322,7 @@ class ConsoleMaster(flow.FlowMaster):
|
|||||||
keys = [
|
keys = [
|
||||||
("b", "save request/response body"),
|
("b", "save request/response body"),
|
||||||
("e", "edit request/response"),
|
("e", "edit request/response"),
|
||||||
|
("g", "switch response encoding"),
|
||||||
("p", "previous flow"),
|
("p", "previous flow"),
|
||||||
("v", "view body in external viewer"),
|
("v", "view body in external viewer"),
|
||||||
("|", "run script"),
|
("|", "run script"),
|
||||||
|
@ -10,13 +10,21 @@ ENCODINGS = set(["identity", "gzip", "deflate"])
|
|||||||
|
|
||||||
def decode(encoding, content):
|
def decode(encoding, content):
|
||||||
encoding_map = {
|
encoding_map = {
|
||||||
"identity": decode_identity,
|
"identity": identity,
|
||||||
"gzip": decode_gzip,
|
"gzip": decode_gzip,
|
||||||
"deflate": decode_deflate,
|
"deflate": decode_deflate,
|
||||||
}
|
}
|
||||||
return encoding_map.get(encoding, decode_identity)(content)
|
return encoding_map.get(encoding, identity)(content)
|
||||||
|
|
||||||
def decode_identity(content):
|
def encode(encoding, content):
|
||||||
|
encoding_map = {
|
||||||
|
"identity": identity,
|
||||||
|
"gzip": encode_gzip,
|
||||||
|
"deflate": encode_deflate,
|
||||||
|
}
|
||||||
|
return encoding_map.get(encoding, identity)(content)
|
||||||
|
|
||||||
|
def identity(content):
|
||||||
"""
|
"""
|
||||||
Returns content unchanged. Identity is the default value of
|
Returns content unchanged. Identity is the default value of
|
||||||
Accept-Encoding headers.
|
Accept-Encoding headers.
|
||||||
@ -30,9 +38,16 @@ def decode_gzip(content):
|
|||||||
except IOError:
|
except IOError:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
def encode_gzip(content):
|
||||||
|
s = cStringIO.StringIO()
|
||||||
|
gf = gzip.GzipFile(fileobj=s, mode='wb')
|
||||||
|
gf.write(content)
|
||||||
|
gf.close()
|
||||||
|
return s.getvalue()
|
||||||
|
|
||||||
def decode_deflate(content):
|
def decode_deflate(content):
|
||||||
"""
|
"""
|
||||||
Returns decompress data for DEFLATE. Some servers may respond with
|
Returns decompressed data for DEFLATE. Some servers may respond with
|
||||||
compressed data without a zlib header or checksum. An undocumented
|
compressed data without a zlib header or checksum. An undocumented
|
||||||
feature of zlib permits the lenient decompression of data missing both
|
feature of zlib permits the lenient decompression of data missing both
|
||||||
values.
|
values.
|
||||||
@ -46,3 +61,9 @@ def decode_deflate(content):
|
|||||||
return zlib.decompress(content, -15)
|
return zlib.decompress(content, -15)
|
||||||
except zlib.error:
|
except zlib.error:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
def encode_deflate(content):
|
||||||
|
"""
|
||||||
|
Returns compressed content, always including zlib header and checksum.
|
||||||
|
"""
|
||||||
|
return zlib.compress(content)
|
||||||
|
@ -290,6 +290,8 @@ class Response(controller.Msg):
|
|||||||
self.timestamp = timestamp or utils.timestamp()
|
self.timestamp = timestamp or utils.timestamp()
|
||||||
controller.Msg.__init__(self)
|
controller.Msg.__init__(self)
|
||||||
self.replay = False
|
self.replay = False
|
||||||
|
self.last_encoding = None
|
||||||
|
self.should_autodecode = True
|
||||||
|
|
||||||
def _refresh_cookie(self, c, delta):
|
def _refresh_cookie(self, c, delta):
|
||||||
"""
|
"""
|
||||||
|
@ -4,30 +4,28 @@ import libpry
|
|||||||
import cStringIO
|
import cStringIO
|
||||||
import gzip, zlib
|
import gzip, zlib
|
||||||
|
|
||||||
class udecode_identity(libpry.AutoTree):
|
class uidentity(libpry.AutoTree):
|
||||||
def test_decode(self):
|
def test_simple(self):
|
||||||
assert 'string' == encoding.decode('identity', 'string')
|
assert "string" == encoding.decode("identity", "string")
|
||||||
|
assert "string" == encoding.encode("identity", "string")
|
||||||
|
|
||||||
def test_fallthrough(self):
|
def test_fallthrough(self):
|
||||||
assert 'string' == encoding.decode('nonexistent encoding', 'string')
|
assert "string" == encoding.decode("nonexistent encoding", "string")
|
||||||
|
assert "string" == encoding.encode("nonexistent encoding", "string")
|
||||||
|
|
||||||
class udecode_gzip(libpry.AutoTree):
|
class ugzip(libpry.AutoTree):
|
||||||
def test_simple(self):
|
def test_simple(self):
|
||||||
s = cStringIO.StringIO()
|
assert "string" == encoding.decode("gzip", encoding.encode("gzip", "string"))
|
||||||
gf = gzip.GzipFile(fileobj=s, mode='wb')
|
|
||||||
gf.write('string')
|
|
||||||
gf.close()
|
|
||||||
assert 'string' == encoding.decode('gzip', s.getvalue())
|
|
||||||
assert None == encoding.decode("gzip", "bogus")
|
assert None == encoding.decode("gzip", "bogus")
|
||||||
|
|
||||||
class udecode_deflate(libpry.AutoTree):
|
class udeflate(libpry.AutoTree):
|
||||||
def test_simple(self):
|
def test_simple(self):
|
||||||
assert 'string' == encoding.decode('deflate', zlib.compress('string'))
|
assert "string" == encoding.decode("deflate", encoding.encode("deflate", "string"))
|
||||||
assert 'string' == encoding.decode('deflate', zlib.compress('string')[2:-4])
|
assert "string" == encoding.decode("deflate", encoding.encode("deflate", "string")[2:-4])
|
||||||
assert None == encoding.decode("deflate", "bogus")
|
assert None == encoding.decode("deflate", "bogus")
|
||||||
|
|
||||||
tests = [
|
tests = [
|
||||||
udecode_identity(),
|
uidentity(),
|
||||||
udecode_gzip(),
|
ugzip(),
|
||||||
udecode_deflate()
|
udeflate()
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user