aboutsummaryrefslogtreecommitdiffstats
path: root/examples/README
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-11-21 02:16:20 +0100
committerMaximilian Hils <git@maximilianhils.com>2016-11-21 02:28:10 +0100
commit9af8f4bb31c94a25780a4189bffa406906249626 (patch)
treecf52f1c312b7bac3d83d796d6b03bb33b4556f26 /examples/README
parentf74e561524d04c93cd7953f34e78ebe67eaa58a8 (diff)
downloadmitmproxy-9af8f4bb31c94a25780a4189bffa406906249626.tar.gz
mitmproxy-9af8f4bb31c94a25780a4189bffa406906249626.tar.bz2
mitmproxy-9af8f4bb31c94a25780a4189bffa406906249626.zip
organize examples
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.
Diffstat (limited to 'examples/README')
-rw-r--r--examples/README31
1 files changed, 0 insertions, 31 deletions
diff --git a/examples/README b/examples/README
deleted file mode 100644
index 90edf468..00000000
--- a/examples/README
+++ /dev/null
@@ -1,31 +0,0 @@
-Some inline scripts may require additional dependencies, which can be installed using
-`pip install mitmproxy[examples]`.
-
-
-# inline script examples
-add_header.py Simple script that just adds a header to every request.
-change_upstream_proxy.py Dynamically change the upstream proxy
-dns_spoofing.py Use mitmproxy in a DNS spoofing scenario.
-dup_and_replay.py Duplicates each request, changes it, and then replays the modified request.
-fail_with_500.py Turn every response into an Internal Server Error.
-filt.py Use mitmproxy's filter expressions in your script.
-flowwriter.py Only write selected flows into a mitmproxy dumpfile.
-iframe_injector.py Inject configurable iframe into pages.
-modify_form.py Modify all form submissions to add a parameter.
-modify_querystring.py Modify all query strings to add a parameters.
-modify_response_body.py Replace arbitrary strings in all responses
-nonblocking.py Demonstrate parallel processing with a blocking script.
-proxapp.py How to embed a WSGI app in a mitmproxy server
-redirect_requests.py Redirect requests or directly reply to them.
-stub.py Script stub with a method definition for every event.
-upsidedownternet.py Rewrites traffic to turn images upside down.
-
-
-# mitmproxy examples
-flowbasic Basic use of mitmproxy as a library.
-stickycookies An example of writing a custom proxy with mitmproxy.
-
-
-# misc
-read_dumpfile Read a dumpfile generated by mitmproxy.
-mitmproxywrapper.py Bracket mitmproxy run with proxy enable/disable on OS X