Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Merge branch 'master' of ssh.github.com:cortesi/mitmproxy | Aldo Cortesi | 2013-01-18 | 1 | -0/+51 | |
|\ | | | | | | | | | Conflicts: test/test_server.py | |||||
| * | fixes due to merge with master | Rouli | 2013-01-17 | 1 | -1/+2 | |
| | | ||||||
| * | Merge remote-tracking branch 'upstream/master' | Rouli | 2013-01-17 | 8 | -22/+103 | |
| |\ | ||||||
| * | | changing requests and responses to have two timestamps, one marking their ↵ | Rouli | 2013-01-17 | 1 | -0/+41 | |
| | | | | | | | | | | | | initiation, and the other their complete | |||||
* | | | Unit tests and minor code refactoring for ServerConnection. | Aldo Cortesi | 2013-01-05 | 3 | -10/+51 | |
| |/ |/| | ||||||
* | | Use new netlib certificate store implementation. | Aldo Cortesi | 2013-01-06 | 1 | -1/+1 | |
| | | ||||||
* | | Unit test love - 100% for flow.py, dump.py | Aldo Cortesi | 2013-01-05 | 2 | -1/+26 | |
| | | ||||||
* | | Minor cleanups of proxy request handling. | Aldo Cortesi | 2013-01-04 | 1 | -2/+2 | |
| | | ||||||
* | | First draft of "How mitmproxy works", a complete guide to the mechanics of ↵ | Aldo Cortesi | 2013-01-03 | 2 | -19/+0 | |
| | | | | | | | | the proxy process | |||||
* | | First draft of OSX transparent proxy mode. | Aldo Cortesi | 2013-01-01 | 2 | -0/+17 | |
| | | ||||||
* | | More work on proxy auth | Aldo Cortesi | 2012-12-31 | 1 | -2/+30 | |
| | | | | | | | | | | | | - Strip auth header if auth succeeds, so it's not passed upstream - Actually use realm specification to BasicProxyAuth, and make it mandatory - Cleanups and unit tests | |||||
* | | Test and robustify BasicProxyAuth.parse_auth_value | Aldo Cortesi | 2012-12-31 | 1 | -0/+12 | |
| | | | | | | | | | | - This is partly in preparation for moving the implementation to netlib - Also add an unparse_auth_value for testing (and use in pathod once the move is done) | |||||
* | | Start solidifying proxy authentication | Aldo Cortesi | 2012-12-31 | 1 | -0/+18 | |
|/ | | | | | | - Add a unit test file - Remove some extraneous methods - Change the auth API to make the authenticate method take a header object. | |||||
* | Substantially rewrite AMF decoding. | Aldo Cortesi | 2012-11-26 | 4 | -9/+22 | |
| | | | | This is tricky, but we should now handle a lot more corner-cases. | |||||
* | Move cleanBin and hexdump into netutils. | Aldo Cortesi | 2012-09-24 | 1 | -11/+0 | |
| | ||||||
* | Expand Flow.match to accept either a string or a compiled filter expression. | Aldo Cortesi | 2012-09-14 | 1 | -3/+6 | |
| | ||||||
* | Getter and setter for path component on Requests. | Aldo Cortesi | 2012-08-19 | 1 | -1/+19 | |
| | ||||||
* | Little bit of love for the unit tests. | Aldo Cortesi | 2012-08-19 | 2 | -1/+19 | |
| | ||||||
* | Command-line options for header setting. | Aldo Cortesi | 2012-08-19 | 1 | -3/+9 | |
| | ||||||
* | Add SetHeaders, analogous to ReplaceHooks, with a graphical editor in ↵ | Aldo Cortesi | 2012-08-18 | 1 | -5/+62 | |
| | | | | | | | mitmproxy (H shortcut). SetHeaders defines headers that are set on flows, based on a matching pattern. Existing headers are over-ridden. | |||||
* | Send tracebacks from content viewers to event log. | Aldo Cortesi | 2012-08-18 | 1 | -5/+20 | |
| | | | | Also, 100% test coverage for content viewers. | |||||
* | Further simplifcation and testing of contentviews. | Aldo Cortesi | 2012-08-18 | 1 | -37/+21 | |
| | ||||||
* | Huge cleanup of content viewers. | Aldo Cortesi | 2012-08-18 | 1 | -44/+58 | |
| | ||||||
* | Optional AMF decoding support | Sahn Lam | 2012-08-17 | 2 | -0/+23 | |
| | | | | If PyAMF is installed, enable AMF decoding. | |||||
* | Fix unit tests after argparse conversion. | Aldo Cortesi | 2012-08-18 | 1 | -3/+3 | |
| | ||||||
* | Add a size() method to flow.Request and flow.Response. | Aldo Cortesi | 2012-08-04 | 1 | -0/+7 | |
| | ||||||
* | Fix flow read unit test to accomodate more tolerant dumpfile parsing. | Aldo Cortesi | 2012-07-24 | 1 | -4/+2 | |
| | ||||||
* | removed assigned but unread variables | András Veres-Szentkirályi | 2012-07-15 | 3 | -3/+3 | |
| | ||||||
* | removed unused imports | András Veres-Szentkirályi | 2012-07-15 | 7 | -17/+4 | |
| | ||||||
* | Add an ~a filter expression, matching an asset content type in responses. | Aldo Cortesi | 2012-07-14 | 1 | -0/+6 | |
| | | | | | | Asset content types are Javascript, images, Flash and CSS. This is useful because doing a quick "!~a" while auditing an app will filter out the majority of the static asset cruft, letting you focus on what matters. | |||||
* | Refine semantics of replay_request method. | Aldo Cortesi | 2012-07-10 | 1 | -6/+3 | |
| | ||||||
* | Make WSGI apps work in transparent mode. | Aldo Cortesi | 2012-07-10 | 1 | -0/+8 | |
| | ||||||
* | Test replay corner cases. Fix discovered bugs. | Aldo Cortesi | 2012-07-09 | 1 | -0/+12 | |
| | ||||||
* | Unit test request replay thread. | Aldo Cortesi | 2012-07-09 | 1 | -0/+10 | |
| | | | | | | This is a small patch, but is the culmination of lots of work: we can now unit test the deep innards of mitmproxy, with coverage. There's a lot more to come in this vein. | |||||
* | Refator server tests to use flow.FlowMaster and flow.State | Aldo Cortesi | 2012-07-09 | 3 | -43/+33 | |
| | ||||||
* | Add streaming to FlowMaster | Aldo Cortesi | 2012-07-09 | 1 | -1/+27 | |
| | ||||||
* | Remove ODict tests. ODict is now in netlib. | Aldo Cortesi | 2012-07-09 | 1 | -111/+0 | |
| | ||||||
* | Add a domain match filter (~d regex) | Aldo Cortesi | 2012-07-06 | 1 | -0/+6 | |
| | ||||||
* | Fix error when serializing reverted SSL flows. | Aldo Cortesi | 2012-07-05 | 1 | -0/+7 | |
| | ||||||
* | Catch and handle SSL connection errors. | Aldo Cortesi | 2012-07-01 | 1 | -1/+3 | |
| | ||||||
* | Beef up logging substantially. | Aldo Cortesi | 2012-07-01 | 1 | -3/+3 | |
| | ||||||
* | Handle invalid data more gracefully. | Aldo Cortesi | 2012-06-30 | 1 | -1/+14 | |
| | | | | Fixes #47 | |||||
* | Serialization and de-serialization of new cert format. | Aldo Cortesi | 2012-06-28 | 2 | -12/+4 | |
| | ||||||
* | Remove certutils from mitmproxy. | Aldo Cortesi | 2012-06-27 | 3 | -256/+0 | |
| | ||||||
* | Remove -T and -U command-line options. | Aldo Cortesi | 2012-06-26 | 1 | -8/+0 | |
| | | | | They're redundant convenience options, and we need more space. | |||||
* | Adapt for API changes in netlib. | Aldo Cortesi | 2012-06-23 | 1 | -1/+0 | |
| | ||||||
* | Move wsgi to netlib. | Aldo Cortesi | 2012-06-19 | 2 | -110/+13 | |
| | ||||||
* | Extract protocol and tcp server implementations into netlib. | Aldo Cortesi | 2012-06-19 | 2 | -256/+0 | |
| | ||||||
* | Refactor protocol.py to remove dependence on flow and utils. | Aldo Cortesi | 2012-06-17 | 2 | -33/+31 | |
| | ||||||
* | Pull out protocol components into protocol.py | Aldo Cortesi | 2012-06-16 | 3 | -137/+139 | |
| |