aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/cmdline.py
Commit message (Collapse)AuthorAgeFilesLines
* Added Basic Auth support for MITMWeb interfaceGuillem Anguera2016-02-111-0/+15
|
* raise error if --http2 is specified, but the OpenSSL version doesn't support itMaximilian Hils2016-02-081-0/+5
|
* code formatting: fix whitespace issuesThomas Kriechbaumer2016-01-271-4/+4
|
* Added CLI argument to enable "follow flow list" modeGuillem Anguera2016-01-221-0/+5
|
* [docs/libmproxy/test] Support single client-side cert file as argument toMichael J. Bazzinotti2015-12-281-1/+1
| | | | --client-certs
* adjust to netlib changesMaximilian Hils2015-09-161-2/+6
|
* polish for release: introduce http2 and rawtcp as command line switchesMaximilian Hils2015-09-111-2/+16
|
* Merge remote-tracking branch 'origin/master' into proxy-refactor-cbMaximilian Hils2015-08-301-0/+5
|\
| * console: add command line flag to disable mouse interactionTimothy Elliott2015-08-191-0/+5
| | | | | | | | | | | | Adds the --no-mouse command line option to disable the mouse. Fixes #685
* | always insert tls layer for inline script upgradesMaximilian Hils2015-08-301-10/+3
| |
* | move sslversion mapping to netlibMaximilian Hils2015-08-291-5/+5
| |
* | clean up config/cmdline, fix bugs, remove cruftMaximilian Hils2015-08-281-99/+148
|/
* move code from mitmproxy to netlibThomas Kriechbaumer2015-08-011-1/+4
|
* SSL Spoof modeiroiro1232015-06-211-1/+11
|
* Spoof modeiroiro1232015-06-201-5/+5
|
* HTTP Transparent Proxyiroiro1232015-06-181-0/+5
|
* Add coding style check, reformat.Aldo Cortesi2015-05-301-10/+10
|
* console: add a -l flag to set the limit on startupAldo Cortesi2015-04-151-0/+5
|
* console: All palettes now explicitly set a background colourAldo Cortesi2015-04-071-0/+5
| | | | | There's a new option --palette-transparent to turn this off if you want to use your own terminal background.
* console: palette picker for the options screenAldo Cortesi2015-04-071-1/+1
|
* web: initial attempt at header editorMaximilian Hils2015-03-271-1/+1
|
* Merge remote-tracking branch 'onlywade/master'Maximilian Hils2015-03-151-1/+7
|\ | | | | | | | | | | Conflicts: libmproxy/console/__init__.py libmproxy/console/flowlist.py
| * Adding a server replay option to ignore host when searching for matching ↵Wade Catron2015-03-081-1/+7
| | | | | | | | requests
* | Better error when invalid palette is specifiedAldo Cortesi2015-03-121-1/+1
|/
* first steps in scenario supportMarcelo Glezer2015-01-051-2/+2
|
* we do not support https2http in upstream proxy modeMaximilian Hils2015-01-011-10/+18
|
* Documentation for config filesAldo Cortesi2014-12-281-1/+2
|
* Minor improvements to osx binary build processAldo Cortesi2014-12-281-3/+8
| | | | | - Add --shortversion on tools to make packaging easier - Automate tarfile generation
* --replay_ignore_payload_params added, to filter params in form postsMarcelo Glezer2014-12-181-2/+14
|
* append file mode for saving flows merged to masterMarcelo Glezer2014-12-111-4/+10
|
* One common --version flagAldo Cortesi2014-11-151-15/+5
|
* Remove last vestiges of argparseAldo Cortesi2014-11-151-7/+6
|
* Make sure all command-line arguments have a long formAldo Cortesi2014-11-151-21/+20
| | | | ... so they can be used in config files
* Enable config file parsingAldo Cortesi2014-11-151-4/+32
| | | | | | | | | | | | | We support 4 different config files: ~/.mitmproxy/common.conf: Options that are common to all tools ~/.mitmproxy/mitmproxy.conf: Options for mitmproxy ~/.mitmproxy/mitmdump.conf: Options for mitmdump ~/.mitmproxy/mitmweb.conf: Options for mitmweb Options in the tool-specific config files over-ride options in common.conf. If a non-common option is put in common.conf, an error will be raised if a non-supporting tool is used.
* Refactor command-line argument definitionAldo Cortesi2014-11-151-7/+114
| | | | | - Argument definitions live in cmdline.py - Parsing and initial processing lives in main.py
* First-order integration of configargparser to add config file supportAldo Cortesi2014-11-151-33/+76
|
* Fix crash while streamingAldo Cortesi2014-10-261-10/+17
| | | | | | | | | | | | | | | | | | | | | | | | Found using fuzzing. Reproduction with pathoc, given "mitmproxy -s" and pathod running on 9999: get:'http://localhost:9999/p/':s'200:b\'foo\':h\'Content-Length\'=\'3\'':i58,'\x1a':r return flow.FlowMaster.run(self) File "/Users/aldo/mitmproxy/mitmproxy/libmproxy/controller.py", line 111, in run self.tick(self.masterq, 0.01) File "/Users/aldo/mitmproxy/mitmproxy/libmproxy/flow.py", line 613, in tick return controller.Master.tick(self, q, timeout) File "/Users/aldo/mitmproxy/mitmproxy/libmproxy/controller.py", line 101, in tick self.handle(*msg) File "/Users/aldo/mitmproxy/mitmproxy/libmproxy/controller.py", line 118, in handle m(obj) File "/Users/aldo/mitmproxy/mitmproxy/libmproxy/flow.py", line 738, in handle_responseheaders self.stream_large_bodies.run(f, False) File "/Users/aldo/mitmproxy/mitmproxy/libmproxy/flow.py", line 155, in run r.headers, is_request, flow.request.method, code File "/Users/aldo/mitmproxy/mitmproxy/netlib/http.py", line 401, in expected_http_body_size raise HttpError(400 if is_request else 502, "Invalid content-length header: %s" % headers["content-length"]) netlib.http.HttpError: Invalid content-length header: ['\x1a3']
* add generic tcp proxying, fix #374Maximilian Hils2014-10-181-1/+8
|
* remove default_caMaximilian Hils2014-10-181-1/+1
|
* Add SOCKS5 mode, fix #305Maximilian Hils2014-10-091-2/+6
|
* --replay-ignore-content & --replay-ignore-param ported from branch 0.10Marcelo Glezer2014-10-031-0/+13
|
* Basic web service and optionsAldo Cortesi2014-09-141-4/+4
|
* Remove external app option, make tick timeout explicitAldo Cortesi2014-09-141-6/+0
|
* remove proxy mode abstraction: always be clear which mode we are inMaximilian Hils2014-09-081-5/+0
|
* coverage++Maximilian Hils2014-09-061-2/+1
|
* adjust to netlib changesMaximilian Hils2014-08-171-1/+1
|
* implement passthrough mode, fixes #175Maximilian Hils2014-08-091-3/+13
|
* add --stream options, various fixesMaximilian Hils2014-07-211-51/+51
|
* fix command line helpMaximilian Hils2014-07-061-2/+2
|
* Fix proxy optionsAldo Cortesi2014-04-121-2/+2
|