aboutsummaryrefslogtreecommitdiffstats
path: root/examples/tls_passthrough.py
Commit message (Collapse)AuthorAgeFilesLines
* organize examplesMaximilian Hils2016-11-211-140/+0
| | | | | | | 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.
* mitmproxy.protocol -> mitmproxy.proxy.protocolAldo Cortesi2016-10-191-1/+1
| | | | | The protocols here are compltely proxy-specific, are only used from within the proxy module, and are not exposed to users.
* python3: clean up super and __future__Aldo Cortesi2016-10-171-1/+0
|
* python3: clean up class bracketsAldo Cortesi2016-10-171-1/+1
|
* Zap object base classAldo Cortesi2016-10-171-1/+1
|
* move script context to mitmproxy.ctxMaximilian Hils2016-07-081-1/+1
|
* remove context from all scriptsMaximilian Hils2016-07-071-11/+13
|
* update examples, tests, docsMaximilian Hils2016-06-131-3/+4
|
* A new interface for replyAldo Cortesi2016-06-081-1/+1
| | | | | | | | | | | Reply is now explicit - it's no longer a callable itself. Instead, we have: reply.kill() - kill the flow reply.ack() - ack, but don't send anything reply.send(message) - send a response This is part of an incremental move to detach reply from our flow objects, and unify the script and handler interfaces.
* format examplesMaximilian Hils2016-05-291-0/+2
|
* Docs and examples to top levelAldo Cortesi2016-02-181-0/+136
|
* move mitmproxyMaximilian Hils2016-02-151-136/+0
|
* use new netlib exceptionsMaximilian Hils2015-09-171-2/+2
|
* add inline script for conditional tls passthroughMaximilian Hils2015-09-081-0/+136
fix #646