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-03-12 01:30:12 +00:00
import proxy
2012-04-08 23:42:56 +00:00
import optparse , re , filt
2012-03-17 04:20:34 +00:00
class ParseReplaceException ( Exception ) : pass
class OptionException ( Exception ) : pass
def parse_replace_hook ( s ) :
"""
Returns a ( pattern , regex , replacement ) tuple .
The general form for a replacement hook is as follows :
/ patt / regex / replacement
The first character specifies the separator . Example :
: ~ q : foo : bar
If only two clauses are specified , the pattern is set to match
universally ( i . e . " .* " ) . Example :
/ foo / bar /
Clauses are parsed from left to right . Extra separators are taken to be
part of the final clause . For instance , the replacement clause below is
" foo/bar/ " :
/ one / two / foo / bar /
Checks that pattern and regex are both well - formed . Raises
ParseReplaceException on error .
"""
sep , rem = s [ 0 ] , s [ 1 : ]
parts = rem . split ( sep , 2 )
if len ( parts ) == 2 :
patt = " .* "
regex , replacement = parts
elif len ( parts ) == 3 :
patt , regex , replacement = parts
else :
raise ParseReplaceException ( " Malformed replacement specifier - too few clauses: %s " % s )
if not regex :
raise ParseReplaceException ( " Empty replacement regex: %s " % str ( patt ) )
try :
re . compile ( regex )
except re . error , e :
raise ParseReplaceException ( " Malformed replacement regex: %s " % str ( e . message ) )
if not filt . parse ( patt ) :
raise ParseReplaceException ( " Malformed replacement filter pattern: %s " % patt )
return patt , regex , replacement
2011-03-12 01:30:12 +00:00
def get_common_options ( options ) :
2011-03-20 04:31:54 +00:00
stickycookie , stickyauth = None , None
2012-06-26 07:56:47 +00:00
if options . stickycookie_filt :
2011-03-12 02:14:25 +00:00
stickycookie = options . stickycookie_filt
2011-03-20 04:31:54 +00:00
2012-06-26 07:56:47 +00:00
if options . stickyauth_filt :
2011-03-20 04:31:54 +00:00
stickyauth = options . stickyauth_filt
2012-03-17 04:20:34 +00:00
reps = [ ]
for i in options . replace :
try :
p = parse_replace_hook ( i )
except ParseReplaceException , e :
raise OptionException ( e . message )
reps . append ( p )
for i in options . replace_file :
try :
patt , rex , path = parse_replace_hook ( i )
except ParseReplaceException , e :
raise OptionException ( e . message )
try :
v = open ( path , " r " ) . read ( )
except IOError , e :
raise OptionException ( " Could not read replace file: %s " % path )
reps . append ( ( patt , rex , v ) )
2011-03-12 01:30:12 +00:00
return dict (
2011-05-13 22:44:25 +00:00
anticache = options . anticache ,
2011-07-15 03:21:04 +00:00
anticomp = options . anticomp ,
2011-05-13 22:44:25 +00:00
client_replay = options . client_replay ,
2011-07-23 00:57:54 +00:00
eventlog = options . eventlog ,
2011-05-13 22:44:25 +00:00
kill = options . kill ,
no_server = options . no_server ,
refresh_server_playback = not options . norefresh ,
rheaders = options . rheaders ,
2011-05-14 23:54:12 +00:00
rfile = options . rfile ,
2012-03-17 04:20:34 +00:00
replacements = reps ,
2011-03-12 01:30:12 +00:00
server_replay = options . server_replay ,
2011-08-03 01:20:36 +00:00
script = options . script ,
2011-03-12 01:30:12 +00:00
stickycookie = stickycookie ,
2011-03-20 04:31:54 +00:00
stickyauth = stickyauth ,
2011-05-13 22:44:25 +00:00
wfile = options . wfile ,
verbosity = options . verbose ,
2012-03-05 09:05:11 +00:00
nopop = options . nopop ,
2011-03-12 01:30:12 +00:00
)
def common_options ( parser ) :
parser . add_option (
" -a " ,
action = " store " , type = " str " , dest = " addr " , default = ' ' ,
help = " Address to bind proxy to (defaults to all interfaces) "
)
2011-08-03 01:20:36 +00:00
parser . add_option (
" --anticache " ,
action = " store_true " , dest = " anticache " , default = False ,
help = " Strip out request headers that might cause the server to return 304-not-modified. "
)
parser . add_option (
" --confdir " ,
action = " store " , type = " str " , dest = " confdir " , default = ' ~/.mitmproxy ' ,
help = " Configuration directory. (~/.mitmproxy) "
)
2011-07-23 00:57:54 +00:00
parser . add_option (
" -e " ,
action = " store_true " , dest = " eventlog " ,
help = " Show event log. "
)
2011-05-13 22:44:25 +00:00
parser . add_option (
" -n " ,
action = " store_true " , dest = " no_server " ,
help = " Don ' t start a proxy server. "
)
2011-03-12 01:30:12 +00:00
parser . add_option (
" -p " ,
action = " store " , type = " int " , dest = " port " , default = 8080 ,
help = " Proxy service port. "
)
2012-02-16 14:33:27 +00:00
parser . add_option (
2012-04-04 02:17:26 +00:00
" -P " ,
2012-02-18 01:45:22 +00:00
action = " store " , dest = " reverse_proxy " , default = None ,
2012-02-18 03:27:09 +00:00
help = " Reverse proxy to upstream server: http[s]://host[:port] "
2012-02-16 14:33:27 +00:00
)
2011-03-12 01:30:12 +00:00
parser . add_option (
" -q " ,
action = " store_true " , dest = " quiet " ,
help = " Quiet. "
)
2011-05-14 23:54:12 +00:00
parser . add_option (
" -r " ,
action = " store " , dest = " rfile " , default = None ,
help = " Read flows from file. "
)
2011-03-12 01:30:12 +00:00
parser . add_option (
2011-08-03 01:20:36 +00:00
" -s " ,
action = " store " , dest = " script " , default = None ,
help = " Run a script. "
2011-03-12 01:30:12 +00:00
)
parser . add_option (
" -t " ,
action = " store " , dest = " stickycookie_filt " , default = None , metavar = " FILTER " ,
help = " Set sticky cookie filter. Matched against requests. "
)
2012-06-26 08:08:24 +00:00
parser . add_option (
" -T " ,
action = " store_true " , dest = " transparent_proxy " , default = False ,
help = " Set transparent proxy mode. "
)
2011-03-20 04:31:54 +00:00
parser . add_option (
" -u " ,
action = " store " , dest = " stickyauth_filt " , default = None , metavar = " FILTER " ,
help = " Set sticky auth filter. Matched against requests. "
)
2011-03-12 01:30:12 +00:00
parser . add_option (
" -v " ,
action = " count " , dest = " verbose " , default = 1 ,
help = " Increase verbosity. Can be passed multiple times. "
)
parser . add_option (
" -w " ,
action = " store " , dest = " wfile " , default = None ,
help = " Write flows to file. "
)
2011-07-15 03:21:04 +00:00
parser . add_option (
" -z " ,
2011-07-17 02:36:38 +00:00
action = " store_true " , dest = " anticomp " , default = False ,
2011-07-15 03:21:04 +00:00
help = " Try to convince servers to send us un-compressed data. "
)
2011-09-09 05:31:36 +00:00
parser . add_option (
" -Z " ,
action = " store " , dest = " body_size_limit " , default = None ,
metavar = " SIZE " ,
help = " Byte size limit of HTTP request and response bodies. " \
" Understands k/m/g suffixes, i.e. 3m for 3 megabytes. "
)
2012-02-27 02:05:45 +00:00
parser . add_option (
" --cert-wait-time " , type = " float " ,
action = " store " , dest = " cert_wait_time " , default = 0 ,
help = " Wait for specified number of seconds after a new cert is generated. This can smooth over small discrepancies between the client and server times. "
)
parser . add_option (
2012-07-03 10:56:25 +00:00
" --no-upstream-cert " , default = False ,
action = " store_true " , dest = " no_upstream_cert " ,
help = " Don ' t connect to upstream server to look up certificate details. "
2012-02-27 02:05:45 +00:00
)
2011-03-12 01:30:12 +00:00
group = optparse . OptionGroup ( parser , " Client Replay " )
group . add_option (
" -c " ,
action = " store " , dest = " client_replay " , default = None , metavar = " PATH " ,
help = " Replay client requests from a saved file. "
)
parser . add_option_group ( group )
group = optparse . OptionGroup ( parser , " Server Replay " )
group . add_option (
2011-08-03 01:20:36 +00:00
" -S " ,
2011-03-12 01:30:12 +00:00
action = " store " , dest = " server_replay " , default = None , metavar = " PATH " ,
help = " Replay server responses from a saved file. "
)
group . add_option (
" -k " ,
action = " store_true " , dest = " kill " , default = False ,
help = " Kill extra requests during replay. "
)
group . add_option (
" --rheader " ,
action = " append " , dest = " rheaders " , type = " str " ,
help = " Request headers to be considered during replay. "
" Can be passed multiple times. "
)
group . add_option (
" --norefresh " ,
action = " store_true " , dest = " norefresh " , default = False ,
help = " Disable response refresh, "
" which updates times in cookies and headers for replayed responses. "
)
2012-03-05 09:05:11 +00:00
group . add_option (
" --no-pop " ,
action = " store_true " , dest = " nopop " , default = False ,
2012-03-05 09:56:03 +00:00
help = " Disable response pop from response flow. "
2012-03-05 09:05:11 +00:00
" This makes it possible to replay same response multiple times. "
)
2012-06-05 23:26:19 +00:00
parser . add_option_group ( group )
2012-03-17 04:20:34 +00:00
group = optparse . OptionGroup (
parser ,
" Replacements " ,
"""
Replacements are of the form " /pattern/regex/replacement " , where
the separator can be any character . Please see the documentation
for more information .
""" .strip()
)
group . add_option (
" --replace " ,
action = " append " , type = " str " , dest = " replace " , default = [ ] ,
metavar = " PATTERN " ,
help = " Replacement pattern. "
)
group . add_option (
" --replace-from-file " ,
action = " append " , type = " str " , dest = " replace_file " , default = [ ] ,
metavar = " PATTERN " ,
help = " Replacement pattern, where the replacement clause is a path to a file. "
)
2011-03-12 01:30:12 +00:00
parser . add_option_group ( group )
2012-08-06 21:09:35 +00:00
group . add_option (
" --dummy-certs " , action = " store " ,
type = " str " , dest = " certdir " , default = None ,
help = " Generated dummy certs directory. "
)
2011-03-12 01:30:12 +00:00
proxy . certificate_option_group ( parser )