2010-02-16 04:09:07 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
# Copyright (C) 2010 Aldo Cortesi
|
2012-02-07 03:39:37 +00:00
|
|
|
#
|
2010-02-16 04:09:07 +00:00
|
|
|
# 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.
|
2012-02-07 03:39:37 +00:00
|
|
|
#
|
2010-02-16 04:09:07 +00:00
|
|
|
# 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.
|
2012-02-07 03:39:37 +00:00
|
|
|
#
|
2010-02-16 04:09:07 +00:00
|
|
|
# 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
|
|
|
|
from libmproxy import proxy, console, cmdline
|
2011-03-08 23:35:38 +00:00
|
|
|
from libmproxy.version import VERSION
|
2010-02-16 04:09:07 +00:00
|
|
|
from optparse import OptionParser, OptionGroup
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
parser = OptionParser(
|
2011-05-14 23:54:12 +00:00
|
|
|
usage = "%prog [options]",
|
2011-01-25 02:02:48 +00:00
|
|
|
version="%%prog %s"%VERSION,
|
2010-02-16 04:09:07 +00:00
|
|
|
)
|
2011-03-12 01:30:12 +00:00
|
|
|
cmdline.common_options(parser)
|
2011-03-27 00:10:06 +00:00
|
|
|
parser.add_option("--debug", dest="debug", default=False, action="store_true")
|
2011-02-05 21:52:54 +00:00
|
|
|
|
2010-03-01 02:42:38 +00:00
|
|
|
|
|
|
|
group = OptionGroup(
|
|
|
|
parser,
|
|
|
|
"Filters",
|
|
|
|
"See help in mitmproxy for filter expression syntax."
|
|
|
|
)
|
|
|
|
group.add_option(
|
|
|
|
"-i", "--intercept", action="store",
|
|
|
|
type = "str", dest="intercept", default=None,
|
|
|
|
help = "Intercept filter expression."
|
|
|
|
)
|
|
|
|
parser.add_option_group(group)
|
2010-02-16 04:09:07 +00:00
|
|
|
options, args = parser.parse_args()
|
2011-02-08 17:00:59 +00:00
|
|
|
|
2011-09-09 03:27:31 +00:00
|
|
|
config = proxy.process_proxy_options(parser, options)
|
2011-05-13 22:44:25 +00:00
|
|
|
|
|
|
|
if options.no_server:
|
|
|
|
server = None
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
server = proxy.ProxyServer(config, options.port, options.addr)
|
|
|
|
except proxy.ProxyServerError, v:
|
|
|
|
print >> sys.stderr, "mitmproxy:", v.args[0]
|
|
|
|
sys.exit(1)
|
2011-03-12 01:30:12 +00:00
|
|
|
|
|
|
|
opts = console.Options(**cmdline.get_common_options(options))
|
2011-03-13 08:16:42 +00:00
|
|
|
opts.intercept = options.intercept
|
2011-03-27 00:10:06 +00:00
|
|
|
opts.debug = options.debug
|
2011-03-12 01:30:12 +00:00
|
|
|
m = console.ConsoleMaster(server, opts)
|
2010-02-16 04:09:07 +00:00
|
|
|
m.run()
|
2011-01-27 00:32:24 +00:00
|
|
|
|
|
|
|
|