aboutsummaryrefslogtreecommitdiffstats
path: root/examples
Commit message (Collapse)AuthorAgeFilesLines
* The final piece: netlib -> mitproxy.netAldo Cortesi2016-10-201-1/+1
|
* netlib.strutils -> mitmproxy.utils.strutilsAldo Cortesi2016-10-203-3/+3
|
* netlib.version -> mitmproxy.versionAldo Cortesi2016-10-201-1/+1
|
* 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.
* Move all tools into mitmproxy.tools, move models/* to top levelAldo Cortesi2016-10-192-3/+3
| | | | | | The primary motivation here (and for all the other moving around) is to present a clean "front of house" to library users, and to migrate primary objects to the top of the module hierarchy.
* Remove flow module entirely, move contents to top levelAldo Cortesi2016-10-193-7/+5
| | | | | mitmproxy.flow.io -> mitmproxy.io mitmproxy.flow.export -> mitmproxy.export
* flow.state -> addons.stateAldo Cortesi2016-10-191-1/+1
|
* addons.Addons -> addonmanager, builtins -> addonsAldo Cortesi2016-10-191-1/+1
|
* Kill flow.master - create master.MasterAldo Cortesi2016-10-192-5/+5
| | | | Also extract events into .events
* web app cleanups: tests and examplesAldo Cortesi2016-10-191-5/+5
|
* fix redirect_requests.py exampleMaximilian Hils2016-10-161-2/+1
|
* python3: clean up super and __future__Aldo Cortesi2016-10-171-1/+0
|
* python3: clean up class bracketsAldo Cortesi2016-10-172-2/+2
|
* Zap object base classAldo Cortesi2016-10-172-2/+2
|
* test & examples: zap sixAldo Cortesi2016-10-172-4/+4
|
* docs: logging and the contextAldo Cortesi2016-10-161-0/+6
|
* docs: overview, classes, argumentsAldo Cortesi2016-10-163-21/+24
|
* use flowfilter.matchThomas Kriechbaumer2016-10-031-4/+5
|
* rename mitmproxy.filt -> mitmproxy.flowfilterThomas Kriechbaumer2016-10-031-3/+3
|
* Fixes - #1555 sslstrip.py flow.response.headers (#1556)phackt2016-09-251-2/+14
| | | | | | | | | | * Fixes - #1555 sslstrip.py flow.response.headers * #1557 - add enhancements in inline script sslstrip.py with upgrade-insecure-requests stripping * #1557 - update to match python style guide * #1555, #1556, update to a bytes pattern
* Added a description to the shim loader, and renamed it.smill2016-09-141-0/+8
|
* Improved error-handling / supplemented documention.smill2016-09-041-0/+79
|
* Improve the way we handle upstream errorsAldo Cortesi2016-09-011-2/+2
| | | | | | | - Don't log a traceback for either HTTP or HTTPS DNS resolution or TCP connection errors. These are "ordinary" errors, not mitmproxy issues. - Ensure that the error handler is correctly called for SSL-related protocol errors.
* Adjust flowbasic example for Options API changesAldo Cortesi2016-09-011-11/+13
|
* introduce Response.make for simple response creationMaximilian Hils2016-08-231-6/+1
|
* Fix issue with binary content in jsonShadab Zafar2016-08-151-2/+3
|
* Use postData field in PUT, PATCH requests tooShadab Zafar2016-08-151-1/+1
| | | | | The HAR spec isn't really clear on whether this should be the case, but Google Chrome does this, so I think we should too.
* Refactor format_cookiesShadab Zafar2016-08-151-6/+6
|
* Support .zhar compressionShadab Zafar2016-08-151-2/+5
|
* Add text field to response contentShadab Zafar2016-08-151-2/+11
|
* Add serverIPAddress fieldShadab Zafar2016-08-151-0/+3
|
* Add postData fieldShadab Zafar2016-08-151-2/+11
|
* Add SSL & Connect timingsShadab Zafar2016-08-151-6/+22
|
* Add a ctx.log on finishShadab Zafar2016-08-151-2/+4
|
* Open JSON file in text modeShadab Zafar2016-08-151-1/+1
|
* Simplify name_valueShadab Zafar2016-08-151-11/+1
|
* Fix wrong importShadab Zafar2016-08-151-1/+1
|
* Improve cookies formattingShadab Zafar2016-08-151-4/+19
|
* Format Cookies according to the HAR SpecShadab Zafar2016-08-151-5/+29
|
* Remove pages objectShadab Zafar2016-08-151-1/+0
| | | | | | | The HAR Spec says that the field can be left out by applications that don't group by pages. http://www.softwareishard.com/blog/har-12-spec/#log
* Welcome har_dumpShadab Zafar2016-08-151-0/+145
|
* Goodbye har_extractorShadab Zafar2016-08-151-264/+0
|
* make the linter happyMaximilian Hils2016-07-231-1/+1
|
* add remote debug exampleMaximilian Hils2016-07-231-0/+19
|
* Addon iface: .configure(options) -> .configure(options, updated)Aldo Cortesi2016-07-231-1/+1
|
* scripts: refactor some examples that keep global stateAldo Cortesi2016-07-233-39/+43
| | | | We now have a better way to do this.
* Merge remote-tracking branch 'origin/master' into message-body-encodingMaximilian Hils2016-07-1523-100/+140
|\
| * Fix HAR extractorAldo Cortesi2016-07-151-3/+5
| | | | | | | | Thanks to @mhils
| * Adjust concurrent tests for start methodAldo Cortesi2016-07-151-2/+0
| |
| * Add .start for addons and scriptsAldo Cortesi2016-07-159-8/+17
| | | | | | | | Also improve error messages, fix various unit tests