2012-02-23 02:52:01 +00:00
|
|
|
# Copyright (C) 2012 Aldo Cortesi
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2011-08-18 21:22:25 +00:00
|
|
|
import sys, os, string, socket, time
|
2011-08-03 10:38:23 +00:00
|
|
|
import shutil, tempfile, threading
|
2012-08-17 17:04:39 +00:00
|
|
|
import SocketServer
|
2012-06-13 06:16:47 +00:00
|
|
|
from OpenSSL import SSL
|
2012-06-30 12:15:03 +00:00
|
|
|
from netlib import odict, tcp, http, wsgi, certutils, http_status
|
|
|
|
import utils, flow, version, platform, controller
|
2012-12-30 09:41:58 +00:00
|
|
|
import authentication
|
2010-02-16 04:09:07 +00:00
|
|
|
|
2013-02-23 01:08:28 +00:00
|
|
|
KILL = 0
|
|
|
|
|
2010-02-16 04:09:07 +00:00
|
|
|
|
|
|
|
class ProxyError(Exception):
|
2012-12-30 09:41:58 +00:00
|
|
|
def __init__(self, code, msg, headers=None):
|
|
|
|
self.code, self.msg, self.headers = code, msg, headers
|
2010-02-16 04:09:07 +00:00
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return "ProxyError(%s, %s)"%(self.code, self.msg)
|
|
|
|
|
|
|
|
|
2013-02-16 23:42:48 +00:00
|
|
|
class Log:
|
2012-06-30 12:15:03 +00:00
|
|
|
def __init__(self, msg):
|
|
|
|
self.msg = msg
|
|
|
|
|
|
|
|
|
2011-09-09 02:49:34 +00:00
|
|
|
class ProxyConfig:
|
2013-01-05 12:18:47 +00:00
|
|
|
def __init__(self, certfile = None, cacert = None, clientcerts = None, no_upstream_cert=False, body_size_limit = None, reverse_proxy=None, transparent_proxy=None, certdir = None, authenticator=None):
|
2012-06-14 21:47:04 +00:00
|
|
|
assert not (reverse_proxy and transparent_proxy)
|
2011-02-08 17:00:59 +00:00
|
|
|
self.certfile = certfile
|
|
|
|
self.cacert = cacert
|
2012-05-23 21:09:03 +00:00
|
|
|
self.clientcerts = clientcerts
|
2012-07-03 10:56:25 +00:00
|
|
|
self.no_upstream_cert = no_upstream_cert
|
2011-09-09 03:27:31 +00:00
|
|
|
self.body_size_limit = body_size_limit
|
2012-02-18 01:45:22 +00:00
|
|
|
self.reverse_proxy = reverse_proxy
|
2012-06-14 21:47:04 +00:00
|
|
|
self.transparent_proxy = transparent_proxy
|
2012-12-30 09:41:58 +00:00
|
|
|
self.authenticator = authenticator
|
2013-01-05 12:16:08 +00:00
|
|
|
self.certstore = certutils.CertStore(certdir)
|
2013-01-04 01:19:32 +00:00
|
|
|
|
2013-01-06 03:44:12 +00:00
|
|
|
|
2012-06-18 21:58:50 +00:00
|
|
|
class ServerConnection(tcp.TCPClient):
|
2013-02-24 09:24:21 +00:00
|
|
|
def __init__(self, config, scheme, host, port, sni):
|
2012-06-25 03:53:26 +00:00
|
|
|
tcp.TCPClient.__init__(self, host, port)
|
|
|
|
self.config = config
|
2013-02-24 09:24:21 +00:00
|
|
|
self.scheme, self.sni = scheme, sni
|
2012-06-10 04:02:48 +00:00
|
|
|
self.requestcount = 0
|
2010-02-16 04:09:07 +00:00
|
|
|
|
2013-02-24 09:24:21 +00:00
|
|
|
def connect(self):
|
2012-06-25 03:53:26 +00:00
|
|
|
tcp.TCPClient.connect(self)
|
2013-02-24 09:24:21 +00:00
|
|
|
if self.scheme == "https":
|
2012-06-25 03:53:26 +00:00
|
|
|
clientcert = None
|
|
|
|
if self.config.clientcerts:
|
2013-01-18 04:08:30 +00:00
|
|
|
path = os.path.join(self.config.clientcerts, self.host.encode("idna")) + ".pem"
|
2013-01-06 03:44:12 +00:00
|
|
|
if os.path.exists(path):
|
2012-06-25 03:53:26 +00:00
|
|
|
clientcert = path
|
2012-07-01 00:10:32 +00:00
|
|
|
try:
|
2013-02-24 09:24:21 +00:00
|
|
|
self.convert_to_ssl(cert=clientcert, sni=self.sni)
|
2012-07-01 00:10:32 +00:00
|
|
|
except tcp.NetLibError, v:
|
|
|
|
raise ProxyError(400, str(v))
|
2012-06-25 03:53:26 +00:00
|
|
|
|
2012-06-09 20:13:50 +00:00
|
|
|
def send(self, request):
|
2012-06-10 04:02:48 +00:00
|
|
|
self.requestcount += 1
|
2013-01-06 03:44:12 +00:00
|
|
|
d = request._assemble()
|
|
|
|
if not d:
|
|
|
|
raise ProxyError(502, "Cannot transmit an incomplete request.")
|
2013-01-28 08:59:03 +00:00
|
|
|
self.wfile.write(d)
|
|
|
|
self.wfile.flush()
|
2010-02-16 04:09:07 +00:00
|
|
|
|
|
|
|
def terminate(self):
|
|
|
|
try:
|
2013-02-28 20:05:39 +00:00
|
|
|
self.wfile.flush()
|
2012-06-16 04:22:51 +00:00
|
|
|
self.connection.close()
|
2010-02-16 04:09:07 +00:00
|
|
|
except IOError:
|
|
|
|
pass
|
|
|
|
|
2013-01-28 22:35:57 +00:00
|
|
|
|
2013-02-24 04:35:24 +00:00
|
|
|
class RequestReplayThread(threading.Thread):
|
|
|
|
def __init__(self, config, flow, masterq):
|
|
|
|
self.config, self.flow, self.channel = config, flow, controller.Channel(masterq)
|
|
|
|
threading.Thread.__init__(self)
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
try:
|
|
|
|
r = self.flow.request
|
2013-02-24 09:24:21 +00:00
|
|
|
server = ServerConnection(self.config, r.scheme, r.host, r.port, r.host)
|
|
|
|
server.connect()
|
2013-02-24 04:35:24 +00:00
|
|
|
server.send(r)
|
|
|
|
httpversion, code, msg, headers, content = http.read_response(
|
|
|
|
server.rfile, r.method, self.config.body_size_limit
|
|
|
|
)
|
|
|
|
response = flow.Response(
|
|
|
|
self.flow.request, httpversion, code, msg, headers, content, server.cert
|
|
|
|
)
|
|
|
|
self.channel.ask(response)
|
|
|
|
except (ProxyError, http.HttpError, tcp.NetLibError), v:
|
|
|
|
err = flow.Error(self.flow.request, str(v))
|
|
|
|
self.channel.ask(err)
|
|
|
|
|
|
|
|
|
2013-02-28 20:05:39 +00:00
|
|
|
class HandleSNI:
|
|
|
|
def __init__(self, handler, client_conn, host, port, cert, key):
|
|
|
|
self.handler, self.client_conn, self.host, self.port = handler, client_conn, host, port
|
|
|
|
self.cert, self.key = cert, key
|
|
|
|
|
|
|
|
def __call__(self, connection):
|
|
|
|
try:
|
|
|
|
sn = connection.get_servername()
|
|
|
|
if sn:
|
|
|
|
self.handler.get_server_connection(self.client_conn, "https", self.host, self.port, sn)
|
|
|
|
new_context = SSL.Context(SSL.TLSv1_METHOD)
|
|
|
|
new_context.use_privatekey_file(self.key)
|
|
|
|
new_context.use_certificate_file(self.cert)
|
|
|
|
connection.set_context(new_context)
|
|
|
|
self.handler.sni = sn.decode("utf8").encode("idna")
|
|
|
|
# An unhandled exception in this method will core dump PyOpenSSL, so
|
|
|
|
# make dang sure it doesn't happen.
|
2013-03-02 01:52:05 +00:00
|
|
|
except Exception, e: # pragma: no cover
|
2013-02-28 20:05:39 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
2012-06-18 21:58:50 +00:00
|
|
|
class ProxyHandler(tcp.BaseHandler):
|
2013-02-16 23:42:48 +00:00
|
|
|
def __init__(self, config, connection, client_address, server, channel, server_version):
|
|
|
|
self.channel, self.server_version = channel, server_version
|
2012-06-10 04:02:48 +00:00
|
|
|
self.config = config
|
|
|
|
self.proxy_connect_state = None
|
2012-06-27 00:12:11 +00:00
|
|
|
self.sni = None
|
2013-02-24 09:24:21 +00:00
|
|
|
self.server_conn = None
|
2012-06-18 21:58:50 +00:00
|
|
|
tcp.BaseHandler.__init__(self, connection, client_address, server)
|
2010-02-16 04:09:07 +00:00
|
|
|
|
2013-02-24 09:24:21 +00:00
|
|
|
def get_server_connection(self, cc, scheme, host, port, sni):
|
2013-03-02 02:06:49 +00:00
|
|
|
"""
|
|
|
|
When SNI is in play, this means we have an SSL-encrypted
|
|
|
|
connection, which means that the entire handler is dedicated to a
|
|
|
|
single server connection - no multiplexing. If this assumption ever
|
|
|
|
breaks, we'll have to do something different with the SNI host
|
|
|
|
variable on the handler object.
|
|
|
|
"""
|
2013-02-24 09:24:21 +00:00
|
|
|
sc = self.server_conn
|
2013-03-02 01:52:05 +00:00
|
|
|
if not sni:
|
|
|
|
sni = host
|
2013-02-24 09:24:21 +00:00
|
|
|
if sc and (scheme, host, port, sni) != (sc.scheme, sc.host, sc.port, sc.sni):
|
|
|
|
sc.terminate()
|
|
|
|
self.server_conn = None
|
|
|
|
self.log(
|
|
|
|
cc,
|
|
|
|
"switching connection", [
|
|
|
|
"%s://%s:%s (sni=%s) -> %s://%s:%s (sni=%s)"%(
|
|
|
|
scheme, host, port, sni,
|
|
|
|
sc.scheme, sc.host, sc.port, sc.sni
|
|
|
|
)
|
|
|
|
]
|
|
|
|
)
|
|
|
|
if not self.server_conn:
|
|
|
|
try:
|
|
|
|
self.server_conn = ServerConnection(self.config, scheme, host, port, sni)
|
|
|
|
self.server_conn.connect()
|
|
|
|
except tcp.NetLibError, v:
|
|
|
|
raise ProxyError(502, v)
|
|
|
|
return self.server_conn
|
|
|
|
|
|
|
|
def del_server_connection(self):
|
|
|
|
self.server_conn = None
|
|
|
|
|
2010-02-16 04:09:07 +00:00
|
|
|
def handle(self):
|
2011-08-03 10:38:23 +00:00
|
|
|
cc = flow.ClientConnect(self.client_address)
|
2012-06-30 12:15:03 +00:00
|
|
|
self.log(cc, "connect")
|
2013-02-16 23:42:48 +00:00
|
|
|
self.channel.ask(cc)
|
2012-06-10 04:02:48 +00:00
|
|
|
while self.handle_request(cc) and not cc.close:
|
|
|
|
pass
|
|
|
|
cc.close = True
|
2012-06-30 12:15:03 +00:00
|
|
|
|
2013-02-16 23:42:48 +00:00
|
|
|
cd = flow.ClientDisconnect(cc)
|
2012-06-30 12:15:03 +00:00
|
|
|
self.log(
|
|
|
|
cc, "disconnect",
|
|
|
|
[
|
|
|
|
"handled %s requests"%cc.requestcount]
|
|
|
|
)
|
2013-02-23 01:08:28 +00:00
|
|
|
self.channel.tell(cd)
|
2010-11-12 15:01:17 +00:00
|
|
|
|
|
|
|
def handle_request(self, cc):
|
2010-02-16 04:09:07 +00:00
|
|
|
try:
|
2012-06-10 04:02:48 +00:00
|
|
|
request, err = None, None
|
2012-06-23 03:08:01 +00:00
|
|
|
request = self.read_request(cc)
|
2010-11-12 15:01:17 +00:00
|
|
|
if request is None:
|
|
|
|
return
|
2011-07-23 01:37:06 +00:00
|
|
|
cc.requestcount += 1
|
2011-02-16 09:37:04 +00:00
|
|
|
|
2012-04-23 21:43:14 +00:00
|
|
|
app = self.server.apps.get(request)
|
|
|
|
if app:
|
2012-07-10 19:16:06 +00:00
|
|
|
err = app.serve(request, self.wfile)
|
|
|
|
if err:
|
2012-07-24 04:18:22 +00:00
|
|
|
self.log(cc, "Error in wsgi app.", err.split("\n"))
|
2012-07-10 19:16:06 +00:00
|
|
|
return
|
2010-11-12 12:18:42 +00:00
|
|
|
else:
|
2013-02-23 01:08:28 +00:00
|
|
|
request_reply = self.channel.ask(request)
|
|
|
|
if request_reply == KILL:
|
2012-04-23 21:43:14 +00:00
|
|
|
return
|
2013-02-23 01:08:28 +00:00
|
|
|
elif isinstance(request_reply, flow.Response):
|
2012-04-23 21:43:14 +00:00
|
|
|
request = False
|
2013-02-23 01:08:28 +00:00
|
|
|
response = request_reply
|
|
|
|
response_reply = self.channel.ask(response)
|
2012-04-23 21:43:14 +00:00
|
|
|
else:
|
2013-02-23 01:08:28 +00:00
|
|
|
request = request_reply
|
2012-06-09 20:13:50 +00:00
|
|
|
if self.config.reverse_proxy:
|
|
|
|
scheme, host, port = self.config.reverse_proxy
|
|
|
|
else:
|
2012-06-09 22:10:46 +00:00
|
|
|
scheme, host, port = request.scheme, request.host, request.port
|
2013-02-24 01:04:56 +00:00
|
|
|
|
|
|
|
# If we've already pumped a request over this connection,
|
|
|
|
# it's possible that the server has timed out. If this is
|
|
|
|
# the case, we want to reconnect without sending an error
|
|
|
|
# to the client.
|
|
|
|
while 1:
|
2013-03-02 01:52:05 +00:00
|
|
|
sc = self.get_server_connection(cc, scheme, host, port, self.sni)
|
2013-02-24 04:35:24 +00:00
|
|
|
sc.send(request)
|
|
|
|
sc.rfile.reset_timestamps()
|
2013-02-24 01:04:56 +00:00
|
|
|
try:
|
|
|
|
httpversion, code, msg, headers, content = http.read_response(
|
|
|
|
sc.rfile,
|
|
|
|
request.method,
|
|
|
|
self.config.body_size_limit
|
|
|
|
)
|
|
|
|
except http.HttpErrorConnClosed, v:
|
2013-02-24 09:24:21 +00:00
|
|
|
self.del_server_connection()
|
2013-02-24 01:04:56 +00:00
|
|
|
if sc.requestcount > 1:
|
|
|
|
continue
|
|
|
|
else:
|
|
|
|
raise
|
|
|
|
else:
|
|
|
|
break
|
|
|
|
|
2012-06-24 10:01:11 +00:00
|
|
|
response = flow.Response(
|
2013-01-28 21:55:19 +00:00
|
|
|
request, httpversion, code, msg, headers, content, sc.cert,
|
|
|
|
sc.rfile.first_byte_timestamp, utils.timestamp()
|
2012-06-24 10:01:11 +00:00
|
|
|
)
|
2013-02-23 01:08:28 +00:00
|
|
|
response_reply = self.channel.ask(response)
|
2013-02-23 03:34:59 +00:00
|
|
|
# Not replying to the server invalidates the server
|
|
|
|
# connection, so we terminate.
|
2013-02-23 01:08:28 +00:00
|
|
|
if response_reply == KILL:
|
2013-01-28 21:55:19 +00:00
|
|
|
sc.terminate()
|
2013-02-23 01:08:28 +00:00
|
|
|
|
|
|
|
if response_reply == KILL:
|
2012-06-10 04:02:48 +00:00
|
|
|
return
|
2013-02-23 01:08:28 +00:00
|
|
|
else:
|
|
|
|
response = response_reply
|
|
|
|
self.send_response(response)
|
|
|
|
if request and http.request_connection_close(request.httpversion, request.headers):
|
|
|
|
return
|
|
|
|
# We could keep the client connection when the server
|
|
|
|
# connection needs to go away. However, we want to mimic
|
|
|
|
# behaviour as closely as possible to the client, so we
|
|
|
|
# disconnect.
|
|
|
|
if http.response_connection_close(response.httpversion, response.headers):
|
|
|
|
return
|
2012-07-08 11:49:44 +00:00
|
|
|
except (IOError, ProxyError, http.HttpError, tcp.NetLibDisconnect), e:
|
|
|
|
if hasattr(e, "code"):
|
2012-06-30 12:15:03 +00:00
|
|
|
cc.error = "%s: %s"%(e.code, e.msg)
|
2012-07-08 11:49:44 +00:00
|
|
|
else:
|
|
|
|
cc.error = str(e)
|
2012-06-30 12:15:03 +00:00
|
|
|
|
2011-07-23 01:37:06 +00:00
|
|
|
if request:
|
2012-06-30 12:15:03 +00:00
|
|
|
err = flow.Error(request, cc.error)
|
2013-02-16 23:42:48 +00:00
|
|
|
self.channel.ask(err)
|
2012-06-30 12:15:03 +00:00
|
|
|
self.log(
|
|
|
|
cc, cc.error,
|
|
|
|
["url: %s"%request.get_url()]
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
self.log(cc, cc.error)
|
|
|
|
|
|
|
|
if isinstance(e, ProxyError):
|
2012-12-30 09:41:58 +00:00
|
|
|
self.send_error(e.code, e.msg, e.headers)
|
2012-06-10 04:02:48 +00:00
|
|
|
else:
|
|
|
|
return True
|
2010-02-16 04:09:07 +00:00
|
|
|
|
2012-06-30 12:15:03 +00:00
|
|
|
def log(self, cc, msg, subs=()):
|
|
|
|
msg = [
|
|
|
|
"%s:%s: "%cc.address + msg
|
|
|
|
]
|
|
|
|
for i in subs:
|
|
|
|
msg.append(" -> "+i)
|
|
|
|
msg = "\n".join(msg)
|
|
|
|
l = Log(msg)
|
2013-02-23 01:08:28 +00:00
|
|
|
self.channel.tell(l)
|
2012-06-30 12:15:03 +00:00
|
|
|
|
2013-02-28 20:05:39 +00:00
|
|
|
def find_cert(self, cc, host, port, sni):
|
2011-02-19 23:53:42 +00:00
|
|
|
if self.config.certfile:
|
|
|
|
return self.config.certfile
|
2011-02-08 17:00:59 +00:00
|
|
|
else:
|
2012-02-27 02:05:45 +00:00
|
|
|
sans = []
|
2012-07-03 10:56:25 +00:00
|
|
|
if not self.config.no_upstream_cert:
|
2013-02-28 20:05:39 +00:00
|
|
|
conn = self.get_server_connection(cc, "https", host, port, sni)
|
|
|
|
sans = conn.cert.altnames
|
|
|
|
host = conn.cert.cn.decode("utf8").encode("idna")
|
2013-01-05 12:16:08 +00:00
|
|
|
ret = self.config.certstore.get_cert(host, sans, self.config.cacert)
|
2011-02-19 23:53:42 +00:00
|
|
|
if not ret:
|
2011-09-09 02:49:34 +00:00
|
|
|
raise ProxyError(502, "mitmproxy: Unable to generate dummy cert.")
|
2011-02-19 23:53:42 +00:00
|
|
|
return ret
|
2011-02-08 17:00:59 +00:00
|
|
|
|
2012-06-26 11:51:38 +00:00
|
|
|
def get_line(self, fp):
|
|
|
|
"""
|
|
|
|
Get a line, possibly preceded by a blank.
|
|
|
|
"""
|
|
|
|
line = fp.readline()
|
2010-11-12 15:01:17 +00:00
|
|
|
if line == "\r\n" or line == "\n": # Possible leftover from previous message
|
2012-06-26 11:51:38 +00:00
|
|
|
line = fp.readline()
|
|
|
|
return line
|
2012-06-09 09:27:43 +00:00
|
|
|
|
2013-01-28 09:26:25 +00:00
|
|
|
def read_request_transparent(self, client_conn):
|
|
|
|
orig = self.config.transparent_proxy["resolver"].original_addr(self.connection)
|
|
|
|
if not orig:
|
|
|
|
raise ProxyError(502, "Transparent mode failure: could not resolve original destination.")
|
|
|
|
host, port = orig
|
|
|
|
if not self.ssl_established and (port in self.config.transparent_proxy["sslports"]):
|
|
|
|
scheme = "https"
|
2013-02-28 20:05:39 +00:00
|
|
|
dummycert = self.find_cert(client_conn, host, port, host)
|
2013-01-28 09:26:25 +00:00
|
|
|
try:
|
2013-02-28 20:05:39 +00:00
|
|
|
sni = HandleSNI(
|
|
|
|
self, client_conn, host, port,
|
|
|
|
dummycert, self.config.certfile or self.config.cacert
|
|
|
|
)
|
|
|
|
self.convert_to_ssl(dummycert, self.config.certfile or self.config.cacert, handle_sni=sni)
|
2013-01-28 09:26:25 +00:00
|
|
|
except tcp.NetLibError, v:
|
|
|
|
raise ProxyError(400, str(v))
|
|
|
|
else:
|
|
|
|
scheme = "http"
|
|
|
|
line = self.get_line(self.rfile)
|
|
|
|
if line == "":
|
|
|
|
return None
|
|
|
|
r = http.parse_init_http(line)
|
|
|
|
if not r:
|
|
|
|
raise ProxyError(400, "Bad HTTP request line: %s"%repr(line))
|
|
|
|
method, path, httpversion = r
|
|
|
|
headers = self.read_headers(authenticate=False)
|
|
|
|
content = http.read_http_body_request(
|
|
|
|
self.rfile, self.wfile, headers, httpversion, self.config.body_size_limit
|
|
|
|
)
|
|
|
|
return flow.Request(
|
|
|
|
client_conn,httpversion, host, port, scheme, method, path, headers, content,
|
|
|
|
self.rfile.first_byte_timestamp, utils.timestamp()
|
|
|
|
)
|
|
|
|
|
|
|
|
def read_request_proxy(self, client_conn):
|
|
|
|
line = self.get_line(self.rfile)
|
|
|
|
if line == "":
|
|
|
|
return None
|
|
|
|
if http.parse_init_connect(line):
|
|
|
|
r = http.parse_init_connect(line)
|
|
|
|
if not r:
|
|
|
|
raise ProxyError(400, "Bad HTTP request line: %s"%repr(line))
|
|
|
|
host, port, httpversion = r
|
|
|
|
|
|
|
|
headers = self.read_headers(authenticate=True)
|
|
|
|
|
|
|
|
self.wfile.write(
|
|
|
|
'HTTP/1.1 200 Connection established\r\n' +
|
|
|
|
('Proxy-agent: %s\r\n'%self.server_version) +
|
|
|
|
'\r\n'
|
|
|
|
)
|
|
|
|
self.wfile.flush()
|
2013-03-02 01:52:05 +00:00
|
|
|
dummycert = self.find_cert(client_conn, host, port, host)
|
2013-01-28 09:26:25 +00:00
|
|
|
try:
|
2013-03-02 01:52:05 +00:00
|
|
|
sni = HandleSNI(
|
|
|
|
self, client_conn, host, port,
|
|
|
|
dummycert, self.config.certfile or self.config.cacert
|
|
|
|
)
|
|
|
|
self.convert_to_ssl(dummycert, self.config.certfile or self.config.cacert, handle_sni=sni)
|
2013-01-28 09:26:25 +00:00
|
|
|
except tcp.NetLibError, v:
|
|
|
|
raise ProxyError(400, str(v))
|
|
|
|
self.proxy_connect_state = (host, port, httpversion)
|
|
|
|
line = self.rfile.readline(line)
|
|
|
|
|
|
|
|
if self.proxy_connect_state:
|
2012-06-26 08:49:34 +00:00
|
|
|
r = http.parse_init_http(line)
|
|
|
|
if not r:
|
2012-06-30 12:15:03 +00:00
|
|
|
raise ProxyError(400, "Bad HTTP request line: %s"%repr(line))
|
2012-06-26 08:49:34 +00:00
|
|
|
method, path, httpversion = r
|
2012-12-30 09:41:58 +00:00
|
|
|
headers = self.read_headers(authenticate=False)
|
2013-01-28 09:26:25 +00:00
|
|
|
|
|
|
|
host, port, _ = self.proxy_connect_state
|
2012-06-23 02:06:34 +00:00
|
|
|
content = http.read_http_body_request(
|
2013-01-28 09:26:25 +00:00
|
|
|
self.rfile, self.wfile, headers, httpversion, self.config.body_size_limit
|
|
|
|
)
|
|
|
|
return flow.Request(
|
|
|
|
client_conn, httpversion, host, port, "https", method, path, headers, content,
|
|
|
|
self.rfile.first_byte_timestamp, utils.timestamp()
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
r = http.parse_init_proxy(line)
|
2012-06-26 08:49:34 +00:00
|
|
|
if not r:
|
2012-06-30 12:15:03 +00:00
|
|
|
raise ProxyError(400, "Bad HTTP request line: %s"%repr(line))
|
2013-01-28 09:26:25 +00:00
|
|
|
method, scheme, host, port, path, httpversion = r
|
|
|
|
headers = self.read_headers(authenticate=True)
|
2012-06-23 02:06:34 +00:00
|
|
|
content = http.read_http_body_request(
|
2013-01-28 09:26:25 +00:00
|
|
|
self.rfile, self.wfile, headers, httpversion, self.config.body_size_limit
|
|
|
|
)
|
|
|
|
return flow.Request(
|
|
|
|
client_conn, httpversion, host, port, scheme, method, path, headers, content,
|
|
|
|
self.rfile.first_byte_timestamp, utils.timestamp()
|
2012-06-10 04:02:48 +00:00
|
|
|
)
|
2013-01-28 09:26:25 +00:00
|
|
|
|
2013-02-24 04:35:24 +00:00
|
|
|
def read_request_reverse(self, client_conn):
|
|
|
|
line = self.get_line(self.rfile)
|
|
|
|
if line == "":
|
|
|
|
return None
|
|
|
|
scheme, host, port = self.config.reverse_proxy
|
|
|
|
r = http.parse_init_http(line)
|
|
|
|
if not r:
|
|
|
|
raise ProxyError(400, "Bad HTTP request line: %s"%repr(line))
|
|
|
|
method, path, httpversion = r
|
|
|
|
headers = self.read_headers(authenticate=False)
|
|
|
|
content = http.read_http_body_request(
|
|
|
|
self.rfile, self.wfile, headers, httpversion, self.config.body_size_limit
|
|
|
|
)
|
|
|
|
return flow.Request(
|
|
|
|
client_conn, httpversion, host, port, "http", method, path, headers, content,
|
|
|
|
self.rfile.first_byte_timestamp, utils.timestamp()
|
|
|
|
)
|
|
|
|
|
2013-01-28 09:26:25 +00:00
|
|
|
def read_request(self, client_conn):
|
|
|
|
self.rfile.reset_timestamps()
|
|
|
|
if self.config.transparent_proxy:
|
|
|
|
return self.read_request_transparent(client_conn)
|
|
|
|
elif self.config.reverse_proxy:
|
|
|
|
return self.read_request_reverse(client_conn)
|
2012-06-09 09:27:43 +00:00
|
|
|
else:
|
2013-01-28 09:26:25 +00:00
|
|
|
return self.read_request_proxy(client_conn)
|
2010-02-16 04:09:07 +00:00
|
|
|
|
2012-12-30 09:41:58 +00:00
|
|
|
def read_headers(self, authenticate=False):
|
|
|
|
headers = http.read_headers(self.rfile)
|
|
|
|
if headers is None:
|
|
|
|
raise ProxyError(400, "Invalid headers")
|
2012-12-30 21:56:44 +00:00
|
|
|
if authenticate and self.config.authenticator:
|
|
|
|
if self.config.authenticator.authenticate(headers):
|
|
|
|
self.config.authenticator.clean(headers)
|
|
|
|
else:
|
|
|
|
raise ProxyError(
|
|
|
|
407,
|
|
|
|
"Proxy Authentication Required",
|
|
|
|
self.config.authenticator.auth_challenge_headers()
|
|
|
|
)
|
2012-12-30 09:41:58 +00:00
|
|
|
return headers
|
|
|
|
|
2010-02-16 04:09:07 +00:00
|
|
|
def send_response(self, response):
|
2012-05-16 03:42:58 +00:00
|
|
|
d = response._assemble()
|
|
|
|
if not d:
|
2013-01-06 03:44:12 +00:00
|
|
|
raise ProxyError(502, "Cannot transmit an incomplete response.")
|
2012-05-16 03:42:58 +00:00
|
|
|
self.wfile.write(d)
|
2010-02-16 04:09:07 +00:00
|
|
|
self.wfile.flush()
|
|
|
|
|
2012-12-30 09:41:58 +00:00
|
|
|
def send_error(self, code, body, headers):
|
2011-01-27 01:19:48 +00:00
|
|
|
try:
|
2012-06-30 12:15:03 +00:00
|
|
|
response = http_status.RESPONSES.get(code, "Unknown")
|
2012-12-30 09:41:58 +00:00
|
|
|
html_content = '<html><head>\n<title>%d %s</title>\n</head>\n<body>\n%s\n</body>\n</html>'%(code, response, body)
|
2010-11-12 15:01:17 +00:00
|
|
|
self.wfile.write("HTTP/1.1 %s %s\r\n" % (code, response))
|
2012-07-03 02:12:52 +00:00
|
|
|
self.wfile.write("Server: %s\r\n"%self.server_version)
|
2011-01-27 01:19:48 +00:00
|
|
|
self.wfile.write("Content-type: text/html\r\n")
|
2012-12-30 09:41:58 +00:00
|
|
|
self.wfile.write("Content-Length: %d\r\n"%len(html_content))
|
|
|
|
for key, value in headers.items():
|
|
|
|
self.wfile.write("%s: %s\r\n"%(key, value))
|
|
|
|
self.wfile.write("Connection: close\r\n")
|
2011-01-27 01:19:48 +00:00
|
|
|
self.wfile.write("\r\n")
|
2012-12-30 09:41:58 +00:00
|
|
|
self.wfile.write(html_content)
|
2011-01-27 01:19:48 +00:00
|
|
|
self.wfile.flush()
|
2011-06-23 05:00:55 +00:00
|
|
|
except:
|
2011-01-27 01:19:48 +00:00
|
|
|
pass
|
2010-02-16 04:09:07 +00:00
|
|
|
|
|
|
|
|
2011-03-12 00:47:37 +00:00
|
|
|
class ProxyServerError(Exception): pass
|
|
|
|
|
2012-06-15 23:40:44 +00:00
|
|
|
|
2012-06-18 21:58:50 +00:00
|
|
|
class ProxyServer(tcp.TCPServer):
|
2010-02-16 04:09:07 +00:00
|
|
|
allow_reuse_address = True
|
2012-04-02 01:24:51 +00:00
|
|
|
bound = True
|
2012-07-03 02:12:52 +00:00
|
|
|
def __init__(self, config, port, address='', server_version=version.NAMEVERSION):
|
2011-03-12 00:47:37 +00:00
|
|
|
"""
|
|
|
|
Raises ProxyServerError if there's a startup problem.
|
|
|
|
"""
|
2011-02-19 23:53:42 +00:00
|
|
|
self.config, self.port, self.address = config, port, address
|
2012-07-03 02:12:52 +00:00
|
|
|
self.server_version = server_version
|
2011-03-12 00:47:37 +00:00
|
|
|
try:
|
2012-06-18 21:58:50 +00:00
|
|
|
tcp.TCPServer.__init__(self, (address, port))
|
2011-03-12 00:47:37 +00:00
|
|
|
except socket.error, v:
|
|
|
|
raise ProxyServerError('Error starting proxy server: ' + v.strerror)
|
2013-02-16 23:42:48 +00:00
|
|
|
self.channel = None
|
2012-06-18 22:42:55 +00:00
|
|
|
self.apps = AppRegistry()
|
2010-02-16 04:09:07 +00:00
|
|
|
|
2013-02-16 23:42:48 +00:00
|
|
|
def start_slave(self, klass, channel):
|
|
|
|
slave = klass(channel, self)
|
2012-04-02 01:24:51 +00:00
|
|
|
slave.start()
|
|
|
|
|
2013-02-16 23:42:48 +00:00
|
|
|
def set_channel(self, channel):
|
|
|
|
self.channel = channel
|
2010-02-16 04:09:07 +00:00
|
|
|
|
2012-06-15 23:40:44 +00:00
|
|
|
def handle_connection(self, request, client_address):
|
2013-02-16 23:42:48 +00:00
|
|
|
h = ProxyHandler(self.config, request, client_address, self, self.channel, self.server_version)
|
2012-06-24 23:37:12 +00:00
|
|
|
h.handle()
|
2012-09-13 21:40:13 +00:00
|
|
|
try:
|
|
|
|
h.finish()
|
|
|
|
except tcp.NetLibDisconnect, e:
|
|
|
|
pass
|
2010-02-16 04:09:07 +00:00
|
|
|
|
2012-06-16 01:53:24 +00:00
|
|
|
def handle_shutdown(self):
|
2013-01-05 12:16:08 +00:00
|
|
|
self.config.certstore.cleanup()
|
2011-02-19 23:12:55 +00:00
|
|
|
|
2011-02-19 23:53:42 +00:00
|
|
|
|
2012-06-18 22:42:55 +00:00
|
|
|
class AppRegistry:
|
|
|
|
def __init__(self):
|
|
|
|
self.apps = {}
|
|
|
|
|
|
|
|
def add(self, app, domain, port):
|
|
|
|
"""
|
|
|
|
Add a WSGI app to the registry, to be served for requests to the
|
|
|
|
specified domain, on the specified port.
|
|
|
|
"""
|
|
|
|
self.apps[(domain, port)] = wsgi.WSGIAdaptor(app, domain, port, version.NAMEVERSION)
|
|
|
|
|
|
|
|
def get(self, request):
|
|
|
|
"""
|
|
|
|
Returns an WSGIAdaptor instance if request matches an app, or None.
|
|
|
|
"""
|
2012-07-10 03:53:53 +00:00
|
|
|
if (request.host, request.port) in self.apps:
|
|
|
|
return self.apps[(request.host, request.port)]
|
|
|
|
if "host" in request.headers:
|
|
|
|
host = request.headers["host"][0]
|
|
|
|
return self.apps.get((host, request.port), None)
|
2012-06-18 22:42:55 +00:00
|
|
|
|
|
|
|
|
2012-04-02 01:24:51 +00:00
|
|
|
class DummyServer:
|
|
|
|
bound = False
|
|
|
|
def __init__(self, config):
|
|
|
|
self.config = config
|
|
|
|
|
2013-02-16 23:42:48 +00:00
|
|
|
def start_slave(self, klass, channel):
|
2012-04-02 01:24:51 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
def shutdown(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2011-02-19 23:53:42 +00:00
|
|
|
# Command-line utils
|
|
|
|
def certificate_option_group(parser):
|
2012-08-17 17:04:39 +00:00
|
|
|
group = parser.add_argument_group("SSL")
|
|
|
|
group.add_argument(
|
2011-02-19 23:53:42 +00:00
|
|
|
"--cert", action="store",
|
2012-08-17 17:04:39 +00:00
|
|
|
type = str, dest="cert", default=None,
|
2011-02-19 23:53:42 +00:00
|
|
|
help = "User-created SSL certificate file."
|
|
|
|
)
|
2012-08-17 17:04:39 +00:00
|
|
|
group.add_argument(
|
2012-05-23 21:09:03 +00:00
|
|
|
"--client-certs", action="store",
|
2012-08-17 17:04:39 +00:00
|
|
|
type = str, dest = "clientcerts", default=None,
|
2012-05-23 21:09:03 +00:00
|
|
|
help = "Client certificate directory."
|
|
|
|
)
|
2012-08-18 12:14:16 +00:00
|
|
|
group.add_argument(
|
|
|
|
"--dummy-certs", action="store",
|
|
|
|
type = str, dest = "certdir", default=None,
|
|
|
|
help = "Generated dummy certs directory."
|
|
|
|
)
|
2011-02-19 23:53:42 +00:00
|
|
|
|
|
|
|
|
2012-06-26 08:08:24 +00:00
|
|
|
TRANSPARENT_SSL_PORTS = [443, 8443]
|
|
|
|
|
2011-09-09 03:27:31 +00:00
|
|
|
def process_proxy_options(parser, options):
|
2011-02-19 23:53:42 +00:00
|
|
|
if options.cert:
|
|
|
|
options.cert = os.path.expanduser(options.cert)
|
|
|
|
if not os.path.exists(options.cert):
|
|
|
|
parser.error("Manually created certificate does not exist: %s"%options.cert)
|
2011-03-18 03:45:31 +00:00
|
|
|
|
|
|
|
cacert = os.path.join(options.confdir, "mitmproxy-ca.pem")
|
|
|
|
cacert = os.path.expanduser(cacert)
|
|
|
|
if not os.path.exists(cacert):
|
2012-02-29 00:20:53 +00:00
|
|
|
certutils.dummy_ca(cacert)
|
2011-02-19 23:53:42 +00:00
|
|
|
if getattr(options, "cache", None) is not None:
|
|
|
|
options.cache = os.path.expanduser(options.cache)
|
2011-09-09 03:27:31 +00:00
|
|
|
body_size_limit = utils.parse_size(options.body_size_limit)
|
2012-02-18 01:45:22 +00:00
|
|
|
|
2012-06-26 08:08:24 +00:00
|
|
|
if options.reverse_proxy and options.transparent_proxy:
|
|
|
|
parser.errror("Can't set both reverse proxy and transparent proxy.")
|
|
|
|
|
|
|
|
if options.transparent_proxy:
|
2012-06-29 23:24:41 +00:00
|
|
|
if not platform.resolver:
|
|
|
|
parser.error("Transparent mode not supported on this platform.")
|
2012-06-26 08:08:24 +00:00
|
|
|
trans = dict(
|
2012-09-16 23:05:20 +00:00
|
|
|
resolver = platform.resolver(),
|
2012-06-26 08:08:24 +00:00
|
|
|
sslports = TRANSPARENT_SSL_PORTS
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
trans = None
|
|
|
|
|
2012-02-18 01:45:22 +00:00
|
|
|
if options.reverse_proxy:
|
|
|
|
rp = utils.parse_proxy_spec(options.reverse_proxy)
|
|
|
|
if not rp:
|
|
|
|
parser.error("Invalid reverse proxy specification: %s"%options.reverse_proxy)
|
|
|
|
else:
|
|
|
|
rp = None
|
|
|
|
|
2012-05-23 21:09:03 +00:00
|
|
|
if options.clientcerts:
|
|
|
|
options.clientcerts = os.path.expanduser(options.clientcerts)
|
|
|
|
if not os.path.exists(options.clientcerts) or not os.path.isdir(options.clientcerts):
|
|
|
|
parser.error("Client certificate directory does not exist or is not a directory: %s"%options.clientcerts)
|
|
|
|
|
2012-08-06 21:09:35 +00:00
|
|
|
if options.certdir:
|
|
|
|
options.certdir = os.path.expanduser(options.certdir)
|
|
|
|
if not os.path.exists(options.certdir) or not os.path.isdir(options.certdir):
|
|
|
|
parser.error("Dummy cert directory does not exist or is not a directory: %s"%options.certdir)
|
|
|
|
|
2013-01-02 04:35:44 +00:00
|
|
|
if (options.auth_nonanonymous or options.auth_singleuser or options.auth_htpasswd):
|
|
|
|
if options.auth_singleuser:
|
|
|
|
if len(options.auth_singleuser.split(':')) != 2:
|
|
|
|
parser.error("Please specify user in the format username:password")
|
2012-12-30 09:41:58 +00:00
|
|
|
username, password = options.auth_singleuser.split(':')
|
|
|
|
password_manager = authentication.SingleUserPasswordManager(username, password)
|
2013-01-02 04:35:44 +00:00
|
|
|
elif options.auth_nonanonymous:
|
|
|
|
password_manager = authentication.PermissivePasswordManager()
|
2012-12-30 09:41:58 +00:00
|
|
|
elif options.auth_htpasswd:
|
|
|
|
password_manager = authentication.HtpasswdPasswordManager(options.auth_htpasswd)
|
2012-12-30 21:56:44 +00:00
|
|
|
authenticator = authentication.BasicProxyAuth(password_manager, "mitmproxy")
|
2012-12-30 09:41:58 +00:00
|
|
|
else:
|
|
|
|
authenticator = authentication.NullProxyAuth(None)
|
|
|
|
|
2011-09-09 02:49:34 +00:00
|
|
|
return ProxyConfig(
|
2011-02-19 23:53:42 +00:00
|
|
|
certfile = options.cert,
|
2011-03-18 03:45:31 +00:00
|
|
|
cacert = cacert,
|
2012-05-23 21:09:03 +00:00
|
|
|
clientcerts = options.clientcerts,
|
2012-02-16 14:33:27 +00:00
|
|
|
body_size_limit = body_size_limit,
|
2012-07-03 10:56:25 +00:00
|
|
|
no_upstream_cert = options.no_upstream_cert,
|
2012-06-26 08:08:24 +00:00
|
|
|
reverse_proxy = rp,
|
2012-08-06 21:09:35 +00:00
|
|
|
transparent_proxy = trans,
|
2012-12-30 09:41:58 +00:00
|
|
|
certdir = options.certdir,
|
|
|
|
authenticator = authenticator
|
2011-02-19 23:53:42 +00:00
|
|
|
)
|