mitmproxy/libmproxy/dump.py

234 lines
7.0 KiB
Python
Raw Normal View History

import sys, os
import netlib.utils
2011-08-18 21:22:25 +00:00
import flow, filt, utils
2011-02-16 21:18:38 +00:00
class DumpError(Exception): pass
2011-02-16 10:03:46 +00:00
class Options(object):
attributes = [
"app",
2013-12-08 14:46:11 +00:00
"app_external",
"app_host",
"app_port",
"anticache",
"anticomp",
"client_replay",
"eventlog",
"keepserving",
"kill",
"no_server",
"nopop",
"refresh_server_playback",
"replacements",
"rfile",
"rheaders",
"setheaders",
"server_replay",
"scripts",
2013-03-17 04:53:39 +00:00
"showhost",
"stickycookie",
"stickyauth",
"verbosity",
"wfile",
2011-02-16 10:03:46 +00:00
]
def __init__(self, **kwargs):
for k, v in kwargs.items():
setattr(self, k, v)
for i in self.attributes:
2011-02-16 21:18:38 +00:00
if not hasattr(self, i):
setattr(self, i, None)
2011-02-16 10:03:46 +00:00
def str_response(resp):
r = "%s %s"%(resp.code, resp.msg)
if resp.is_replay():
r = "[replay] " + r
return r
2013-03-17 04:43:31 +00:00
def str_request(req, showhost):
2011-03-05 22:21:31 +00:00
if req.client_conn:
c = req.client_conn.address[0]
else:
c = "[replay]"
2013-03-17 04:43:31 +00:00
r = "%s %s %s"%(c, req.method, req.get_url(showhost))
if req.stickycookie:
r = "[stickycookie] " + r
return r
2011-02-16 09:10:24 +00:00
class DumpMaster(flow.FlowMaster):
2011-02-16 21:44:08 +00:00
def __init__(self, server, options, filtstr, outfile=sys.stdout):
2011-02-16 09:10:24 +00:00
flow.FlowMaster.__init__(self, server, flow.State())
2011-02-16 10:03:46 +00:00
self.outfile = outfile
self.o = options
self.anticache = options.anticache
self.anticomp = options.anticomp
self.eventlog = options.eventlog
2013-03-17 04:43:31 +00:00
self.showhost = options.showhost
self.refresh_server_playback = options.refresh_server_playback
2011-02-16 21:44:08 +00:00
if filtstr:
self.filt = filt.parse(filtstr)
else:
self.filt = None
if options.stickycookie:
self.set_stickycookie(options.stickycookie)
if options.stickyauth:
self.set_stickyauth(options.stickyauth)
2011-02-16 21:18:38 +00:00
if options.wfile:
path = os.path.expanduser(options.wfile)
try:
f = file(path, "wb")
self.start_stream(f, self.filt)
2011-02-16 21:18:38 +00:00
except IOError, v:
raise DumpError(v.strerror)
2012-03-17 04:29:25 +00:00
if options.replacements:
for i in options.replacements:
self.replacehooks.add(*i)
if options.setheaders:
for i in options.setheaders:
self.setheaders.add(*i)
if options.server_replay:
2011-03-05 22:21:31 +00:00
self.start_server_playback(
self._readflow(options.server_replay),
options.kill, options.rheaders,
not options.keepserving,
options.nopop
2011-03-05 22:21:31 +00:00
)
2011-03-05 22:21:31 +00:00
if options.client_replay:
self.start_client_playback(
self._readflow(options.client_replay),
not options.keepserving
)
2011-03-05 22:21:31 +00:00
scripts = options.scripts or []
for script_argv in scripts:
err = self.load_script(script_argv)
if err:
raise DumpError(err)
if options.rfile:
path = os.path.expanduser(options.rfile)
try:
f = file(path, "rb")
freader = flow.FlowReader(f)
except IOError, v:
raise DumpError(v.strerror)
try:
self.load_flows(freader)
except flow.FlowReadError, v:
self.add_event("Flow file corrupted. Stopped loading.")
if self.o.app:
self.start_app(self.o.app_host, self.o.app_port, self.o.app_external)
2011-03-05 22:21:31 +00:00
def _readflow(self, path):
path = os.path.expanduser(path)
try:
2013-06-15 22:23:44 +00:00
f = file(path, "rb")
2011-03-05 22:21:31 +00:00
flows = list(flow.FlowReader(f).stream())
except (IOError, flow.FlowReadError), v:
2011-03-05 22:21:31 +00:00
raise DumpError(v.strerror)
return flows
def add_event(self, e, level="info"):
if self.eventlog:
print >> self.outfile, e
self.outfile.flush()
2011-02-17 01:26:50 +00:00
def indent(self, n, t):
l = str(t).strip().split("\n")
return "\n".join(" "*n + i for i in l)
def _process_flow(self, f):
self.state.delete_flow(f)
if self.filt and not f.match(self.filt):
2011-08-02 04:52:47 +00:00
return
if f.response:
sz = utils.pretty_size(len(f.response.content))
if self.o.verbosity > 0:
result = " << %s %s"%(str_response(f.response), sz)
if self.o.verbosity > 1:
result = result + "\n\n" + self.indent(4, f.response.headers)
if self.o.verbosity > 2:
if utils.isBin(f.response.content):
d = netlib.utils.hexdump(f.response.content)
d = "\n".join("%s\t%s %s"%i for i in d)
cont = self.indent(4, d)
elif f.response.content:
cont = self.indent(4, f.response.content)
else:
cont = ""
result = result + "\n\n" + cont
elif f.error:
result = " << %s"%f.error.msg
if self.o.verbosity == 1:
2013-03-17 04:43:31 +00:00
print >> self.outfile, str_request(f.request, self.showhost)
print >> self.outfile, result
elif self.o.verbosity == 2:
2013-03-17 04:43:31 +00:00
print >> self.outfile, str_request(f.request, self.showhost)
print >> self.outfile, self.indent(4, f.request.headers)
print >> self.outfile
print >> self.outfile, result
print >> self.outfile, "\n"
elif self.o.verbosity >= 3:
2013-03-17 04:43:31 +00:00
print >> self.outfile, str_request(f.request, self.showhost)
print >> self.outfile, self.indent(4, f.request.headers)
if utils.isBin(f.request.content):
print >> self.outfile, self.indent(4, netlib.utils.hexdump(f.request.content))
elif f.request.content:
print >> self.outfile, self.indent(4, f.request.content)
print >> self.outfile
print >> self.outfile, result
print >> self.outfile, "\n"
if self.o.verbosity:
self.outfile.flush()
def handle_log(self, l):
self.add_event(l.msg)
l.reply()
def handle_request(self, r):
f = flow.FlowMaster.handle_request(self, r)
if f:
r.reply()
return f
def handle_response(self, msg):
2011-02-16 09:10:24 +00:00
f = flow.FlowMaster.handle_response(self, msg)
2011-02-16 10:03:46 +00:00
if f:
msg.reply()
self._process_flow(f)
2011-03-05 22:21:31 +00:00
return f
2011-02-16 21:18:38 +00:00
def handle_error(self, msg):
f = flow.FlowMaster.handle_error(self, msg)
if f:
self._process_flow(f)
return f
def shutdown(self): # pragma: no cover
return flow.FlowMaster.shutdown(self)
def run(self): # pragma: no cover
if self.o.rfile and not self.o.keepserving:
for script in self.scripts:
self.unload_script(script)
return
2011-02-16 09:10:24 +00:00
try:
return flow.FlowMaster.run(self)
except BaseException:
self.shutdown()
raise