aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/protocol/http.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Adjust for ODict interface changeAldo Cortesi2015-04-151-2/+2
|
* Add set_cookies method to HTTPResponseAldo Cortesi2015-04-141-0/+19
|
* New get_cookies for HttpResponseAldo Cortesi2015-04-141-13/+14
|
* New get_cookie and set_cookie implementations for HTTPRequestAldo Cortesi2015-04-141-9/+16
|
* Merge branch 'master' of ssh.github.com:mitmproxy/mitmproxyAldo Cortesi2015-04-141-4/+29
|\
| * fix pretty_host if no host is presentMaximilian Hils2015-04-101-2/+4
| |
| * fix #553Maximilian Hils2015-04-101-2/+25
| |
* | Housekeeping and cleanupsAldo Cortesi2015-04-141-14/+14
|/ | | | | | | | - No output to stdout on load in examples - they muck up the test suite. - Use the odict module directly, rather than aliasing it. The small convenience this gives to scripters is not worth it. - Move the cookie tests from the flow test module to the protocol_http test module.
* Merge pull request #515 from krzysiekbielicki/masterMaximilian Hils2015-03-261-1/+20
|\ | | | | [#514] Add support for ignoring payload params in multipart/form-data
| * [#514] Add support for ignoring payload params in multipart/form-dataKrzysztof Bielicki2015-03-101-1/+20
| |
* | structure componentsMaximilian Hils2015-03-211-0/+2
|/
* fix #319Maximilian Hils2015-02-271-9/+13
|
* Correct typo; https://github.com/mitmproxy/mitmproxy/issues/319Youhei Sakurai2015-02-271-1/+1
|
* Change from checking __call__ to using callable;Youhei Sakurai2015-02-271-1/+1
| | | https://github.com/mitmproxy/mitmproxy/issues/319
* Maybe it should work; https://github.com/mitmproxy/mitmproxy/issues/319Youhei Sakurai2015-02-271-1/+6
|
* added sni and ssl_established=true in ServerConnection. removed check for ↵Marcelo Glezer2015-02-121-4/+1
| | | | None value of server_conn in http.py
* set sni to None when no server_conn is NoneMarcelo Glezer2015-02-101-2/+4
|
* fix #451Maximilian Hils2015-02-071-12/+26
|
* fix #464Maximilian Hils2015-02-051-3/+3
|
* web: much ui work, such christmasMaximilian Hils2014-12-251-1/+2
|
* web: intercept featureMaximilian Hils2014-12-231-28/+1
|
* Merge pull request #414 from mitmproxy/flowviews2Aldo Cortesi2014-12-121-1/+4
|\ | | | | Flowviews2
| * introduce revised views, port over changes from multiple_views branchMaximilian Hils2014-11-261-1/+4
| |
* | fix #411Maximilian Hils2014-12-081-3/+3
| |
* | add inline script example for websocket passthrough, fix #340Maximilian Hils2014-12-011-0/+6
| |
* | make header processing configurable by inline scripts, refs #340Maximilian Hils2014-12-011-11/+15
| |
* | fix error htmlMaximilian Hils2014-11-261-1/+1
|/
* handle script hooks in replay, fix tests, fix #402Maximilian Hils2014-11-141-28/+38
|
* fix #401Maximilian Hils2014-11-071-8/+4
|
* Fixing issue #392.Wade 5242014-10-311-3/+2
|
* LegibilityAldo Cortesi2014-10-261-48/+124
|
* Fix crash while streamingAldo Cortesi2014-10-261-13/+27
| | | | | | | | | | | | | | | | | | | | | | | | 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 legibilityAldo Cortesi2014-10-261-24/+66
|
* tweak SSL detection heuristicsMaximilian Hils2014-10-211-1/+9
|
* add generic tcp proxying, fix #374Maximilian Hils2014-10-181-2/+7
|
* fix typoMaximilian Hils2014-10-081-1/+1
|
* replay: carry over SNI valueMaximilian Hils2014-10-021-2/+3
|
* fix timestamp formatting: end_time may not be setMaximilian Hils2014-09-221-2/+4
|
* clean up timestamp handlingMaximilian Hils2014-09-211-6/+10
|
* start to fill detailpaneMaximilian Hils2014-09-191-0/+6
|
* implement FlowStore basicsMaximilian Hils2014-09-171-1/+1
|
* Introduce short form object state, and connect the ends to send data to web appAldo Cortesi2014-09-171-0/+1
|
* Clean up and clarify StateObjectAldo Cortesi2014-09-171-8/+8
| | | | | | | | | - Flatten the class hierarchy - get_state, load_state, from_state are public - Simplify code - Remove __eq__ and __neq__. This fundamentally changes the semantics of inherited objects in a way that's not part of the core function of the class
* Whitespace & formattingAldo Cortesi2014-09-171-49/+111
|
* mitmproxy -> libmproxy.main. do some leanup on the wayMaximilian Hils2014-09-081-2/+2
|
* update examples, fix #353Maximilian Hils2014-09-081-1/+2
|
* remove proxy mode abstraction: always be clear which mode we are inMaximilian Hils2014-09-081-19/+18
|
* improve loggingMaximilian Hils2014-09-081-7/+19
|
* update code docs, make sure that url attribute never returns ↵Maximilian Hils2014-09-071-4/+10
| | | | prettified/formatted values
* streamline HTTPHandler.handle_flow()Maximilian Hils2014-09-051-95/+96
|