aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/dump.py
Commit message (Collapse)AuthorAgeFilesLines
* Make mitmdump handle invalid serialized data gracefully.Aldo Cortesi2011-03-111-2/+1
|
* Display Errors and killed connections in mitmdump.Aldo Cortesi2011-03-111-32/+56
|
* Add --norefresh to stop refreshing server playback to mitmdump.Aldo Cortesi2011-03-111-0/+2
| | | | Also, make cookie parsing for refreshing more error-tolerant.
* Add an --anticache option to mitmdump.Aldo Cortesi2011-03-091-4/+7
| | | | | | | This removes all headers that might cause a server to return 304-not-modified. For now, all the new features are going into mitmdump - everything will be ported over to mitmproxy once I have the feature set locked down.
* Make mitmdump server playback also exit by default.Aldo Cortesi2011-03-061-1/+2
| | | | Like client playback, the --keepserving option makes mitmdump keep serving.
* Make mitmdump exit after client replay is complete by default.Aldo Cortesi2011-03-061-1/+5
| | | | Add an option --keepserving to make it keep serving after replay.
* Add client replay options to mitmdump.Aldo Cortesi2011-03-061-11/+23
|
* Massage namespace to make room for client replay.Aldo Cortesi2011-03-051-4/+4
| | | | Mostly replay -> server_replay
* Add an indicator that sticky cookies have been applied in mitmdump.Aldo Cortesi2011-02-251-1/+4
|
* Move stringification funcs from proxy to dump.Aldo Cortesi2011-02-251-6/+17
|
* Add -c and -C options to mitmdump to control sticky cookies.Aldo Cortesi2011-02-251-0/+5
| | | | | | It's dumb that this needs to be two different options, but optparse doesn't support optional arguments. It would be much nicer to just have "-c" for "all", and "-c filter" for a specified filter.
* Add a way for users to specify header significance in server replay.Aldo Cortesi2011-02-231-1/+2
| | | | | | Also add the --rheader command-line option to mitmdump to let the user specify an arbitrary number of significant headers. The default is to treat no headers as significant.
* Move script hooks into the flow primitives.Aldo Cortesi2011-02-211-14/+7
| | | | This lets handle scripts in corner cases like playback situations more easily.
* Add --kill option to mitmdumpAldo Cortesi2011-02-211-3/+12
| | | | | | If this option is passed all requests that are not part of a replayed conversation are killed. If the option is not passed, such requests are passed through to the server as usual.
* First pass of playback function for mitmdump.Aldo Cortesi2011-02-211-1/+12
|
* Refactor Flow primitives to remove HTTP1.0 assumption.Aldo Cortesi2011-02-191-11/+3
| | | | | | This is a big patch removing the assumption that there's one connection per Request/Response pair. It touches pretty much every part of mitmproxy, so expect glitches until everything is ironed out.
* First pass of script hooks for mitmdump.Aldo Cortesi2011-02-181-6/+24
| | | | Also stub out docs, improve mitmdump error handling.
* Whitespace in mitmdump output.Aldo Cortesi2011-02-171-5/+6
|
* Refine verbose mitmdump output.Aldo Cortesi2011-02-171-8/+17
|
* Improve mitmdump text output.Aldo Cortesi2011-02-171-14/+21
|
* Whitepsace and extraneous code.Aldo Cortesi2011-02-171-2/+0
|
* Add filtering to mitmdump.Aldo Cortesi2011-02-171-5/+10
|
* Add file writing to mitmdump.Aldo Cortesi2011-02-171-1/+18
|
* Tweaks and cleanups for mitmdump.Aldo Cortesi2011-02-161-27/+37
|
* Don't leave dangling browser connections for pipelined requests.Aldo Cortesi2011-02-161-0/+4
|
* Initial port of mitmdump to Flows.Aldo Cortesi2011-02-161-27/+39
|
* Test suite rejiggering and cleanup.Aldo Cortesi2011-02-031-0/+1
|
* Put DumpMaster in its own file.Aldo Cortesi2010-03-011-0/+39
It's going to become a more important part of the mitmproxy suite now.