2014-03-10 21:36:47 +00:00
|
|
|
from __future__ import absolute_import
|
2015-05-30 00:03:28 +00:00
|
|
|
import os
|
|
|
|
import traceback
|
|
|
|
import threading
|
|
|
|
import shlex
|
2015-07-24 00:57:56 +00:00
|
|
|
import sys
|
2011-08-03 01:20:36 +00:00
|
|
|
|
2015-05-30 00:03:28 +00:00
|
|
|
|
2011-08-03 01:20:36 +00:00
|
|
|
class ScriptError(Exception):
|
|
|
|
pass
|
|
|
|
|
2011-01-31 00:26:56 +00:00
|
|
|
|
2014-01-11 23:49:19 +00:00
|
|
|
class ScriptContext:
|
2015-09-03 22:45:47 +00:00
|
|
|
"""
|
|
|
|
The script context should be used to interact with the global mitmproxy state from within a
|
|
|
|
script.
|
|
|
|
"""
|
2014-01-11 23:49:19 +00:00
|
|
|
def __init__(self, master):
|
|
|
|
self._master = master
|
|
|
|
|
2014-03-13 00:04:45 +00:00
|
|
|
def log(self, message, level="info"):
|
2014-01-11 23:49:19 +00:00
|
|
|
"""
|
|
|
|
Logs an event.
|
|
|
|
|
2014-03-13 00:04:45 +00:00
|
|
|
By default, only events with level "error" get displayed. This can be controlled with the "-v" switch.
|
|
|
|
How log messages are handled depends on the front-end. mitmdump will print them to stdout,
|
|
|
|
mitmproxy sends output to the eventlog for display ("e" keyboard shortcut).
|
2014-01-11 23:49:19 +00:00
|
|
|
"""
|
2014-03-13 00:04:45 +00:00
|
|
|
self._master.add_event(message, level)
|
2014-01-11 23:49:19 +00:00
|
|
|
|
2015-02-07 15:37:59 +00:00
|
|
|
def kill_flow(self, f):
|
|
|
|
"""
|
|
|
|
Kills a flow immediately. No further data will be sent to the client or the server.
|
|
|
|
"""
|
|
|
|
f.kill(self._master)
|
|
|
|
|
2014-01-11 23:49:19 +00:00
|
|
|
def duplicate_flow(self, f):
|
|
|
|
"""
|
|
|
|
Returns a duplicate of the specified flow. The flow is also
|
|
|
|
injected into the current state, and is ready for editing, replay,
|
|
|
|
etc.
|
|
|
|
"""
|
|
|
|
self._master.pause_scripts = True
|
|
|
|
f = self._master.duplicate_flow(f)
|
|
|
|
self._master.pause_scripts = False
|
|
|
|
return f
|
|
|
|
|
|
|
|
def replay_request(self, f):
|
|
|
|
"""
|
|
|
|
Replay the request on the current flow. The response will be added
|
|
|
|
to the flow object.
|
|
|
|
"""
|
2015-02-07 15:26:19 +00:00
|
|
|
return self._master.replay_request(f, block=True, run_scripthooks=False)
|
2014-01-11 23:49:19 +00:00
|
|
|
|
2014-09-08 14:02:31 +00:00
|
|
|
@property
|
|
|
|
def app_registry(self):
|
|
|
|
return self._master.apps
|
|
|
|
|
2014-01-11 23:49:19 +00:00
|
|
|
|
2011-08-03 01:20:36 +00:00
|
|
|
class Script:
|
2011-01-31 00:26:56 +00:00
|
|
|
"""
|
2015-07-24 00:57:56 +00:00
|
|
|
Script object representing an inline script.
|
2011-01-31 00:26:56 +00:00
|
|
|
"""
|
2015-05-30 00:03:28 +00:00
|
|
|
|
2014-01-12 10:01:59 +00:00
|
|
|
def __init__(self, command, master):
|
2015-07-24 00:57:56 +00:00
|
|
|
self.args = self.parse_command(command)
|
2014-01-11 23:49:19 +00:00
|
|
|
self.ctx = ScriptContext(master)
|
2011-08-03 01:20:36 +00:00
|
|
|
self.ns = None
|
2014-01-12 00:59:32 +00:00
|
|
|
self.load()
|
2011-08-03 01:20:36 +00:00
|
|
|
|
2014-01-13 01:15:17 +00:00
|
|
|
@classmethod
|
2015-07-24 00:57:56 +00:00
|
|
|
def parse_command(cls, command):
|
2014-09-07 13:57:36 +00:00
|
|
|
if not command or not command.strip():
|
|
|
|
raise ScriptError("Empty script command.")
|
2014-08-08 00:27:28 +00:00
|
|
|
if os.name == "nt": # Windows: escape all backslashes in the path.
|
|
|
|
backslashes = shlex.split(command, posix=False)[0].count("\\")
|
|
|
|
command = command.replace("\\", "\\\\", backslashes)
|
2014-08-06 23:30:47 +00:00
|
|
|
args = shlex.split(command)
|
2014-01-13 01:15:17 +00:00
|
|
|
args[0] = os.path.expanduser(args[0])
|
|
|
|
if not os.path.exists(args[0]):
|
2015-05-30 00:03:28 +00:00
|
|
|
raise ScriptError(
|
|
|
|
("Script file not found: %s.\r\n"
|
2015-06-01 23:58:16 +00:00
|
|
|
"If your script path contains spaces, "
|
2015-05-30 00:03:28 +00:00
|
|
|
"make sure to wrap it in additional quotes, e.g. -s \"'./foo bar/baz.py' --args\".") %
|
|
|
|
args[0])
|
2015-09-30 22:55:43 +00:00
|
|
|
elif os.path.isdir(args[0]):
|
2014-01-13 01:15:17 +00:00
|
|
|
raise ScriptError("Not a file: %s" % args[0])
|
|
|
|
return args
|
|
|
|
|
2011-08-03 01:20:36 +00:00
|
|
|
def load(self):
|
|
|
|
"""
|
2015-07-24 00:57:56 +00:00
|
|
|
Loads an inline script.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
The return value of self.run("start", ...)
|
2011-08-03 01:20:36 +00:00
|
|
|
|
2015-07-24 00:57:56 +00:00
|
|
|
Raises:
|
|
|
|
ScriptError on failure
|
2011-08-03 01:20:36 +00:00
|
|
|
"""
|
2015-07-24 00:57:56 +00:00
|
|
|
if self.ns is not None:
|
|
|
|
self.unload()
|
|
|
|
script_dir = os.path.dirname(os.path.abspath(self.args[0]))
|
2015-09-10 08:30:57 +00:00
|
|
|
ns = {'__file__': os.path.abspath(self.args[0])}
|
2015-07-24 00:57:56 +00:00
|
|
|
sys.path.append(script_dir)
|
2011-08-03 01:20:36 +00:00
|
|
|
try:
|
2015-07-24 00:57:56 +00:00
|
|
|
execfile(self.args[0], ns, ns)
|
|
|
|
except Exception as e:
|
|
|
|
# Python 3: use exception chaining, https://www.python.org/dev/peps/pep-3134/
|
|
|
|
raise ScriptError(traceback.format_exc(e))
|
|
|
|
sys.path.pop()
|
2013-06-17 14:48:06 +00:00
|
|
|
self.ns = ns
|
2015-07-24 00:57:56 +00:00
|
|
|
return self.run("start", self.args)
|
2013-06-13 14:04:04 +00:00
|
|
|
|
|
|
|
def unload(self):
|
2015-07-24 00:57:56 +00:00
|
|
|
ret = self.run("done")
|
|
|
|
self.ns = None
|
|
|
|
return ret
|
2011-08-03 01:20:36 +00:00
|
|
|
|
|
|
|
def run(self, name, *args, **kwargs):
|
|
|
|
"""
|
2015-07-24 00:57:56 +00:00
|
|
|
Runs an inline script hook.
|
2011-08-03 01:20:36 +00:00
|
|
|
|
|
|
|
Returns:
|
2015-07-24 00:57:56 +00:00
|
|
|
The return value of the method.
|
|
|
|
None, if the script does not provide the method.
|
2011-01-31 00:26:56 +00:00
|
|
|
|
2015-07-24 00:57:56 +00:00
|
|
|
Raises:
|
|
|
|
ScriptError if there was an exception.
|
2011-08-03 01:20:36 +00:00
|
|
|
"""
|
|
|
|
f = self.ns.get(name)
|
|
|
|
if f:
|
|
|
|
try:
|
2015-07-24 00:57:56 +00:00
|
|
|
return f(self.ctx, *args, **kwargs)
|
|
|
|
except Exception as e:
|
|
|
|
raise ScriptError(traceback.format_exc(e))
|
2011-08-03 01:20:36 +00:00
|
|
|
else:
|
2015-07-24 00:57:56 +00:00
|
|
|
return None
|
2013-12-15 01:43:16 +00:00
|
|
|
|
|
|
|
|
2014-09-06 10:39:23 +00:00
|
|
|
class ReplyProxy(object):
|
2015-07-04 13:46:45 +00:00
|
|
|
def __init__(self, original_reply, script_thread):
|
2014-09-06 10:39:23 +00:00
|
|
|
self.original_reply = original_reply
|
2015-07-04 13:46:45 +00:00
|
|
|
self.script_thread = script_thread
|
|
|
|
self._ignore_call = True
|
|
|
|
self.lock = threading.Lock()
|
2014-09-06 10:39:23 +00:00
|
|
|
|
|
|
|
def __call__(self, *args, **kwargs):
|
|
|
|
with self.lock:
|
2015-07-04 13:46:45 +00:00
|
|
|
if self._ignore_call:
|
|
|
|
self.script_thread.start()
|
|
|
|
self._ignore_call = False
|
2014-09-06 10:39:23 +00:00
|
|
|
return
|
|
|
|
self.original_reply(*args, **kwargs)
|
|
|
|
|
2015-05-30 00:03:28 +00:00
|
|
|
def __getattr__(self, k):
|
2014-09-06 10:39:23 +00:00
|
|
|
return getattr(self.original_reply, k)
|
|
|
|
|
|
|
|
|
2014-08-17 21:49:08 +00:00
|
|
|
def _handle_concurrent_reply(fn, o, *args, **kwargs):
|
2015-07-04 13:46:45 +00:00
|
|
|
# Make first call to o.reply a no op and start the script thread.
|
|
|
|
# We must not start the script thread before, as this may lead to a nasty race condition
|
|
|
|
# where the script thread replies a different response before the normal reply, which then gets swallowed.
|
2014-08-17 21:49:08 +00:00
|
|
|
|
2013-12-15 01:43:16 +00:00
|
|
|
def run():
|
|
|
|
fn(*args, **kwargs)
|
2015-05-30 00:03:28 +00:00
|
|
|
# If the script did not call .reply(), we have to do it now.
|
|
|
|
reply_proxy()
|
2015-07-04 13:46:45 +00:00
|
|
|
|
|
|
|
script_thread = ScriptThread(target=run)
|
|
|
|
|
|
|
|
reply_proxy = ReplyProxy(o.reply, script_thread)
|
|
|
|
o.reply = reply_proxy
|
2015-02-07 15:26:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ScriptThread(threading.Thread):
|
|
|
|
name = "ScriptThread"
|
2013-12-15 01:43:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
def concurrent(fn):
|
2015-05-30 00:03:28 +00:00
|
|
|
if fn.func_name in (
|
|
|
|
"request",
|
|
|
|
"response",
|
|
|
|
"error",
|
|
|
|
"clientconnect",
|
|
|
|
"serverconnect",
|
2015-09-07 14:05:16 +00:00
|
|
|
"clientdisconnect",
|
|
|
|
"next_layer"):
|
2014-09-03 14:57:56 +00:00
|
|
|
def _concurrent(ctx, obj):
|
|
|
|
_handle_concurrent_reply(fn, obj, ctx, obj)
|
2015-07-24 00:57:56 +00:00
|
|
|
|
2013-12-15 01:43:16 +00:00
|
|
|
return _concurrent
|
2015-05-30 00:03:28 +00:00
|
|
|
raise NotImplementedError(
|
2015-07-24 00:57:56 +00:00
|
|
|
"Concurrent decorator not supported for '%s' method." % fn.func_name)
|