2015-03-15 01:53:05 +00:00
|
|
|
from __future__ import absolute_import, print_function
|
2015-03-15 02:08:45 +00:00
|
|
|
import json
|
2014-10-26 04:13:25 +00:00
|
|
|
import sys
|
|
|
|
import os
|
2012-09-23 23:21:12 +00:00
|
|
|
import netlib.utils
|
2014-03-10 21:36:47 +00:00
|
|
|
from . import flow, filt, utils
|
2014-07-21 19:06:55 +00:00
|
|
|
from .protocol import http
|
2010-03-01 01:58:04 +00:00
|
|
|
|
2014-10-26 04:13:25 +00:00
|
|
|
|
|
|
|
class DumpError(Exception):
|
|
|
|
pass
|
2011-02-16 21:18:38 +00:00
|
|
|
|
|
|
|
|
2011-02-16 10:03:46 +00:00
|
|
|
class Options(object):
|
2013-03-02 23:26:20 +00:00
|
|
|
attributes = [
|
2013-07-23 22:32:56 +00:00
|
|
|
"app",
|
2013-12-08 14:46:11 +00:00
|
|
|
"app_host",
|
|
|
|
"app_port",
|
2011-03-09 00:15:31 +00:00
|
|
|
"anticache",
|
2011-07-15 03:21:04 +00:00
|
|
|
"anticomp",
|
2011-03-09 00:15:31 +00:00
|
|
|
"client_replay",
|
2014-09-08 21:34:43 +00:00
|
|
|
"filtstr",
|
2014-03-12 21:39:23 +00:00
|
|
|
"flow_detail",
|
2011-03-09 00:15:31 +00:00
|
|
|
"keepserving",
|
2011-02-20 22:08:35 +00:00
|
|
|
"kill",
|
2011-05-13 22:44:25 +00:00
|
|
|
"no_server",
|
2012-03-10 00:42:10 +00:00
|
|
|
"nopop",
|
2011-03-10 22:56:10 +00:00
|
|
|
"refresh_server_playback",
|
2012-03-17 04:20:34 +00:00
|
|
|
"replacements",
|
2011-05-14 23:54:12 +00:00
|
|
|
"rfile",
|
2011-03-09 00:15:31 +00:00
|
|
|
"rheaders",
|
2012-08-18 12:14:16 +00:00
|
|
|
"setheaders",
|
2011-03-05 00:03:26 +00:00
|
|
|
"server_replay",
|
2013-06-13 14:04:04 +00:00
|
|
|
"scripts",
|
2013-03-17 04:53:39 +00:00
|
|
|
"showhost",
|
2011-03-09 00:15:31 +00:00
|
|
|
"stickycookie",
|
2011-03-20 04:31:54 +00:00
|
|
|
"stickyauth",
|
2014-07-21 19:06:55 +00:00
|
|
|
"stream_large_bodies",
|
2011-02-20 22:08:35 +00:00
|
|
|
"verbosity",
|
2014-12-11 18:21:33 +00:00
|
|
|
"outfile",
|
2014-10-03 10:29:44 +00:00
|
|
|
"replay_ignore_content",
|
|
|
|
"replay_ignore_params",
|
2014-12-18 20:56:27 +00:00
|
|
|
"replay_ignore_payload_params",
|
2015-03-07 16:38:18 +00:00
|
|
|
"replay_ignore_host"
|
2011-02-16 10:03:46 +00:00
|
|
|
]
|
2014-10-26 04:13:25 +00:00
|
|
|
|
2011-02-16 10:03:46 +00:00
|
|
|
def __init__(self, **kwargs):
|
|
|
|
for k, v in kwargs.items():
|
|
|
|
setattr(self, k, v)
|
2013-03-02 23:26:20 +00:00
|
|
|
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-25 08:11:44 +00:00
|
|
|
def str_response(resp):
|
2015-05-30 00:03:28 +00:00
|
|
|
r = "%s %s" % (resp.code, resp.msg)
|
2014-01-31 03:45:39 +00:00
|
|
|
if resp.is_replay:
|
2011-02-25 08:11:44 +00:00
|
|
|
r = "[replay] " + r
|
|
|
|
return r
|
|
|
|
|
|
|
|
|
2014-09-03 14:57:56 +00:00
|
|
|
def str_request(f, showhost):
|
|
|
|
if f.client_conn:
|
|
|
|
c = f.client_conn.address.host
|
2011-03-05 22:21:31 +00:00
|
|
|
else:
|
|
|
|
c = "[replay]"
|
2015-05-30 00:03:28 +00:00
|
|
|
r = "%s %s %s" % (c, f.request.method, f.request.pretty_url(showhost))
|
2014-09-03 14:57:56 +00:00
|
|
|
if f.request.stickycookie:
|
2011-02-25 08:23:44 +00:00
|
|
|
r = "[stickycookie] " + r
|
|
|
|
return r
|
2011-02-25 08:11:44 +00:00
|
|
|
|
|
|
|
|
2011-02-16 09:10:24 +00:00
|
|
|
class DumpMaster(flow.FlowMaster):
|
2014-09-08 21:34:43 +00:00
|
|
|
def __init__(self, server, options, 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
|
2011-05-15 00:23:34 +00:00
|
|
|
self.anticache = options.anticache
|
2011-07-15 03:21:04 +00:00
|
|
|
self.anticomp = options.anticomp
|
2013-03-17 04:43:31 +00:00
|
|
|
self.showhost = options.showhost
|
2014-10-26 04:13:25 +00:00
|
|
|
self.replay_ignore_params = options.replay_ignore_params
|
2014-10-03 10:29:44 +00:00
|
|
|
self.replay_ignore_content = options.replay_ignore_content
|
2015-03-07 16:38:18 +00:00
|
|
|
self.replay_ignore_host = options.replay_ignore_host
|
2011-05-15 00:23:34 +00:00
|
|
|
self.refresh_server_playback = options.refresh_server_playback
|
2014-12-18 20:56:27 +00:00
|
|
|
self.replay_ignore_payload_params = options.replay_ignore_payload_params
|
2010-03-01 01:58:04 +00:00
|
|
|
|
2014-07-21 19:06:55 +00:00
|
|
|
self.set_stream_large_bodies(options.stream_large_bodies)
|
|
|
|
|
2014-09-08 21:34:43 +00:00
|
|
|
if options.filtstr:
|
|
|
|
self.filt = filt.parse(options.filtstr)
|
2011-02-16 21:44:08 +00:00
|
|
|
else:
|
|
|
|
self.filt = None
|
|
|
|
|
2011-02-25 04:32:03 +00:00
|
|
|
if options.stickycookie:
|
|
|
|
self.set_stickycookie(options.stickycookie)
|
|
|
|
|
2011-03-20 04:31:54 +00:00
|
|
|
if options.stickyauth:
|
|
|
|
self.set_stickyauth(options.stickyauth)
|
|
|
|
|
2014-12-11 18:21:33 +00:00
|
|
|
if options.outfile:
|
|
|
|
path = os.path.expanduser(options.outfile[0])
|
2011-02-16 21:18:38 +00:00
|
|
|
try:
|
2014-12-11 18:21:33 +00:00
|
|
|
f = file(path, options.outfile[1])
|
2013-03-13 20:19:43 +00:00
|
|
|
self.start_stream(f, self.filt)
|
2015-05-30 00:03:28 +00:00
|
|
|
except IOError as v:
|
2011-02-16 21:18:38 +00:00
|
|
|
raise DumpError(v.strerror)
|
|
|
|
|
2012-03-17 04:29:25 +00:00
|
|
|
if options.replacements:
|
|
|
|
for i in options.replacements:
|
|
|
|
self.replacehooks.add(*i)
|
2012-03-17 04:20:34 +00:00
|
|
|
|
2012-08-18 12:14:16 +00:00
|
|
|
if options.setheaders:
|
|
|
|
for i in options.setheaders:
|
|
|
|
self.setheaders.add(*i)
|
|
|
|
|
2011-03-05 00:03:26 +00:00
|
|
|
if options.server_replay:
|
2011-03-05 22:21:31 +00:00
|
|
|
self.start_server_playback(
|
|
|
|
self._readflow(options.server_replay),
|
2011-03-06 04:08:56 +00:00
|
|
|
options.kill, options.rheaders,
|
2012-03-10 00:42:10 +00:00
|
|
|
not options.keepserving,
|
2014-10-03 10:29:44 +00:00
|
|
|
options.nopop,
|
|
|
|
options.replay_ignore_params,
|
2014-12-18 20:56:27 +00:00
|
|
|
options.replay_ignore_content,
|
|
|
|
options.replay_ignore_payload_params,
|
2015-03-07 16:38:18 +00:00
|
|
|
options.replay_ignore_host
|
2011-03-05 22:21:31 +00:00
|
|
|
)
|
2011-02-20 20:54:39 +00:00
|
|
|
|
2011-03-05 22:21:31 +00:00
|
|
|
if options.client_replay:
|
2011-03-06 03:54:49 +00:00
|
|
|
self.start_client_playback(
|
|
|
|
self._readflow(options.client_replay),
|
|
|
|
not options.keepserving
|
|
|
|
)
|
2011-03-05 22:21:31 +00:00
|
|
|
|
2013-06-17 14:48:06 +00:00
|
|
|
scripts = options.scripts or []
|
2014-01-12 10:01:59 +00:00
|
|
|
for command in scripts:
|
|
|
|
err = self.load_script(command)
|
2011-08-03 04:36:20 +00:00
|
|
|
if err:
|
|
|
|
raise DumpError(err)
|
2011-03-09 00:15:31 +00:00
|
|
|
|
2011-08-04 21:41:29 +00:00
|
|
|
if options.rfile:
|
|
|
|
try:
|
2015-01-02 00:26:22 +00:00
|
|
|
self.load_flows_file(options.rfile)
|
2015-05-30 00:03:28 +00:00
|
|
|
except flow.FlowReadError as v:
|
2015-01-02 00:26:22 +00:00
|
|
|
self.add_event("Flow file corrupted.", "error")
|
|
|
|
raise DumpError(v)
|
2011-08-04 21:41:29 +00:00
|
|
|
|
2013-07-23 22:32:56 +00:00
|
|
|
if self.o.app:
|
2014-09-13 23:46:01 +00:00
|
|
|
self.start_app(self.o.app_host, self.o.app_port)
|
2013-07-23 22:32:56 +00:00
|
|
|
|
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)
|
2011-02-25 04:32:03 +00:00
|
|
|
|
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)
|
2014-03-12 21:39:23 +00:00
|
|
|
if self.o.verbosity >= needed:
|
2015-03-15 01:53:05 +00:00
|
|
|
print(e, file=self.outfile)
|
2014-03-12 21:39:23 +00:00
|
|
|
self.outfile.flush()
|
2011-07-23 00:57:54 +00:00
|
|
|
|
2015-03-15 02:08:45 +00:00
|
|
|
@staticmethod
|
|
|
|
def indent(n, t):
|
|
|
|
l = str(t).strip().splitlines()
|
|
|
|
pad = " " * n
|
|
|
|
return "\n".join(pad + i for i in l)
|
2011-02-17 01:26:50 +00:00
|
|
|
|
2015-03-15 01:53:05 +00:00
|
|
|
def _print_message(self, message):
|
|
|
|
if self.o.flow_detail >= 2:
|
2015-04-14 22:29:57 +00:00
|
|
|
print(self.indent(4, message.headers.format()), file=self.outfile)
|
2015-03-15 01:53:05 +00:00
|
|
|
if self.o.flow_detail >= 3:
|
|
|
|
if message.content == http.CONTENT_MISSING:
|
|
|
|
print(self.indent(4, "(content missing)"), file=self.outfile)
|
|
|
|
elif message.content:
|
|
|
|
print("", file=self.outfile)
|
|
|
|
content = message.get_decoded_content()
|
|
|
|
if not utils.isBin(content):
|
2015-03-15 02:08:45 +00:00
|
|
|
try:
|
|
|
|
jsn = json.loads(content)
|
2015-05-30 00:03:28 +00:00
|
|
|
print(
|
|
|
|
self.indent(
|
|
|
|
4,
|
|
|
|
json.dumps(
|
|
|
|
jsn,
|
|
|
|
indent=2)),
|
|
|
|
file=self.outfile)
|
2015-03-15 02:08:45 +00:00
|
|
|
except ValueError:
|
|
|
|
print(self.indent(4, content), file=self.outfile)
|
2015-03-15 01:53:05 +00:00
|
|
|
else:
|
|
|
|
d = netlib.utils.hexdump(content)
|
2015-05-30 00:03:28 +00:00
|
|
|
d = "\n".join("%s\t%s %s" % i for i in d)
|
2015-03-15 01:53:05 +00:00
|
|
|
print(self.indent(4, d), file=self.outfile)
|
2015-03-15 02:08:45 +00:00
|
|
|
if self.o.flow_detail >= 2:
|
|
|
|
print("", file=self.outfile)
|
2015-03-15 01:53:05 +00:00
|
|
|
|
2011-03-11 00:06:51 +00:00
|
|
|
def _process_flow(self, f):
|
2013-03-13 20:19:43 +00:00
|
|
|
self.state.delete_flow(f)
|
2011-03-11 00:06:51 +00:00
|
|
|
if self.filt and not f.match(self.filt):
|
2011-08-02 04:52:47 +00:00
|
|
|
return
|
2011-03-11 00:06:51 +00:00
|
|
|
|
2015-03-15 01:53:05 +00:00
|
|
|
if self.o.flow_detail == 0:
|
|
|
|
return
|
|
|
|
|
|
|
|
if f.request:
|
|
|
|
print(str_request(f, self.showhost), file=self.outfile)
|
|
|
|
self._print_message(f.request)
|
|
|
|
|
2011-03-11 00:06:51 +00:00
|
|
|
if f.response:
|
2015-03-15 01:53:05 +00:00
|
|
|
if f.response.content == http.CONTENT_MISSING:
|
|
|
|
sz = "(content missing)"
|
|
|
|
else:
|
2015-04-30 00:18:01 +00:00
|
|
|
sz = netlib.utils.pretty_size(len(f.response.content))
|
2015-05-30 00:03:28 +00:00
|
|
|
print(
|
|
|
|
" << %s %s" %
|
|
|
|
(str_response(
|
|
|
|
f.response),
|
|
|
|
sz),
|
|
|
|
file=self.outfile)
|
2015-03-15 01:53:05 +00:00
|
|
|
self._print_message(f.response)
|
|
|
|
|
|
|
|
if f.error:
|
|
|
|
print(" << {}".format(f.error.msg), file=self.outfile)
|
|
|
|
|
|
|
|
self.outfile.flush()
|
2011-03-11 00:06:51 +00:00
|
|
|
|
2014-09-03 14:57:56 +00:00
|
|
|
def handle_request(self, f):
|
|
|
|
flow.FlowMaster.handle_request(self, f)
|
2013-02-16 23:42:48 +00:00
|
|
|
if f:
|
2014-09-03 14:57:56 +00:00
|
|
|
f.reply()
|
2013-02-16 23:42:48 +00:00
|
|
|
return f
|
|
|
|
|
2014-09-03 14:57:56 +00:00
|
|
|
def handle_response(self, f):
|
|
|
|
flow.FlowMaster.handle_response(self, f)
|
2011-02-16 10:03:46 +00:00
|
|
|
if f:
|
2014-09-03 14:57:56 +00:00
|
|
|
f.reply()
|
2011-03-11 00:06:51 +00:00
|
|
|
self._process_flow(f)
|
2011-03-05 22:21:31 +00:00
|
|
|
return f
|
2011-02-16 21:18:38 +00:00
|
|
|
|
2014-09-03 14:57:56 +00:00
|
|
|
def handle_error(self, f):
|
|
|
|
flow.FlowMaster.handle_error(self, f)
|
2011-03-11 00:06:51 +00:00
|
|
|
if f:
|
|
|
|
self._process_flow(f)
|
|
|
|
return f
|
|
|
|
|
2012-06-09 01:55:55 +00:00
|
|
|
def shutdown(self): # pragma: no cover
|
2012-04-14 22:35:19 +00:00
|
|
|
return flow.FlowMaster.shutdown(self)
|
|
|
|
|
2012-06-09 01:55:55 +00:00
|
|
|
def run(self): # pragma: no cover
|
2011-05-14 23:54:12 +00:00
|
|
|
if self.o.rfile and not self.o.keepserving:
|
2014-02-04 17:40:12 +00:00
|
|
|
self.shutdown()
|
2011-05-14 23:54:12 +00:00
|
|
|
return
|
2011-02-16 09:10:24 +00:00
|
|
|
try:
|
|
|
|
return flow.FlowMaster.run(self)
|
2011-08-02 04:14:33 +00:00
|
|
|
except BaseException:
|
2011-02-17 23:40:45 +00:00
|
|
|
self.shutdown()
|
|
|
|
raise
|