Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Import cache store control into console controller | Henrik Nordstrom | 2011-02-10 | 5 | -13/+49 | |
| | ||||||
* | Simple record & playback functionality | Henrik Nordstrom | 2011-02-10 | 9 | -4/+668 | |
| | ||||||
* | Basic HTTP/1.1 Support | Henrik Nordstrom | 2011-02-10 | 2 | -60/+175 | |
| | | | | | | | | | | | | | | | | | | | Adds support for chunked transfer encoding, and a couple other minor protocol corrections. Improve HTTP support - Support intercepted requests with Host header - Support HEAD requests proper - Support any HTTP method including extensions, not just a couple known ones Support expect: 100-continue and 100 Continue messages Persistent client connections Generalize ServerConnection a bit in preparation for keep-alive support Correct HTTP status codes on errors forwarding the request | |||||
* | Optimize CONNECT responses, sent in a single packet | Henrik Nordstrom | 2011-02-10 | 1 | -3/+5 | |
| | ||||||
* | Sort header names for a predictable result | Henrik Nordstrom | 2011-02-10 | 1 | -1/+1 | |
| | ||||||
* | Move try_del to utils | Henrik Nordstrom | 2011-02-10 | 2 | -15/+15 | |
| | ||||||
* | Automatically update response message when editing response code | Henrik Nordstrom | 2011-02-10 | 1 | -2/+4 | |
| | ||||||
* | Ignore compiled mimtmproxyc & mitmdumpc | Henrik Nordstrom | 2011-02-10 | 1 | -0/+2 | |
| | ||||||
* | Add response creation to edit function on intercepted requests | Henrik Nordstrom | 2011-02-10 | 2 | -15/+49 | |
| | ||||||
* | Terminate workers when main thread terminates | Henrik Nordstrom | 2011-02-10 | 1 | -0/+1 | |
| | ||||||
* | Merge remote branch 'hno/master' | Aldo Cortesi | 2011-02-06 | 2 | -7/+8 | |
|\ | ||||||
| * | Fix kill() again, got broken by the change to use None | Henrik Nordstrom | 2011-02-03 | 2 | -6/+7 | |
| | | ||||||
| * | Merge remote-tracking branch 'origin/master' | Henrik Nordstrom | 2011-02-03 | 8 | -79/+76 | |
| |\ | ||||||
| * | | Messages may need to stay in the controller for considerable | Henrik Nordstrom | 2011-02-03 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | amount of time. Don't use a timeout waiting for the controller response. Example where this happens is intercepted flows. | |||||
* | | | Further fine-tuning for pretty_xmlish. | Aldo Cortesi | 2011-02-06 | 2 | -9/+12 | |
| | | | ||||||
* | | | Rip out BeautifulSoup, and use a custom XML-ish prettyprinter. | Aldo Cortesi | 2011-02-06 | 5 | -2035/+97 | |
| | | | ||||||
* | | | Add option to tell mitmproxy which interfaces to bind to. | Aldo Cortesi | 2011-02-06 | 3 | -6/+19 | |
| | | | ||||||
* | | | Also serialize ClientConnection and flow backups. | Aldo Cortesi | 2011-02-06 | 4 | -16/+28 | |
| |/ |/| | ||||||
* | | Get rid of ReplayConnection - we now have only one ClientConnection class. | Aldo Cortesi | 2011-02-04 | 8 | -48/+45 | |
| | | ||||||
* | | Change "connection" to the less confusing "client_conn" throughout. | Aldo Cortesi | 2011-02-03 | 8 | -57/+57 | |
|/ | ||||||
* | Fine-tune completion a bit. | Aldo Cortesi | 2011-02-03 | 5 | -1/+16 | |
| | ||||||
* | Add timestamps to flows. | Aldo Cortesi | 2011-02-03 | 6 | -12/+56 | |
| | | | | | For now, these are only displayed on the connection view screen, with second granularity. | |||||
* | Fix tracking of edited state. | Aldo Cortesi | 2011-02-03 | 2 | -3/+3 | |
| | ||||||
* | "Q" quits without confirmation prompt. | Aldo Cortesi | 2011-02-03 | 1 | -0/+3 | |
| | ||||||
* | Test suite rejiggering and cleanup. | Aldo Cortesi | 2011-02-03 | 12 | -113/+197 | |
| | ||||||
* | Improve script handling. | Aldo Cortesi | 2011-02-02 | 3 | -4/+35 | |
| | | | | | | - Display output in external viewer when script exits with error. - Add a "changed" indicator to show if a request can be reverted. | |||||
* | README -> README.mkd | Aldo Cortesi | 2011-02-02 | 1 | -0/+0 | |
| | ||||||
* | Use last path specified as default prompt. | Aldo Cortesi | 2011-02-02 | 1 | -9/+23 | |
| | ||||||
* | View script debug output (stderr) in pager. | Aldo Cortesi | 2011-02-02 | 4 | -34/+46 | |
| | ||||||
* | Add an external script API. | Aldo Cortesi | 2011-01-31 | 8 | -33/+138 | |
| | | | | | | | External scripts can read a flow, modify it, and then return it to mitmproxy using a simple API. The "|" keyboard shortcut within mitmproxy prompts the user for a script. | |||||
* | Factor out flow unit tests into speparate file. | Aldo Cortesi | 2011-01-31 | 3 | -126/+134 | |
| | ||||||
* | Restructure to make subclassing Flow unnecessary. | Aldo Cortesi | 2011-01-31 | 3 | -91/+99 | |
| | ||||||
* | Re-jigger flow view shortcuts so we don't over-ride global shortcuts. | Aldo Cortesi | 2011-01-31 | 1 | -16/+23 | |
| | ||||||
* | Better help page statusbar text. | Aldo Cortesi | 2011-01-30 | 1 | -1/+5 | |
| | ||||||
* | Next and previous flow shortcuts from within flow view. | Aldo Cortesi | 2011-01-30 | 1 | -7/+37 | |
| | ||||||
* | UI tweaks | Aldo Cortesi | 2011-01-30 | 2 | -57/+82 | |
| | | | | | - Make flow view state persistent (request/response, body view mode). - Don't exit flow view mode when viewing help. | |||||
* | Prompt user on quit. | Aldo Cortesi | 2011-01-28 | 2 | -9/+18 | |
| | ||||||
* | Nicer statusbar messages, with timed expiry. | Aldo Cortesi | 2011-01-28 | 2 | -4/+12 | |
| | ||||||
* | Make pretty-printing more robust. | Aldo Cortesi | 2011-01-28 | 3 | -7/+16 | |
| | | | | | | Also, since BeautifulSoup is so damn slow, print a statusbar message saying that we're calculating a pretty version of the response. Maybe I should add hangman or something, becuase on a 200k document this can take ages. | |||||
* | Basix XML/HTML pretty-printing in flow viewer. | Aldo Cortesi | 2011-01-27 | 5 | -25/+2088 | |
| | ||||||
* | Handle nonexistent load files gracefully. | Aldo Cortesi | 2011-01-27 | 2 | -5/+7 | |
| | | | | Also improve IOError statusbar messages. | |||||
* | Add command to write request or response body to file. | Aldo Cortesi | 2011-01-27 | 1 | -0/+21 | |
| | ||||||
* | Refine flow saving shortcuts. | Aldo Cortesi | 2011-01-27 | 3 | -12/+29 | |
| | | | | | | "S" to save all flows. "s" to save just the current flow. | |||||
* | Fine-tune threading and fix an exception. | Aldo Cortesi | 2011-01-27 | 2 | -12/+20 | |
| | ||||||
* | Kill deadlock that sometimes occurred on shutdown. | Aldo Cortesi | 2011-01-27 | 5 | -15/+20 | |
| | ||||||
* | Switch to BSON for data serialization. | Aldo Cortesi | 2011-01-27 | 7 | -5/+520 | |
| | ||||||
* | Add tab completion for save and load path specs. | Aldo Cortesi | 2011-01-27 | 2 | -5/+110 | |
| | ||||||
* | Fix UI sync bugs introduced by flow serialization. | Aldo Cortesi | 2011-01-26 | 3 | -3/+10 | |
| | ||||||
* | Add saving and loading of complete flows for later replay and analysis. | Aldo Cortesi | 2011-01-26 | 3 | -43/+77 | |
| | ||||||
* | Add serialization hooks to flows and flow component objects. | Aldo Cortesi | 2011-01-26 | 7 | -1/+148 | |
| |