aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix tracking of edited state.Aldo Cortesi2011-02-032-3/+3
|
* "Q" quits without confirmation prompt.Aldo Cortesi2011-02-031-0/+3
|
* Test suite rejiggering and cleanup.Aldo Cortesi2011-02-0312-113/+197
|
* Improve script handling.Aldo Cortesi2011-02-023-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.mkdAldo Cortesi2011-02-021-0/+0
|
* Use last path specified as default prompt.Aldo Cortesi2011-02-021-9/+23
|
* View script debug output (stderr) in pager.Aldo Cortesi2011-02-024-34/+46
|
* Add an external script API.Aldo Cortesi2011-01-318-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 Cortesi2011-01-313-126/+134
|
* Restructure to make subclassing Flow unnecessary.Aldo Cortesi2011-01-313-91/+99
|
* Re-jigger flow view shortcuts so we don't over-ride global shortcuts.Aldo Cortesi2011-01-311-16/+23
|
* Better help page statusbar text.Aldo Cortesi2011-01-301-1/+5
|
* Next and previous flow shortcuts from within flow view.Aldo Cortesi2011-01-301-7/+37
|
* UI tweaksAldo Cortesi2011-01-302-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 Cortesi2011-01-282-9/+18
|
* Nicer statusbar messages, with timed expiry.Aldo Cortesi2011-01-282-4/+12
|
* Make pretty-printing more robust.Aldo Cortesi2011-01-283-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 Cortesi2011-01-275-25/+2088
|
* Handle nonexistent load files gracefully.Aldo Cortesi2011-01-272-5/+7
| | | | Also improve IOError statusbar messages.
* Add command to write request or response body to file.Aldo Cortesi2011-01-271-0/+21
|
* Refine flow saving shortcuts.Aldo Cortesi2011-01-273-12/+29
| | | | | | "S" to save all flows. "s" to save just the current flow.
* Fine-tune threading and fix an exception.Aldo Cortesi2011-01-272-12/+20
|
* Kill deadlock that sometimes occurred on shutdown.Aldo Cortesi2011-01-275-15/+20
|
* Switch to BSON for data serialization.Aldo Cortesi2011-01-277-5/+520
|
* Add tab completion for save and load path specs.Aldo Cortesi2011-01-272-5/+110
|
* Fix UI sync bugs introduced by flow serialization.Aldo Cortesi2011-01-263-3/+10
|
* Add saving and loading of complete flows for later replay and analysis.Aldo Cortesi2011-01-263-43/+77
|
* Add serialization hooks to flows and flow component objects.Aldo Cortesi2011-01-267-1/+148
|
* Abstract flow management out of the interactive code.Aldo Cortesi2011-01-257-203/+257
|
* Documentation updates.Aldo Cortesi2011-01-253-4/+9
|
* Add FAQ entry for installing globally trusted certs for pentesting Windows apps.Aldo Cortesi2011-01-173-2/+63
|
* Fix indentation in previous patch.Aldo Cortesi2010-09-061-8/+8
|
* Wrap read request, concatenating partial reads until whole request have been ↵Henrik Nordström2010-09-061-0/+9
| | | | read
* Release mitmproxy 0.2Aldo Cortesi2010-03-013-5/+29
|
* Add mitmproxy command line flags for a number of filter expressions.Aldo Cortesi2010-03-012-4/+58
| | | | For now, these are supported: intercept, limit, sticky cookies, beep
* Housekeeping: todo updates, move put handler_ methods together in console.py.Aldo Cortesi2010-03-012-12/+16
|
* Put DumpMaster in its own file.Aldo Cortesi2010-03-013-38/+41
| | | | It's going to become a more important part of the mitmproxy suite now.
* Just make using the user's terminal background the default.Aldo Cortesi2010-03-012-25/+16
| | | | | | This just makes sense. Later on, we'll have a config file in which users can set the palette, so that they can over-ride the default background if they really want.
* Split mitmproxy and mitmdump - mitmdump is the non-interactive verison of ↵Aldo Cortesi2010-03-014-24/+65
| | | | mitmproxy.
* Don't intercept replays - it makes no sense to do so.Aldo Cortesi2010-03-011-16/+12
|
* Don't show error if user tries to save, but specifies no path.Aldo Cortesi2010-03-012-2/+2
|
* Add "A" key, to accept all intercepted connections.Aldo Cortesi2010-03-011-3/+14
|
* Make beeping more general.Aldo Cortesi2010-03-012-27/+18
| | | | | | | | | | | | | | | | - The "B" key now sets a filter pattern. Whenever the filter matches, the terminal beeps. - The beep specification is now stored in the State object, where I want to keep all mutable state. - I've removed the startup flags for beeping for now. We probably want to let users specify a number of options on startup, including interception patterns and limits. When we do this, we should also separate out the dumping and curses programs, because many of these options will only make sense in one of the two. - This isn't an exact replacement for the beep functionality I ripped out, because specifying beeping on intercept is slightly cumbersome (you need to re-specify the intercept pattern using B). Sorry - we'll add a better way soon.
* Maintain compatibility with 0.9.8.x of urwid.Aldo Cortesi2010-03-012-18/+38
| | | | | This is the most common deployed version, so it's worth doing a bit of extra work to make sure mitmproxy runs smoothly under it.
* Show error if compiling of an expression fails.Thomas Roth2010-02-261-1/+3
|
* Added beeping. --bireq and --bires enables beeping on intercepted ↵Thomas Roth2010-02-263-4/+31
| | | | requests/responses.
* Fix hang when a POST is made with a 0 content length.Aldo Cortesi2010-02-261-1/+1
|
* Added a 'keep terminal background' option (-t), so that you can use it with ↵Thomas Roth2010-02-262-26/+39
| | | | your own background color. (Foreground color following.)
* Huge speed improvements if more than one request is in the queue. Speeds up ↵Thomas Roth2010-02-251-3/+8
| | | | every request by 0.1 seconds.
* Small improvement in regular expression compiler exception handling.Thomas Roth2010-02-251-6/+2
|