Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | retain raw filter str on filt objects | Maximilian Hils | 2014-11-22 | 2 | -5/+7 | |
| | ||||||
* | add sni support to LiveConnection.change_server | Maximilian Hils | 2014-11-19 | 1 | -2/+11 | |
| | ||||||
* | One common --version flag | Aldo Cortesi | 2014-11-15 | 1 | -15/+5 | |
| | ||||||
* | Remove last vestiges of argparse | Aldo Cortesi | 2014-11-15 | 1 | -7/+6 | |
| | ||||||
* | Exclude main.py from coverage analysis | Aldo Cortesi | 2014-11-15 | 1 | -0/+3 | |
| | ||||||
* | Make sure all command-line arguments have a long form | Aldo Cortesi | 2014-11-15 | 1 | -21/+20 | |
| | | | | ... so they can be used in config files | |||||
* | Enable config file parsing | Aldo Cortesi | 2014-11-15 | 1 | -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 definition | Aldo Cortesi | 2014-11-15 | 2 | -122/+124 | |
| | | | | | - Argument definitions live in cmdline.py - Parsing and initial processing lives in main.py | |||||
* | First-order integration of configargparser to add config file support | Aldo Cortesi | 2014-11-15 | 5 | -69/+160 | |
| | ||||||
* | always show error messages | Maximilian Hils | 2014-11-15 | 2 | -2/+2 | |
| | ||||||
* | bump version | Maximilian Hils | 2014-11-14 | 1 | -1/+1 | |
| | ||||||
* | fix #409 | Maximilian Hils | 2014-11-14 | 1 | -1/+5 | |
| | ||||||
* | handle script hooks in replay, fix tests, fix #402 | Maximilian Hils | 2014-11-14 | 2 | -40/+50 | |
| | ||||||
* | fix grideditor bug | Maximilian Hils | 2014-11-14 | 1 | -0/+2 | |
| | ||||||
* | fix tests | Maximilian Hils | 2014-11-11 | 1 | -1/+1 | |
| | ||||||
* | be more explicit about requirements | Maximilian Hils | 2014-11-11 | 1 | -0/+4 | |
| | ||||||
* | fix clear key | Maximilian Hils | 2014-11-10 | 1 | -4/+5 | |
| | ||||||
* | Merge pull request #403 from Lucas-C/master | Maximilian Hils | 2014-11-10 | 1 | -6/+5 | |
|\ | | | | | Using uppercase C to 'clear' display mode, because lowercase 'c' is used for css | |||||
| * | Using uppercase C to 'clear' display mode, because lowercase 'c' is used for css | Lucas Cimon | 2014-11-07 | 1 | -6/+5 | |
| | | ||||||
* | | fix #402 | Maximilian Hils | 2014-11-10 | 1 | -1/+2 | |
|/ | ||||||
* | fix #401 | Maximilian Hils | 2014-11-07 | 1 | -8/+4 | |
| | ||||||
* | fix #399 | Maximilian Hils | 2014-11-06 | 2 | -3/+6 | |
| | ||||||
* | Reduce loop timeouts to improve mitmproxy responsiveness | Aldo Cortesi | 2014-11-06 | 2 | -4/+11 | |
| | | | | Fixes #384 | |||||
* | Fix bug in flow dumping, add unit test that should have caught this in the ↵ | Aldo Cortesi | 2014-11-06 | 1 | -1/+1 | |
| | | | | first place | |||||
* | Fixing issue #392. | Wade 524 | 2014-10-31 | 1 | -3/+2 | |
| | ||||||
* | fix #391 | Maximilian Hils | 2014-10-30 | 1 | -2/+2 | |
| | ||||||
* | Legibility | Aldo Cortesi | 2014-10-26 | 1 | -48/+124 | |
| | ||||||
* | Fix crash while streaming | Aldo Cortesi | 2014-10-26 | 3 | -25/+50 | |
| | | | | | | | | | | | | | | | | | | | | | | | | 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'] | |||||
* | Spacing and legibility | Aldo Cortesi | 2014-10-26 | 2 | -27/+72 | |
| | ||||||
* | Start a fuzzing architecture for mitmproxy | Aldo Cortesi | 2014-10-26 | 2 | -5/+8 | |
| | ||||||
* | Fixing issue #368. | Wade 524 | 2014-10-24 | 1 | -2/+3 | |
| | ||||||
* | fix #346 | Maximilian Hils | 2014-10-22 | 1 | -0/+5 | |
|\ | ||||||
| * | reverse proxy: adjust dst when reading flows, fix #346 | Maximilian Hils | 2014-09-08 | 1 | -0/+5 | |
| | | ||||||
* | | tweak SSL detection heuristics | Maximilian Hils | 2014-10-21 | 2 | -2/+17 | |
| | | ||||||
* | | fix race conditions in tests | Maximilian Hils | 2014-10-19 | 1 | -0/+2 | |
| | | ||||||
* | | add generic tcp proxying, fix #374 | Maximilian Hils | 2014-10-18 | 11 | -68/+119 | |
| | | ||||||
* | | remove default_ca | Maximilian Hils | 2014-10-18 | 2 | -3/+2 | |
| | | ||||||
* | | fix cert forwarding | Maximilian Hils | 2014-10-09 | 1 | -1/+1 | |
| | | ||||||
* | | Add SOCKS5 mode, fix #305 | Maximilian Hils | 2014-10-09 | 4 | -11/+89 | |
| | | ||||||
* | | Merge branch 'cert_chains' | Maximilian Hils | 2014-10-09 | 2 | -11/+13 | |
|\ \ | ||||||
| * | | add mini documentation | Maximilian Hils | 2014-10-09 | 1 | -4/+6 | |
| | | | ||||||
| * | | fix support for chained certificates | Maximilian Hils | 2014-10-08 | 2 | -7/+7 | |
| | | | ||||||
* | | | fix typo | Maximilian Hils | 2014-10-08 | 1 | -1/+1 | |
|/ / | ||||||
* | | Merge branch 'master' of github.com:mitmproxy/mitmproxy | Maximilian Hils | 2014-10-07 | 3 | -8/+48 | |
|\ \ | ||||||
| * | | --replay-ignore-content & --replay-ignore-param ported from branch 0.10 | Marcelo Glezer | 2014-10-03 | 3 | -8/+48 | |
| | | | ||||||
* | | | replay: carry over SNI value | Maximilian Hils | 2014-10-02 | 1 | -2/+3 | |
|/ / | ||||||
* | | fix timestamp formatting: end_time may not be set | Maximilian Hils | 2014-09-22 | 2 | -3/+8 | |
| | | ||||||
* | | beef up event log | Maximilian Hils | 2014-09-22 | 2 | -26/+138 | |
| | | ||||||
* | | web: perf improvements | Maximilian Hils | 2014-09-22 | 1 | -15/+31 | |
| | | ||||||
* | | web: various improvements | Maximilian Hils | 2014-09-21 | 2 | -51/+115 | |
| | |