aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/dump.py
Commit message (Collapse)AuthorAgeFilesLines
...
| * Move app instantiation out of proxy.py.Aldo Cortesi2013-07-241-0/+6
| |
* | update tests to reflect changes to options.scriptsMaximilian Hils2013-06-171-1/+2
| |
* | Merge remote-tracking branch 'origin/scripts_improvements' into 0.10Maximilian Hils2013-06-161-5/+5
|\ \ | |/ |/|
| * add support for multiple scripts and script arguments. refs #76Maximilian Hils2013-06-131-5/+5
| |
* | always read files in binary modeMaximilian Hils2013-06-161-1/+1
|/
* Un-break unit tests. Tsk tsk.Aldo Cortesi2013-03-171-0/+1
|
* Enable --host option for mitmdumpAldo Cortesi2013-03-171-5/+6
|
* Introduce a filtered flow writer, and use it in dump.pyAldo Cortesi2013-03-141-2/+2
| | | | Fixes #104
* Remove __slots__ to make it possible to inherit from Options classes.Aldo Cortesi2013-03-031-2/+2
|
* Significantly refactor the master/slave message passing interface.Aldo Cortesi2013-02-171-11/+11
|
* Move cleanBin and hexdump into netutils.Aldo Cortesi2012-09-241-2/+3
|
* Command-line options for header setting.Aldo Cortesi2012-08-191-0/+5
|
* Be more tolerant of corrupted or truncated flows.Aldo Cortesi2012-07-241-2/+1
| | | | | | We load as far as possible. mitmproxy will only terminate if it was not able to recover any flows. mitmdump will stop loading as soon as an error is encountered, but not exit with an error.
* fix -r option, read file in binary modeMaximilian Hils2012-07-241-1/+1
|
* Use FlowMaster stream from mitmdump.Aldo Cortesi2012-07-091-6/+1
|
* Flush after terminal output.Aldo Cortesi2012-07-011-0/+3
| | | | Makes behaviour on the shell less mysterious.
* Beef up logging substantially.Aldo Cortesi2012-07-011-0/+4
|
* Nose mopup: docs, no cover pragmas, a few missing path specs.Aldo Cortesi2012-06-091-3/+2
|
* Fix AttributeError when shutting down a writing mitmdump.Aldo Cortesi2012-05-171-1/+1
|
* Include a formatted exception in WSGI error page.Aldo Cortesi2012-05-071-1/+1
|
* Shut mitmdump down gracefully on SIGTERM.Aldo Cortesi2012-04-151-0/+5
| | | | This is a hack at the moment, but needs must.
* Move mitmproxy reverse proxy shortcut to "P".Aldo Cortesi2012-03-181-1/+0
| | | | Also don't expose help from the help screen.
* Fix unit tests.Aldo Cortesi2012-03-171-2/+3
|
* Add specification of replacement patterns on the command line.Aldo Cortesi2012-03-171-0/+4
|
* Repair unit tests after nopop introduction.Aldo Cortesi2012-03-101-1/+3
|
* License notifications, minor docs.Aldo Cortesi2012-02-231-0/+15
|
* Gracefully handle invalid data format passed to -r flag.Aldo Cortesi2012-02-091-1/+4
|
* Removed unused importsAndrás Veres-Szentkirályi2011-08-181-1/+1
|
* Add a basic Flow processor example.Aldo Cortesi2011-08-131-1/+0
|
* Add a "done" event for scripts.Aldo Cortesi2011-08-051-1/+2
| | | | Called exactly once after all other events.
* Make scripted rewriting of saved traffic work in mitmdump.Aldo Cortesi2011-08-051-9/+10
|
* Rip out autodecodeAldo Cortesi2011-08-041-2/+0
| | | | | | | | We simplify things as follows: - If we're in "pretty" view mode, we autodecode. - Otherwise, we display raw data, and the user can manually encode/decode with z shortcut.
* Request class now has a clean pydoc profile.Aldo Cortesi2011-08-041-1/+1
|
* Further interface cleaning.Aldo Cortesi2011-08-031-3/+3
|
* Add script hooks, enable new engine for mitmdump.Aldo Cortesi2011-08-031-22/+5
|
* Move the event notification mechanism into flow.pyAldo Cortesi2011-08-031-13/+4
|
* Unit test++Aldo Cortesi2011-08-021-1/+1
|
* General cleanup.Aldo Cortesi2011-08-021-2/+2
| | | | | Cut out unused variables and code, generally shut up pychecker as much as is reasonable.
* Fix a crash in mitmdump event display.Aldo Cortesi2011-07-231-1/+1
|
* Extend eventlog information.Aldo Cortesi2011-07-231-1/+4
| | | | Also, squash an SSL-related bug revealed by the extended logging.
* Add an eventlog option to mitmdumpAldo Cortesi2011-07-231-0/+14
| | | | | This shows client connections, disconnections and requests (before a complete flow is assembled). We need to add an analogous display to mitmproxy.
* Don't turn off output if -v flag is passed more than twice.Aldo Cortesi2011-07-231-1/+2
|
* Removes should_autodecode attribute from Response. Adds commandline option ↵Stephen Altamirano2011-07-211-2/+4
| | | | 'd' to toggle autodecode, adds togglable option 'd' to do the same
* Introduce an anti-compression command-line argument.Aldo Cortesi2011-07-151-0/+2
| | | | | This is on by default, which means we avoid compressed content unless the -z flag is specified.
* Anticache and refresh_server_playback options are applied before flows are ↵Aldo Cortesi2011-05-151-2/+2
| | | | | | | loaded. You can now use mitmdump to preview how these options work, by running mitmdump against a set of saved flows, and viewing the output.
* Add -r option to mitmdump and mitmproxy.Aldo Cortesi2011-05-151-0/+12
| | | | | | This option reads a set of flows from a file. I've also regularized the mitmdump and mitmproxy command-line signatures by removing mitmproxy's old way of specifying flow loads through naked arguments.
* Add a -n option which tells the tools not to bind a proxy.Aldo Cortesi2011-05-141-0/+1
| | | | This is useful when you just want to inspect or process dumps.
* Add a stickyauth option.Aldo Cortesi2011-03-201-0/+4
| | | | | | | 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.
* 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
|