Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Test suite, remove extraneous code. | Aldo Cortesi | 2013-01-28 | 1 | -5/+2 | |
|/ | ||||||
* | Force flush of file content in dump | phil plante | 2013-01-24 | 1 | -0/+1 | |
| | | | The dump file would be end up corrupted sometimes when working with mitmdump in a VM. Adding an explicit flush seems to have resolved the file sync issues. | |||||
* | Add tests for client certificate support. | Aldo Cortesi | 2013-01-20 | 1 | -2/+0 | |
| | ||||||
* | Merge branch 'master' of ssh.github.com:cortesi/mitmproxy | Aldo Cortesi | 2013-01-19 | 1 | -1/+1 | |
|\ | ||||||
| * | Fixed a bug in format_flow in common.py. Changed the reference from ↵ | Chris Neasbitt | 2013-01-18 | 1 | -1/+1 | |
| | | | | | | | | timestamp to timestamp_start. | |||||
* | | Rudimentary testing for client certs. | Aldo Cortesi | 2013-01-18 | 2 | -1/+1 | |
|/ | ||||||
* | Merge branch 'master' of ssh.github.com:cortesi/mitmproxy | Aldo Cortesi | 2013-01-18 | 2 | -19/+34 | |
|\ | | | | | | | | | Conflicts: test/test_server.py | |||||
| * | Merge remote-tracking branch 'upstream/master' | Rouli | 2013-01-17 | 6 | -193/+125 | |
| |\ | ||||||
| * | | changing requests and responses to have two timestamps, one marking their ↵ | Rouli | 2013-01-17 | 2 | -19/+34 | |
| | | | | | | | | | | | | initiation, and the other their complete | |||||
* | | | Unit tests and minor code refactoring for ServerConnection. | Aldo Cortesi | 2013-01-05 | 1 | -6/+6 | |
| |/ |/| | ||||||
* | | Remove cert_wait_time flag. | Aldo Cortesi | 2013-01-06 | 2 | -11/+1 | |
| | | | | | | | | | | We now cater for this by generating certs with a commencement date an hour in the past in netlib. | |||||
* | | Use new netlib certificate store implementation. | Aldo Cortesi | 2013-01-06 | 1 | -14/+5 | |
| | | ||||||
* | | Unit test love - 100% for flow.py, dump.py | Aldo Cortesi | 2013-01-05 | 1 | -4/+2 | |
| | | ||||||
* | | Minor cleanups of proxy request handling. | Aldo Cortesi | 2013-01-04 | 1 | -3/+5 | |
| | | ||||||
* | | Refactor proxy auth a bit | Aldo Cortesi | 2013-01-02 | 2 | -36/+14 | |
| | | | | | | | | | | | | - Remove authentication scheme option. We only support basic at the moment - we'll add the option back when we diversify. - Add some meta variables to make printout nicer | |||||
* | | Documentation, setup.py updates, styling. | Aldo Cortesi | 2013-01-02 | 1 | -2/+2 | |
| | | ||||||
* | | Better error handling for transparent mode remote address resolution. | Aldo Cortesi | 2013-01-01 | 2 | -2/+8 | |
| | | ||||||
* | | First draft of OSX transparent proxy mode. | Aldo Cortesi | 2013-01-01 | 2 | -97/+30 | |
| | | ||||||
* | | More work on proxy auth | Aldo Cortesi | 2012-12-31 | 2 | -12/+26 | |
| | | | | | | | | | | | | - Strip auth header if auth succeeds, so it's not passed upstream - Actually use realm specification to BasicProxyAuth, and make it mandatory - Cleanups and unit tests | |||||
* | | Test and robustify BasicProxyAuth.parse_auth_value | Aldo Cortesi | 2012-12-31 | 1 | -6/+17 | |
| | | | | | | | | | | - This is partly in preparation for moving the implementation to netlib - Also add an unparse_auth_value for testing (and use in pathod once the move is done) | |||||
* | | Start solidifying proxy authentication | Aldo Cortesi | 2012-12-31 | 2 | -19/+28 | |
|/ | | | | | | - Add a unit test file - Remove some extraneous methods - Change the auth API to make the authenticate method take a header object. | |||||
* | adding some simple authetication code to limit proxy access | israel | 2012-12-30 | 4 | -38/+99 | |
| | ||||||
* | adding some simple authetication code to limit proxy access | israel | 2012-12-30 | 2 | -0/+198 | |
| | ||||||
* | Merge pull request #82 from kanzure/show-filepath-in-statusbar | Aldo Cortesi | 2012-12-30 | 1 | -0/+3 | |
|\ | | | | | Show current filepath in status bar | |||||
| * | show current filepath in status bar | Bryan Bishop | 2012-12-26 | 1 | -0/+3 | |
| | | | | | | | | | | Showing the filename is useful when looking at multiple .mitm files simultaneously. | |||||
* | | fix external viewer using shlex | Bryan Bishop | 2012-12-22 | 2 | -10/+18 | |
|/ | | | | | | | | | | | | | | This makes spawn_external_viewer not crash when $EDITOR or $PAGER have spaces or multiple arguments. In addition, spawn_external_viewer now chmods the file to read-only to remind users who use only an $EDITOR that this function does not read the file when the user returns. Also, some of the redundant exception case handling for editing has been consolidated. fixes #79 | |||||
* | remove trailing whitespace | Bryan Bishop | 2012-12-09 | 1 | -1/+1 | |
| | ||||||
* | Show an error when $EDITOR/$PAGER are unset. | Bryan Bishop | 2012-12-05 | 1 | -1/+4 | |
| | | | | | | This catches an exception that otherwise crashes mitmproxy. fixes cortesi/mitmproxy#71 | |||||
* | Substantially rewrite AMF decoding. | Aldo Cortesi | 2012-11-26 | 1 | -24/+68 | |
| | | | | This is tricky, but we should now handle a lot more corner-cases. | |||||
* | Workaround for PIL's ambiguious import method and/or easy_install PIL ↵ | Mathieu Mitchell | 2012-11-23 | 1 | -2/+7 | |
| | | | | | | | | | | packaging problem. PIL documents two different way to import it's modules: * import Image (http://www.pythonware.com/library/pil/handbook/introduction.htm) * from PIL import Image (http://www.pythonware.com/library/pil/handbook/image.htm) The same problem was noted in Django at https://code.djangoproject.com/ticket/6054 | |||||
* | Move eventlog to new Urwid container API. | Aldo Cortesi | 2012-11-23 | 1 | -4/+2 | |
| | ||||||
* | Urwid 1.1 compatibility. | Aldo Cortesi | 2012-10-29 | 2 | -4/+4 | |
| | ||||||
* | Improve error reporting for one-shot scripts. | Aldo Cortesi | 2012-10-11 | 1 | -4/+15 | |
| | ||||||
* | Move cleanBin and hexdump into netutils. | Aldo Cortesi | 2012-09-24 | 3 | -43/+8 | |
| | ||||||
* | Stub out ctypes structures for OSX transparent mode. | Aldo Cortesi | 2012-09-17 | 4 | -41/+90 | |
| | ||||||
* | Expand Flow.match to accept either a string or a compiled filter expression. | Aldo Cortesi | 2012-09-14 | 1 | -0/+7 | |
| | ||||||
* | Catch a potential exception on connection finalization. | Aldo Cortesi | 2012-09-14 | 1 | -1/+4 | |
| | ||||||
* | Don't run replace or header hooks on error. | Aldo Cortesi | 2012-09-02 | 1 | -2/+0 | |
| | ||||||
* | Add help entry for H global header shortcut. | Aldo Cortesi | 2012-09-02 | 1 | -2/+1 | |
| | ||||||
* | Add U shortcut to add user-agent strings to global Headers editor. | Aldo Cortesi | 2012-09-02 | 1 | -1/+32 | |
| | ||||||
* | Fix a crash when re-editing a path prompt after an error. | Aldo Cortesi | 2012-08-31 | 1 | -0/+1 | |
| | ||||||
* | Make grid editor file reading more robust. | Aldo Cortesi | 2012-08-31 | 1 | -4/+8 | |
| | ||||||
* | Add a shortcut to header editor to add standard User-Agent strings. | Aldo Cortesi | 2012-08-31 | 3 | -29/+68 | |
| | ||||||
* | Display "No Content" instead of a parse error when there is no content. | Aldo Cortesi | 2012-08-30 | 1 | -0/+2 | |
| | ||||||
* | Add application/javascript to ~a filter asset matcher. | Aldo Cortesi | 2012-08-30 | 1 | -0/+2 | |
| | ||||||
* | Add a snippet to GridEditor help text explaining that we're using escaped ↵ | Aldo Cortesi | 2012-08-25 | 1 | -0/+8 | |
| | | | | strings. | |||||
* | Add a "R" shortcut to GridEditor, letting the user read unescaped data from ↵ | Aldo Cortesi | 2012-08-25 | 1 | -11/+15 | |
| | | | | file. | |||||
* | Do away with explicit encodings, and display an error message for invalid ↵ | Aldo Cortesi | 2012-08-25 | 1 | -15/+12 | |
| | | | | values. | |||||
* | Use Python-style escaped strings in GridEditor. | Aldo Cortesi | 2012-08-25 | 1 | -14/+17 | |
| | ||||||
* | Add an "r" shortcut in grid editors to read value from file. | Aldo Cortesi | 2012-08-25 | 2 | -5/+24 | |
| |