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
|
2014-01-04 01:35:11 +00:00
|
|
|
from netlib import odict, tcp, http, certutils, http_status, http_auth
|
2014-01-05 00:03:55 +00:00
|
|
|
import utils, flow, version, platform, controller, protocol
|
2010-02-16 04:09:07 +00:00
|
|
|
|
2013-03-24 20:20:26 +00:00
|
|
|
|
2014-01-04 21:58:53 +00:00
|
|
|
TRANSPARENT_SSL_PORTS = [443, 8443]
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
|
2011-09-09 02:49:34 +00:00
|
|
|
class ProxyConfig:
|
2013-08-31 00:14:18 +00:00
|
|
|
def __init__(self, certfile = None, cacert = None, clientcerts = None, no_upstream_cert=False, body_size_limit = None, reverse_proxy=None, forward_proxy=None, transparent_proxy=None, authenticator=None):
|
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
|
2013-08-31 00:14:18 +00:00
|
|
|
self.forward_proxy = forward_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-08-12 04:04:02 +00:00
|
|
|
self.certstore = certutils.CertStore()
|
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):
|
2014-01-05 00:03:55 +00:00
|
|
|
def __init__(self, config, host, port, sni):
|
2012-06-25 03:53:26 +00:00
|
|
|
tcp.TCPClient.__init__(self, host, port)
|
|
|
|
self.config = config
|
2014-01-05 00:03:55 +00:00
|
|
|
self.sni = sni
|
2013-03-19 16:21:52 +00:00
|
|
|
self.tcp_setup_timestamp = None
|
|
|
|
self.ssl_setup_timestamp = None
|
|
|
|
|
2013-02-24 09:24:21 +00:00
|
|
|
def connect(self):
|
2012-06-25 03:53:26 +00:00
|
|
|
tcp.TCPClient.connect(self)
|
2013-03-19 16:21:52 +00:00
|
|
|
self.tcp_setup_timestamp = time.time()
|
2014-01-05 00:03:55 +00:00
|
|
|
|
|
|
|
def establish_ssl(self):
|
|
|
|
clientcert = None
|
|
|
|
if self.config.clientcerts:
|
|
|
|
path = os.path.join(self.config.clientcerts, self.host.encode("idna")) + ".pem"
|
|
|
|
if os.path.exists(path):
|
|
|
|
clientcert = path
|
|
|
|
try:
|
|
|
|
self.convert_to_ssl(cert=clientcert, sni=self.sni)
|
|
|
|
self.ssl_setup_timestamp = time.time()
|
|
|
|
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):
|
2014-01-05 00:03:55 +00:00
|
|
|
print "deprecated"
|
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):
|
2013-07-28 06:05:04 +00:00
|
|
|
if self.connection:
|
|
|
|
try:
|
|
|
|
self.wfile.flush()
|
2013-07-29 21:42:29 +00:00
|
|
|
except tcp.NetLibDisconnect: # pragma: no cover
|
2013-07-28 06:05:04 +00:00
|
|
|
pass
|
2012-06-16 04:22:51 +00:00
|
|
|
self.connection.close()
|
2010-02-16 04:09:07 +00:00
|
|
|
|
2013-01-28 22:35:57 +00:00
|
|
|
|
2013-03-24 20:20:26 +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)
|
2013-08-22 22:01:19 +00:00
|
|
|
tsstart = utils.timestamp()
|
2013-02-24 04:35:24 +00:00
|
|
|
httpversion, code, msg, headers, content = http.read_response(
|
|
|
|
server.rfile, r.method, self.config.body_size_limit
|
|
|
|
)
|
|
|
|
response = flow.Response(
|
2013-08-22 22:01:19 +00:00
|
|
|
self.flow.request, httpversion, code, msg, headers, content, server.cert,
|
|
|
|
server.rfile.first_byte_timestamp
|
2013-02-24 04:35:24 +00:00
|
|
|
)
|
2014-01-04 01:42:32 +00:00
|
|
|
self.channel.ask("response", response)
|
2013-02-24 04:35:24 +00:00
|
|
|
except (ProxyError, http.HttpError, tcp.NetLibError), v:
|
|
|
|
err = flow.Error(self.flow.request, str(v))
|
2014-01-04 01:42:32 +00:00
|
|
|
self.channel.ask("error", err)
|
2013-02-28 20:05:39 +00:00
|
|
|
|
2014-01-05 00:03:55 +00:00
|
|
|
class ConnectionHandler:
|
|
|
|
def __init__(self, config, client_connection, client_address, server, channel, server_version):
|
2012-06-10 04:02:48 +00:00
|
|
|
self.config = config
|
2014-01-05 00:03:55 +00:00
|
|
|
self.client_address, self.client_conn = client_address, tcp.BaseHandler(client_connection)
|
|
|
|
self.server_address, self.server_conn = None, None
|
|
|
|
self.channel, self.server_version = channel, server_version
|
2013-12-12 09:00:23 +00:00
|
|
|
|
2014-01-05 00:03:55 +00:00
|
|
|
self.conntype = None
|
|
|
|
self.sni = None
|
2013-12-12 09:00:23 +00:00
|
|
|
|
2014-01-05 00:03:55 +00:00
|
|
|
self.mode = "regular"
|
|
|
|
if self.config.reverse_proxy:
|
|
|
|
self.mode = "reverse"
|
|
|
|
if self.config.transparent_proxy:
|
|
|
|
self.mode = "transparent"
|
2013-02-24 09:24:21 +00:00
|
|
|
|
|
|
|
def del_server_connection(self):
|
2013-07-27 22:50:25 +00:00
|
|
|
if self.server_conn:
|
|
|
|
self.server_conn.terminate()
|
2014-01-07 01:29:10 +00:00
|
|
|
self.channel.tell("serverdisconnect", self)
|
2013-02-24 09:24:21 +00:00
|
|
|
self.server_conn = None
|
2014-01-07 01:29:10 +00:00
|
|
|
self.sni = None
|
2013-02-24 09:24:21 +00:00
|
|
|
|
2010-02-16 04:09:07 +00:00
|
|
|
def handle(self):
|
2014-01-07 01:29:10 +00:00
|
|
|
self.log("connect")
|
|
|
|
self.channel.ask("clientconnect", self)
|
2014-01-05 00:03:55 +00:00
|
|
|
|
|
|
|
# Can we already identify the target server and connect to it?
|
|
|
|
if self.config.forward_proxy:
|
2014-01-07 01:29:10 +00:00
|
|
|
self.server_address = self.config.forward_proxy[1:]
|
2014-01-05 00:03:55 +00:00
|
|
|
else:
|
|
|
|
if self.config.reverse_proxy:
|
2014-01-07 01:29:10 +00:00
|
|
|
self.server_address = self.config.reverse_proxy[1:]
|
2014-01-05 00:03:55 +00:00
|
|
|
elif self.config.transparent_proxy:
|
|
|
|
self.server_address = self.config.transparent_proxy["resolver"].original_addr(self.connection)
|
|
|
|
if not self.server_address:
|
|
|
|
raise ProxyError(502, "Transparent mode failure: could not resolve original destination.")
|
2014-01-07 01:29:10 +00:00
|
|
|
self.log("transparent to %s:%s"%self.server_address)
|
2014-01-05 00:03:55 +00:00
|
|
|
|
|
|
|
if self.server_address:
|
|
|
|
self.establish_server_connection()
|
|
|
|
self.handle_ssl()
|
|
|
|
|
2014-01-07 01:29:10 +00:00
|
|
|
self.determine_conntype(self.mode, *self.server_address)
|
2014-01-05 00:03:55 +00:00
|
|
|
|
2014-01-07 01:29:10 +00:00
|
|
|
while not self.close:
|
|
|
|
try:
|
|
|
|
protocol.handle_messages(self.conntype, self)
|
|
|
|
except protocol.ConnectionTypeChange:
|
|
|
|
continue
|
2014-01-05 00:03:55 +00:00
|
|
|
|
2013-07-27 22:50:25 +00:00
|
|
|
self.del_server_connection()
|
2012-06-30 12:15:03 +00:00
|
|
|
|
2014-01-07 01:29:10 +00:00
|
|
|
self.log("disconnect")
|
|
|
|
self.channel.tell("clientdisconnect", self)
|
2010-11-12 15:01:17 +00:00
|
|
|
|
2014-01-07 01:29:10 +00:00
|
|
|
def determine_conntype(self, mode, host, port):
|
2014-01-05 00:03:55 +00:00
|
|
|
#TODO: Add ruleset to select correct protocol depending on mode/target port etc.
|
|
|
|
self.conntype = "http"
|
|
|
|
|
|
|
|
def establish_server_connection(self):
|
|
|
|
"""
|
|
|
|
Establishes a new server connection to self.server_address.
|
|
|
|
If there is already an existing server connection, it will be killed.
|
|
|
|
"""
|
|
|
|
self.del_server_connection()
|
|
|
|
self.server_conn = ServerConnection(self.config, *self.server_address, self.sni)
|
2014-01-07 01:29:10 +00:00
|
|
|
self.channel.tell("serverconnect", self)
|
2014-01-05 00:03:55 +00:00
|
|
|
|
|
|
|
def handle_ssl(self):
|
|
|
|
if self.config.transparent_proxy:
|
|
|
|
client_ssl, server_ssl = (self.server_address[1] in self.config.transparent_proxy["sslports"])
|
|
|
|
elif self.config.reverse_proxy:
|
2014-01-07 01:29:10 +00:00
|
|
|
client_ssl, server_ssl = (self.config.reverse_proxy[0] == "https")
|
|
|
|
# TODO: Make protocol generic (as with transparent proxies)
|
|
|
|
# TODO: Add SSL-terminating capatbility (SSL -> mitmproxy -> plain and vice versa)
|
2012-06-10 04:02:48 +00:00
|
|
|
else:
|
2014-01-05 00:03:55 +00:00
|
|
|
client_ssl, server_ssl = True # In regular mode, this function will only be called on HTTP CONNECT
|
2010-02-16 04:09:07 +00:00
|
|
|
|
2014-01-05 00:03:55 +00:00
|
|
|
# TODO: Implement SSL pass-through handling and change conntype
|
|
|
|
|
|
|
|
if server_ssl and not self.server_conn.ssl_established:
|
|
|
|
self.server_conn.establish_ssl()
|
|
|
|
if client_ssl and not self.client_conn.ssl_established:
|
2014-01-07 01:29:10 +00:00
|
|
|
dummycert = self.find_cert()
|
|
|
|
self.client_conn.convert_to_ssl(dummycert, self.config.certfile or self.config.cacert, handle_sni=self.handle_sni)
|
2014-01-05 00:03:55 +00:00
|
|
|
|
|
|
|
def log(self, msg, subs=()):
|
2012-06-30 12:15:03 +00:00
|
|
|
msg = [
|
2014-01-07 01:29:10 +00:00
|
|
|
"%s:%s: "%(self.client_address, msg)
|
2012-06-30 12:15:03 +00:00
|
|
|
]
|
|
|
|
for i in subs:
|
|
|
|
msg.append(" -> "+i)
|
|
|
|
msg = "\n".join(msg)
|
2014-01-07 01:29:10 +00:00
|
|
|
self.channel.tell("log", msg)
|
2012-06-30 12:15:03 +00:00
|
|
|
|
2014-01-07 01:29:10 +00:00
|
|
|
def find_cert(self):
|
2011-02-19 23:53:42 +00:00
|
|
|
if self.config.certfile:
|
2013-12-10 02:13:37 +00:00
|
|
|
with open(self.config.certfile, "rb") as f:
|
|
|
|
return certutils.SSLCert.from_pem(f.read())
|
2011-02-08 17:00:59 +00:00
|
|
|
else:
|
2014-01-07 01:29:10 +00:00
|
|
|
host = self.server_address[0]
|
2012-02-27 02:05:45 +00:00
|
|
|
sans = []
|
2014-01-07 01:29:10 +00:00
|
|
|
if not self.config.no_upstream_cert or not self.server_conn.ssl_established:
|
|
|
|
upstream_cert = self.server_conn.cert
|
|
|
|
if upstream_cert.cn:
|
|
|
|
host = upstream_cert.cn.decode("utf8").encode("idna")
|
|
|
|
sans = upstream_cert.altnames
|
|
|
|
|
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:
|
2013-03-02 03:59:16 +00:00
|
|
|
raise ProxyError(502, "Unable to generate dummy cert.")
|
2011-02-19 23:53:42 +00:00
|
|
|
return ret
|
2011-02-08 17:00:59 +00:00
|
|
|
|
2014-01-07 01:29:10 +00:00
|
|
|
def handle_sni(self, connection):
|
2012-06-26 11:51:38 +00:00
|
|
|
"""
|
2014-01-07 01:29:10 +00:00
|
|
|
This callback gets called during the SSL handshake with the client.
|
|
|
|
The client has just sent the Sever Name Indication (SNI). We now connect upstream to
|
|
|
|
figure out which certificate needs to be served.
|
2012-06-26 11:51:38 +00:00
|
|
|
"""
|
2011-01-27 01:19:48 +00:00
|
|
|
try:
|
2014-01-07 01:29:10 +00:00
|
|
|
sn = connection.get_servername()
|
|
|
|
if sn and sn != self.sni:
|
|
|
|
self.sni = sn.decode("utf8").encode("idna")
|
|
|
|
self.establish_server_connection() # reconnect to upstream server with SNI
|
|
|
|
self.handle_ssl() # establish SSL with upstream
|
|
|
|
# Now, change client context to reflect changed certificate:
|
|
|
|
new_context = SSL.Context(SSL.TLSv1_METHOD)
|
|
|
|
new_context.use_privatekey_file(self.config.certfile or self.config.cacert)
|
|
|
|
dummycert = self.find_cert()
|
|
|
|
new_context.use_certificate(dummycert.x509)
|
|
|
|
connection.set_context(new_context)
|
|
|
|
# An unhandled exception in this method will core dump PyOpenSSL, so
|
|
|
|
# make dang sure it doesn't happen.
|
|
|
|
except Exception, e: # pragma: no cover
|
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
|
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
|
|
|
|
2014-01-05 00:03:55 +00:00
|
|
|
def handle_client_connection(self, conn, client_address):
|
|
|
|
h = ConnectionHandler(self.config, conn, client_address, self, self.channel, self.server_version)
|
2012-06-24 23:37:12 +00:00
|
|
|
h.handle()
|
2013-03-02 23:13:33 +00:00
|
|
|
h.finish()
|
2010-02-16 04:09:07 +00:00
|
|
|
|
2011-02-19 23:53:42 +00:00
|
|
|
|
2012-04-02 01:24:51 +00:00
|
|
|
class DummyServer:
|
|
|
|
bound = False
|
|
|
|
def __init__(self, config):
|
|
|
|
self.config = config
|
|
|
|
|
2013-03-02 23:13:33 +00:00
|
|
|
def start_slave(self, *args):
|
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."
|
|
|
|
)
|
2011-02-19 23:53:42 +00:00
|
|
|
|
|
|
|
|
2012-06-26 08:08:24 +00:00
|
|
|
|
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):
|
2013-03-02 22:58:57 +00:00
|
|
|
return 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-09-09 03:27:31 +00:00
|
|
|
body_size_limit = utils.parse_size(options.body_size_limit)
|
2012-06-26 08:08:24 +00:00
|
|
|
if options.reverse_proxy and options.transparent_proxy:
|
2013-03-02 22:58:57 +00:00
|
|
|
return parser.error("Can't set both reverse proxy and transparent proxy.")
|
2012-06-26 08:08:24 +00:00
|
|
|
|
|
|
|
if options.transparent_proxy:
|
2012-06-29 23:24:41 +00:00
|
|
|
if not platform.resolver:
|
2013-03-02 22:58:57 +00:00
|
|
|
return 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:
|
2013-03-02 22:58:57 +00:00
|
|
|
return parser.error("Invalid reverse proxy specification: %s"%options.reverse_proxy)
|
2012-02-18 01:45:22 +00:00
|
|
|
else:
|
|
|
|
rp = None
|
|
|
|
|
2013-08-31 00:14:18 +00:00
|
|
|
if options.forward_proxy:
|
|
|
|
fp = utils.parse_proxy_spec(options.forward_proxy)
|
|
|
|
if not fp:
|
|
|
|
return parser.error("Invalid forward proxy specification: %s"%options.forward_proxy)
|
|
|
|
else:
|
|
|
|
fp = 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):
|
2014-01-04 21:58:53 +00:00
|
|
|
return parser.error(
|
|
|
|
"Client certificate directory does not exist or is not a directory: %s"%options.clientcerts
|
|
|
|
)
|
2012-05-23 21:09:03 +00:00
|
|
|
|
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:
|
2013-03-02 22:58:57 +00:00
|
|
|
return parser.error("Invalid single-user specification. Please use the format username:password")
|
2012-12-30 09:41:58 +00:00
|
|
|
username, password = options.auth_singleuser.split(':')
|
2013-03-02 21:37:06 +00:00
|
|
|
password_manager = http_auth.PassManSingleUser(username, password)
|
2013-01-02 04:35:44 +00:00
|
|
|
elif options.auth_nonanonymous:
|
2013-03-02 21:37:06 +00:00
|
|
|
password_manager = http_auth.PassManNonAnon()
|
2012-12-30 09:41:58 +00:00
|
|
|
elif options.auth_htpasswd:
|
2013-03-02 22:58:57 +00:00
|
|
|
try:
|
|
|
|
password_manager = http_auth.PassManHtpasswd(options.auth_htpasswd)
|
|
|
|
except ValueError, v:
|
|
|
|
return parser.error(v.message)
|
2013-03-02 21:37:06 +00:00
|
|
|
authenticator = http_auth.BasicProxyAuth(password_manager, "mitmproxy")
|
2012-12-30 09:41:58 +00:00
|
|
|
else:
|
2013-03-02 21:37:06 +00:00
|
|
|
authenticator = http_auth.NullProxyAuth(None)
|
2012-12-30 09:41:58 +00:00
|
|
|
|
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,
|
2013-08-31 00:14:18 +00:00
|
|
|
forward_proxy = fp,
|
2012-08-06 21:09:35 +00:00
|
|
|
transparent_proxy = trans,
|
2012-12-30 09:41:58 +00:00
|
|
|
authenticator = authenticator
|
2011-02-19 23:53:42 +00:00
|
|
|
)
|