diff options
author | Maximilian Hils <git@maximilianhils.com> | 2018-01-29 19:11:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-29 19:11:36 +0100 |
commit | f028fb6a011bcadd9a7e81b896c36e5633b81cff (patch) | |
tree | 69a8013775eddfd36971f89161e93ab6b76c6396 | |
parent | 212e3b2f52acd02eb81776fdd98b26c97b8b883b (diff) | |
parent | 71494c6a06d3a687db854da2f8d098cf67b4ae80 (diff) | |
download | mitmproxy-f028fb6a011bcadd9a7e81b896c36e5633b81cff.tar.gz mitmproxy-f028fb6a011bcadd9a7e81b896c36e5633b81cff.tar.bz2 mitmproxy-f028fb6a011bcadd9a7e81b896c36e5633b81cff.zip |
Merge pull request #2820 from aniketpanjwani/master
Fix mistakes in examples/simple/Readme.md.
-rw-r--r-- | examples/simple/README.md | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/examples/simple/README.md b/examples/simple/README.md index 5a7782db..d140a84c 100644 --- a/examples/simple/README.md +++ b/examples/simple/README.md @@ -1,18 +1,18 @@ ## Simple Examples -| Filename | Description | -|:-----------------------------|:---------------------------------------------------------------------------| -| add_header.py | Simple script that just adds a header to every request. | -| custom_contentview.py | Add a custom content view to the mitmproxy UI. | -| filter_flows.py | This script demonstrates how to use mitmproxy's filter pattern in scripts. | -| io_read_dumpfile.py | Read a dumpfile generated by mitmproxy. | -| io_write_dumpfile.py | Only write selected flows into a mitmproxy dumpfile. | -| log_events.py | Use mitmproxy's logging API. | -| modify_body_inject_iframe.py | Inject configurable iframe into pages. | -| modify_form.py | Modify HTTP form submissions. | -| modify_querystring.py | Modify HTTP query strings. | -| redirect_requests.py | Redirect a request to a different server. | -| script_arguments.py | Add arguments to a script. | -| send_reply_from_proxy.py | Send a HTTP response directly from the proxy. | -| upsidedownternet.py | Turn all images upside down. | -| wsgi_flask_app.py | Embed a WSGI app into mitmproxy. | +| Filename | Description | +| :----------------------------- | :--------------------------------------------------------------------------- | +| add_header.py | Simple script that just adds a header to every request. | +| custom_contentview.py | Add a custom content view to the mitmproxy UI. | +| custom_option.py | Add arguments to a script. | +| filter_flows.py | This script demonstrates how to use mitmproxy's filter pattern in scripts. | +| io_read_dumpfile.py | Read a dumpfile generated by mitmproxy. | +| io_write_dumpfile.py | Only write selected flows into a mitmproxy dumpfile. | +| log_events.py | Use mitmproxy's logging API. | +| modify_body_inject_iframe.py | Inject configurable iframe into pages. | +| modify_form.py | Modify HTTP form submissions. | +| modify_querystring.py | Modify HTTP query strings. | +| redirect_requests.py | Redirect a request to a different server. | +| send_reply_from_proxy.py | Send a HTTP response directly from the proxy. | +| upsidedownternet.py | Turn all images upside down. | +| wsgi_flask_app.py | Embed a WSGI app into mitmproxy. | |