aboutsummaryrefslogtreecommitdiffstats
path: root/examples/complex
Commit message (Collapse)AuthorAgeFilesLines
* Update readme for complex examplesMaksim Beloborodko2017-04-261-1/+1
|
* Revamp how addons workAldo Cortesi2017-04-251-2/+1
| | | | | | | | | | | | | | | | | | | - Addons now nest, which means that addons can manage addons. This has a number of salutary effects - the scripts addon no longer has to poke into the global addons list, we no longer have to replace/remove/boot-outof parent addons when we load scripts, and this paves the way for making our top-level tools into addons themselves. - All addon calls are now wrapped in a safe execution environment where exceptions are caught, and output to stdout/stderr are intercepted and turned into logs. - We no longer support script arguments in sys.argv - creating an option properly is the only way to pass arguments. This means that all scripts are always directly controllable from interctive tooling, and that arguments are type-checked. For now, I've disabled testing of the har dump example - it needs to be moved to the new argument handling, and become a class addon. I'll address that in a separate patch.
* addon loader: add boot_into, which replaces returning from start()Aldo Cortesi2017-03-254-5/+5
| | | | | While we're here, expand test coverage for addonmanager to 100%, and promote to individual coverage.
* addons: start -> load throughoutAldo Cortesi2017-03-254-4/+4
|
* Remove test handlers by using taddons.RecordingMasterAldo Cortesi2017-03-161-43/+0
| | | | | This also means expanding and tweaking the recording master API, which we reflect through the current test suite
* Enable custom options for addonsAldo Cortesi2017-03-144-11/+12
| | | | | | | | - Add an options parameter to the start() event. This is to be used by addons on startup to add custom options. - Add a running() event that is called once the proxy is up and running. - With the new paradigm we can't log during master __init__, so add a tiny termstatus addon to print proxy status to terminal once we're running.
* fix tcp.Address leftoversMaximilian Hils2017-03-081-1/+1
| | | this fixes the issue described in https://github.com/mitmproxy/mitmproxy/issues/2119#issuecomment-285067292
* Merge branch 'master' into on-issuesNikhil Soni2017-03-032-7/+410
|\
| * added XSS scanner example (#1907)David Dworken2017-02-271-0/+407
| |
| * Remove pytz in hardumpUjjwal Verma2017-02-251-7/+3
| |
* | Changes dns_spoofing example to use --keep-host-headerNikhil Soni2017-03-031-8/+3
|/
* .headers["host"] -> .host_headerMaximilian Hils2017-02-181-2/+2
|
* fix typoMaximilian Hils2017-02-141-1/+1
|
* Encoding fixes and testsUjjwal Verma2017-02-051-1/+2
|
* Reset the host header to the correct destinationAmmonite2017-01-301-0/+1
|
* Store original host in flow metadataAmmonite2017-01-291-7/+5
|
* Fix host extractionAmmonite2017-01-221-1/+1
|
* Follow PEP-8 and add commentAmmonite2017-01-221-5/+8
|
* Add blank lines for lintAmmonite2017-01-211-0/+2
|
* Change class nameAmmonite2017-01-201-2/+2
|
* Get the the original header in requestheaders instead of requestAmmonite2017-01-201-19/+28
|
* update stream.pyFeei2017-01-161-2/+2
|
* fix #1858Maximilian Hils2016-12-191-1/+1
|
* mitmweb: 100% app test coverage, numerous fixesMaximilian Hils2016-11-231-1/+2
|
* remove mitmweb authMaximilian Hils2016-11-221-1/+1
| | | | | 9b08279c7c3384f716b66329fefbe97a368189a2 removed the actual functionality. we should not have a command line switch that does nothing. :)
* remove stickycookie exampleMaximilian Hils2016-11-212-43/+0
| | | | The recommended way to do this is mitmproxy/addons/stickycookie.py
* organize examplesMaximilian Hils2016-11-2116-0/+935
This commit is largely based on work by Thiago Arrais (@thiagoarrais) and Shane Bradfield (@l33tLumberjack). I wasn't really able to get their PR reasonably merged onto the latest master, so I reapplied their changes manually here and did some further improvements on that.