Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add script hooks, enable new engine for mitmdump. | Aldo Cortesi | 2011-08-03 | 5 | -31/+68 |
| | |||||
* | Rip out old script interface, start replacing with new stubs. | Aldo Cortesi | 2011-08-03 | 10 | -53/+55 |
| | | | | Scripts are broken for now. | ||||
* | Start stubbing out a much more powerful script architecture. | Aldo Cortesi | 2011-08-03 | 3 | -0/+47 |
| | |||||
* | Refresh current connection when toggling autodecode. | Aldo Cortesi | 2011-08-02 | 2 | -6/+5 |
| | | | | Also fix the unit tests I forgot to commit... | ||||
* | Unit test++ | Aldo Cortesi | 2011-08-02 | 3 | -21/+69 |
| | |||||
* | General cleanup. | Aldo Cortesi | 2011-08-02 | 3 | -25/+3 |
| | | | | | Cut out unused variables and code, generally shut up pychecker as much as is reasonable. | ||||
* | We no longer need to track clientconnections. | Aldo Cortesi | 2011-08-02 | 1 | -7/+0 |
| | |||||
* | Improve performance of loading flows from a file hugely. | Aldo Cortesi | 2011-08-01 | 1 | -4/+4 |
| | | | | Fell into the "expensive __eq__ method" trap. Oh, Python, you little scamp. | ||||
* | Refactor the way we calculate views of the flow list. | Aldo Cortesi | 2011-08-01 | 2 | -8/+8 |
| | | | | | The naive approach we used before recalculated the view on every access, and consequently had serious performance problems. | ||||
* | Add decoding/encoding for requests. | Aldo Cortesi | 2011-08-01 | 1 | -0/+25 |
| | |||||
* | Merge remote-tracking branch 'alts/encoding' | Aldo Cortesi | 2011-07-28 | 1 | -0/+25 |
|\ | |||||
| * | Adds test method for Response encoding and decoding | Stephen Altamirano | 2011-07-26 | 1 | -0/+25 |
| | | |||||
* | | Changes replace logic to function in both Python 2.6.x and 2.7.x | Stephen Altamirano | 2011-07-26 | 1 | -2/+2 |
|/ | | | | Tests now only assume Python 2.6.x rather than requiring 2.7.x. This does not preclude the use of flags as a kwarg in replace | ||||
* | Add an eventlog option to mitmdump | Aldo Cortesi | 2011-07-23 | 1 | -2/+3 |
| | | | | | This shows client connections, disconnections and requests (before a complete flow is assembled). We need to add an analogous display to mitmproxy. | ||||
* | Also replace strings path for requests. | Aldo Cortesi | 2011-07-22 | 1 | -1/+3 |
| | |||||
* | Add utility functions to search and replace strings in flows | Aldo Cortesi | 2011-07-22 | 3 | -1/+46 |
| | | | | | | | | | | This is a common task in pentesting scenarios. This commit adds the following functions: utils.Headers.replace proxy.Request.replace proxy.Response.replace flow.Flow.replace | ||||
* | Adds encode counterparts to decode functions | Stephen Altamirano | 2011-07-17 | 1 | -16/+14 |
| | |||||
* | Refine encoding support | Aldo Cortesi | 2011-07-17 | 1 | -0/+2 |
| | | | | | - Push decoding down into the LRU cache - Cope gracefully with corrupted data and incorrect encoding headers | ||||
* | Adds support for content encoding, namely gip and deflate | alts | 2011-07-16 | 2 | -1/+32 |
| | |||||
* | Add a pretty-printing mode for urlencoded form data. | Aldo Cortesi | 2011-07-15 | 1 | -0/+7 |
| | |||||
* | Introduce an anti-compression command-line argument. | Aldo Cortesi | 2011-07-15 | 1 | -0/+1 |
| | | | | | This is on by default, which means we avoid compressed content unless the -z flag is specified. | ||||
* | Refine path completion somewhat. | Aldo Cortesi | 2011-07-14 | 1 | -1/+2 |
| | | | | Make it match the behaviour of vim and mutt more closely | ||||
* | Rewrite Headers object to preserve order and case. | Aldo Cortesi | 2011-07-14 | 2 | -94/+24 |
| | |||||
* | Cast some data read from dump files to str, to prevent unicode promotion. | Aldo Cortesi | 2011-07-01 | 1 | -1/+5 |
| | | | | | This fixes a bug that caused a traceback when de-serialized requests were replayed. Also adds unit tests for the problem. | ||||
* | JSON pretty-printing. | Aldo Cortesi | 2011-06-30 | 1 | -1/+9 |
| | | | | | Also rename the display modes ("pretty" instead of "indent"), and expand the built-in documentation. | ||||
* | Try not to hang when user views large request & response bodies | Aldo Cortesi | 2011-06-27 | 1 | -0/+8 |
| | | | | | | | | | | Two different strategies here: - Use a simple heuristic to detect if we're looking at XML data when indent mode is used. On non-XML data we can hang even on small documents. - Only view partial data for large bodies. At the moment the cutoff is 100k. I might finetune this later. | ||||
* | Add a hideous kludge to fix not-yet-valid certificates. | Aldo Cortesi | 2011-06-11 | 1 | -0/+2 |
| | | | | | | | | | | | | - The OpenSSL x509 has no way to explicitly set the notBefore value on certificates. - If two systems have the same configured time, it's possible to return a certificate before the validity start time has arrived. - We "solve" this by waiting for one second when a certificate is first generated before returning the cert. The alternative is to rewrite pretty much all of our certificate generation, a thought too horrible to contemplate. | ||||
* | Add a new flow loading mechanism. | Aldo Cortesi | 2011-05-15 | 2 | -0/+28 |
| | | | | | We now simulate the normal connection flow when we load flows. That means that we can run scripts, hooks, sticky cookies, etc. | ||||
* | unit test coverage ++ | Aldo Cortesi | 2011-03-20 | 4 | -0/+27 |
| | |||||
* | Add a stickyauth option. | Aldo Cortesi | 2011-03-20 | 1 | -0/+40 |
| | | | | | | | This allows us to replay an HTTP Authorization header, in the same way as we replay cookies using stickycookies. This lets us conveniently get at HTTP Basic Auth protected resources through the proxy, but is not enough to do the same for HTTP Digest auth. We'll put that on the todo list. | ||||
* | Reverse order of flows in mitmproxy. | Aldo Cortesi | 2011-03-20 | 1 | -6/+6 |
| | | | | It matches user expectations much better to have new flows appended to the bottom. | ||||
* | Revamp key generation. | Aldo Cortesi | 2011-03-18 | 2 | -1/+7 |
| | | | | | | | | | | | We now create three different files in the .mitmproxy directory when a dummy CA is made: mitmproxy-ca.pem - the CA, including private key mitmproxy-ca-cert.p12 - A pkcs12 version of the certificate, for distribution to Windows. mitmproxy-ca-cert.pem - A PEM version of the certificate, for distribution to everyone else. | ||||
* | Interrupt interception when deleting an intercepting flow. | Aldo Cortesi | 2011-03-15 | 1 | -3/+0 |
| | | | | Prompting the user for this is annoying. | ||||
* | Fix hang on shutdown. | Aldo Cortesi | 2011-03-15 | 2 | -2/+3 |
| | |||||
* | Do pre-processing of requests before replay. | Aldo Cortesi | 2011-03-15 | 1 | -0/+1 |
| | | | | | This enables scripts, anticache, server playback and sticky cookies for request replays. | ||||
* | Improve responsiveness of request and response viewing. | Aldo Cortesi | 2011-03-15 | 1 | -0/+31 |
| | | | | | | | | - Computing the view of a large body is expensive, so we introduce an LRU cache to hold the latest 20 results. - Use ListView more correctly, passing it individual urwid.Text snippets, rather than a single large one. This hugely improves render time. | ||||
* | Fix unit tests on OSX when a system proxy is configured. | Aldo Cortesi | 2011-03-14 | 1 | -4/+7 |
| | |||||
* | Fix flow formatting unit tests. | Aldo Cortesi | 2011-03-14 | 1 | -4/+2 |
| | |||||
* | Fix a traceback sometimes triggered viewing a connection with no response. | Aldo Cortesi | 2011-03-13 | 1 | -1/+2 |
| | |||||
* | Add client plaback to mitmproxy. | Aldo Cortesi | 2011-03-13 | 1 | -2/+4 |
| | |||||
* | flow.py 100% test coverage | Aldo Cortesi | 2011-03-13 | 1 | -1/+11 |
| | |||||
* | mitmproxy prompted input now display previously set value. | Aldo Cortesi | 2011-03-13 | 2 | -5/+5 |
| | | | | | E.g. if you set a limit, then re-enter the limit prompt, you start with the currently set value. | ||||
* | Unit tests for proxy.read_chunked | Aldo Cortesi | 2011-03-12 | 1 | -0/+17 |
| | |||||
* | Unit tests for cmdline.py | Aldo Cortesi | 2011-03-12 | 1 | -0/+29 |
| | |||||
* | console.py 100% test coverage | Aldo Cortesi | 2011-03-12 | 1 | -1/+16 |
| | |||||
* | netstring.py 100% unit test coverage. | Aldo Cortesi | 2011-03-12 | 1 | -0/+10 |
| | |||||
* | Make mitmdump handle invalid serialized data gracefully. | Aldo Cortesi | 2011-03-11 | 1 | -0/+10 |
| | |||||
* | Display Errors and killed connections in mitmdump. | Aldo Cortesi | 2011-03-11 | 1 | -7/+0 |
| | |||||
* | Add --norefresh to stop refreshing server playback to mitmdump. | Aldo Cortesi | 2011-03-11 | 2 | -1/+12 |
| | | | | Also, make cookie parsing for refreshing more error-tolerant. | ||||
* | Stub out refresh for server-side replay. | Aldo Cortesi | 2011-03-09 | 1 | -1/+19 |
| |