aboutsummaryrefslogtreecommitdiffstats
path: root/examples/README
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2014-09-08 16:02:31 +0200
committerMaximilian Hils <git@maximilianhils.com>2014-09-08 17:03:34 +0200
commitebd539b49f0706918e979dc921cf454ae448eaf9 (patch)
tree1c541027c735e18c7486d5d9ebda7367278ac244 /examples/README
parentd06b4bfa4e4cc51e903b49e246d7771726a3e3a4 (diff)
downloadmitmproxy-ebd539b49f0706918e979dc921cf454ae448eaf9.tar.gz
mitmproxy-ebd539b49f0706918e979dc921cf454ae448eaf9.tar.bz2
mitmproxy-ebd539b49f0706918e979dc921cf454ae448eaf9.zip
update examples, fix #353
Diffstat (limited to 'examples/README')
-rw-r--r--examples/README33
1 files changed, 23 insertions, 10 deletions
diff --git a/examples/README b/examples/README
index 46d25acd..85ab272a 100644
--- a/examples/README
+++ b/examples/README
@@ -1,10 +1,23 @@
-add_header.py Simple script that just adds a header to every request.
-dup_and_replay.py Duplicates each request, changes it, and then replays the modified request.
-flowbasic Basic use of mitmproxy as a library.
-modify_form.py Modify all form submissions to add a parameter.
-modify_querystring.py Modify all query strings to add a parameters.
-proxapp How to embed a WSGI app in a mitmproxy server
-stub.py Script stub with a method definition for every event.
-stickycookies An example of writing a custom proxy with libmproxy.
-upsidedownternet.py Rewrites traffic to turn PNGs upside down.
-mitmproxywrapper.py Bracket mitmproxy run with proxy enable/disable on OS X
+# 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
+dup_and_replay.py Duplicates each request, changes it, and then replays the modified request.
+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