mirror of
https://github.com/mitmproxy/mitmproxy.git
synced 2024-11-24 05:40:05 +00:00
0188cf8a1a
This just makes sense. Later on, we'll have a config file in which users can set the palette, so that they can over-ride the default background if they really want.
51 lines
1.7 KiB
Python
Executable File
51 lines
1.7 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
# Copyright (C) 2010 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/>.
|
|
|
|
import sys, os.path
|
|
from libmproxy import proxy, controller, console, utils
|
|
from optparse import OptionParser, OptionGroup
|
|
|
|
|
|
if __name__ == '__main__':
|
|
parser = OptionParser(
|
|
usage = "%prog [options] output",
|
|
version="%prog 0.1",
|
|
)
|
|
parser.add_option(
|
|
"-c", "--cert", action="store",
|
|
type = "str", dest="cert", default="~/.mitmproxy/cert.pem",
|
|
help = "SSL certificate file."
|
|
)
|
|
parser.add_option(
|
|
"-p", "--port", action="store",
|
|
type = "int", dest="port", default=8080,
|
|
help = "Port."
|
|
)
|
|
options, args = parser.parse_args()
|
|
certpath = os.path.expanduser(options.cert)
|
|
|
|
if not os.path.exists(certpath):
|
|
print >> sys.stderr, "Creating bogus certificate at %s"%options.cert
|
|
utils.make_bogus_cert(certpath)
|
|
|
|
proxy.config = proxy.Config(
|
|
certpath
|
|
)
|
|
server = proxy.ProxyServer(options.port)
|
|
m = console.ConsoleMaster(server, options)
|
|
m.run()
|