mitmproxy/libmproxy/dump.py

349 lines
10 KiB
Python
Raw Normal View History

2015-03-15 01:53:05 +00:00
from __future__ import absolute_import, print_function
import sys
import os
import traceback
import click
2015-09-12 11:49:16 +00:00
import itertools
2015-09-16 16:45:22 +00:00
from netlib.http import CONTENT_MISSING
import netlib.utils
2015-09-12 11:49:16 +00:00
from . import flow, filt, contentviews
from .exceptions import ContentViewException
from .models import HTTPRequest
class DumpError(Exception):
pass
2011-02-16 21:18:38 +00:00
2011-02-16 10:03:46 +00:00
class Options(object):
attributes = [
"app",
2013-12-08 14:46:11 +00:00
"app_host",
"app_port",
"anticache",
"anticomp",
"client_replay",
"filtstr",
"flow_detail",
"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",
2014-07-21 19:06:55 +00:00
"stream_large_bodies",
"verbosity",
"outfile",
"replay_ignore_content",
"replay_ignore_params",
"replay_ignore_payload_params",
"replay_ignore_host"
2011-02-16 10:03:46 +00:00
]
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
2011-02-16 09:10:24 +00:00
class DumpMaster(flow.FlowMaster):
def __init__(self, server, options, outfile=None):
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
2013-03-17 04:43:31 +00:00
self.showhost = options.showhost
self.replay_ignore_params = options.replay_ignore_params
self.replay_ignore_content = options.replay_ignore_content
self.replay_ignore_host = options.replay_ignore_host
self.refresh_server_playback = options.refresh_server_playback
self.replay_ignore_payload_params = options.replay_ignore_payload_params
2014-07-21 19:06:55 +00:00
self.set_stream_large_bodies(options.stream_large_bodies)
if options.filtstr:
self.filt = filt.parse(options.filtstr)
2011-02-16 21:44:08 +00:00
else:
self.filt = None
if options.stickycookie:
self.set_stickycookie(options.stickycookie)
if options.stickyauth:
self.set_stickyauth(options.stickyauth)
if options.outfile:
2016-01-10 10:45:26 +00:00
err = self.start_stream_to_path(
options.outfile[0],
options.outfile[1]
)
if err:
raise DumpError(err)
2011-02-16 21:18:38 +00:00
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,
options.replay_ignore_params,
options.replay_ignore_content,
options.replay_ignore_payload_params,
options.replay_ignore_host
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 command in scripts:
err = self.load_script(command)
if err:
raise DumpError(err)
if options.rfile:
try:
self.load_flows_file(options.rfile)
2015-05-30 00:03:28 +00:00
except flow.FlowReadError as v:
self.add_event("Flow file corrupted.", "error")
raise DumpError(v)
if self.o.app:
self.start_app(self.o.app_host, self.o.app_port)
2015-01-05 21:12:38 +00:00
def _readflow(self, paths):
2015-02-05 13:44:45 +00:00
"""
Utitility function that reads a list of flows
or raises a DumpError if that fails.
"""
2011-03-05 22:21:31 +00:00
try:
2015-02-05 13:44:45 +00:00
return flow.read_flows_from_paths(paths)
except flow.FlowReadError as e:
raise DumpError(e.strerror)
2014-03-13 00:04:45 +00:00
def add_event(self, e, level="info"):
2014-11-14 23:52:26 +00:00
needed = dict(error=0, info=1, debug=2).get(level, 1)
if self.o.verbosity >= needed:
self.echo(
e,
fg="red" if level == "error" else None,
dim=(level == "debug"),
err=(level == "error")
)
2015-03-15 02:08:45 +00:00
@staticmethod
def indent(n, text):
l = str(text).strip().splitlines()
2015-03-15 02:08:45 +00:00
pad = " " * n
return "\n".join(pad + i for i in l)
2011-02-17 01:26:50 +00:00
def echo(self, text, indent=None, **style):
if indent:
text = self.indent(indent, text)
click.secho(text, file=self.outfile, **style)
def _echo_message(self, message):
2015-03-15 01:53:05 +00:00
if self.o.flow_detail >= 2:
headers = "\r\n".join(
"{}: {}".format(
click.style(k, fg="blue", bold=True),
click.style(v, fg="blue"))
for k, v in message.headers.fields
)
self.echo(headers, indent=4)
2015-03-15 01:53:05 +00:00
if self.o.flow_detail >= 3:
if message.content == CONTENT_MISSING:
self.echo("(content missing)", indent=4)
elif message.content:
self.echo("")
2015-09-12 11:49:16 +00:00
try:
2015-09-12 11:49:16 +00:00
type, lines = contentviews.get_content_view(
contentviews.get("Auto"),
message.content,
2015-09-12 11:49:16 +00:00
headers=message.headers
)
except ContentViewException:
s = "Content viewer failed: \n" + traceback.format_exc()
self.add_event(s, "debug")
2015-09-12 11:49:16 +00:00
type, lines = contentviews.get_content_view(
contentviews.get("Raw"),
message.content,
2015-09-12 11:49:16 +00:00
headers=message.headers
)
styles = dict(
highlight=dict(bold=True),
offset=dict(fg="blue"),
header=dict(fg="green", bold=True),
text=dict(fg="green")
)
def colorful(line):
yield u" " # we can already indent here
for (style, text) in line:
yield click.style(text, **styles.get(style, {}))
2015-09-12 11:49:16 +00:00
if self.o.flow_detail == 3:
lines_to_echo = itertools.islice(lines, 70)
2015-09-12 11:49:16 +00:00
else:
lines_to_echo = lines
lines_to_echo = list(lines_to_echo)
content = u"\r\n".join(
u"".join(colorful(line)) for line in lines_to_echo
)
2015-09-12 11:49:16 +00:00
self.echo(content)
2015-09-12 11:49:16 +00:00
if next(lines, None):
self.echo("(cut off)", indent=4, dim=True)
2015-03-15 02:08:45 +00:00
if self.o.flow_detail >= 2:
self.echo("")
2015-03-15 01:53:05 +00:00
def _echo_request_line(self, flow):
if flow.request.stickycookie:
stickycookie = click.style("[stickycookie] ", fg="yellow", bold=True)
else:
stickycookie = ""
if flow.client_conn:
client = click.style(flow.client_conn.address.host, bold=True)
else:
client = click.style("[replay]", fg="yellow", bold=True)
method = flow.request.method
method_color=dict(
GET="green",
DELETE="red"
).get(method.upper(), "magenta")
method = click.style(method, fg=method_color, bold=True)
if self.showhost:
url = flow.request.pretty_url
else:
url = flow.request.url
url = click.style(url, bold=True)
line = "{stickycookie}{client} {method} {url}".format(
stickycookie=stickycookie,
client=client,
method=method,
url=url
)
self.echo(line)
def _echo_response_line(self, flow):
if flow.response.is_replay:
replay = click.style("[replay] ", fg="yellow", bold=True)
else:
replay = ""
code = flow.response.status_code
code_color = None
if 200 <= code < 300:
code_color = "green"
elif 300 <= code < 400:
code_color = "magenta"
elif 400 <= code < 600:
code_color = "red"
code = click.style(str(code), fg=code_color, bold=True, blink=(code == 418))
reason = click.style(flow.response.reason, fg=code_color, bold=True)
if flow.response.content == CONTENT_MISSING:
size = "(content missing)"
else:
size = netlib.utils.pretty_size(len(flow.response.content))
size = click.style(size, bold=True)
arrows = click.style("<<", bold=True)
line = "{replay} {arrows} {code} {reason} {size}".format(
replay=replay,
arrows=arrows,
code=code,
reason=reason,
size=size
)
self.echo(line)
def echo_flow(self, f):
2015-03-15 01:53:05 +00:00
if self.o.flow_detail == 0:
return
if f.request:
self._echo_request_line(f)
self._echo_message(f.request)
2015-03-15 01:53:05 +00:00
if f.response:
self._echo_response_line(f)
self._echo_message(f.response)
2015-03-15 01:53:05 +00:00
if f.error:
self.echo(" << {}".format(f.error.msg), bold=True, fg="red")
2015-03-15 01:53:05 +00:00
if self.outfile:
self.outfile.flush()
def _process_flow(self, f):
self.state.delete_flow(f)
if self.filt and not f.match(self.filt):
return
self.echo_flow(f)
def handle_request(self, f):
flow.FlowMaster.handle_request(self, f)
if f:
f.reply()
return f
def handle_response(self, f):
flow.FlowMaster.handle_response(self, f)
2011-02-16 10:03:46 +00:00
if f:
f.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, f):
flow.FlowMaster.handle_error(self, f)
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:
self.shutdown()
return
2011-02-16 09:10:24 +00:00
try:
return flow.FlowMaster.run(self)
except BaseException:
self.shutdown()
raise