aboutsummaryrefslogtreecommitdiffstats
path: root/examples/README
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-02-15 23:00:11 +0100
committerMaximilian Hils <git@maximilianhils.com>2016-02-15 23:00:11 +0100
commit87d9afcf2e257eee7c5aa08c3f0dc64da79b0647 (patch)
tree71b10729d160f0269d02548d1ef9e183be1397d9 /examples/README
parent36f34f701991b5d474c005ec45e3b66e20f326a8 (diff)
parent3d9a5157e77b5a3237dc62994f4e3d4c75c2066e (diff)
downloadmitmproxy-87d9afcf2e257eee7c5aa08c3f0dc64da79b0647.tar.gz
mitmproxy-87d9afcf2e257eee7c5aa08c3f0dc64da79b0647.tar.bz2
mitmproxy-87d9afcf2e257eee7c5aa08c3f0dc64da79b0647.zip
Merge pull request #937 from mhils/single-repo
Combine mitmproxy, pathod and netlib in a single repo.
Diffstat (limited to 'examples/README')
-rw-r--r--examples/README30
1 files changed, 0 insertions, 30 deletions
diff --git a/examples/README b/examples/README
deleted file mode 100644
index b4dec8e5..00000000
--- a/examples/README
+++ /dev/null
@@ -1,30 +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.
-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.
-
-
-# libmproxy examples
-flowbasic Basic use of mitmproxy as a library.
-stickycookies An example of writing a custom proxy with libmproxy.
-
-
-# misc
-read_dumpfile Read a dumpfile generated by mitmproxy.
-mitmproxywrapper.py Bracket mitmproxy run with proxy enable/disable on OS X