diff options
| author | Maximilian Hils <git@maximilianhils.com> | 2016-02-18 11:27:40 +0100 |
|---|---|---|
| committer | Maximilian Hils <git@maximilianhils.com> | 2016-02-18 11:27:40 +0100 |
| commit | bf024cd15320119e341cdf9bf0fd4d69df233c64 (patch) | |
| tree | 05a6338d94c665421ae1eab07f14aed61b8bd2b1 /examples/stream_modify.py | |
| parent | f42af9061220ec0373e94e96b69434575f60281d (diff) | |
| parent | 31ab3a231e540815009ffe5aeae108db2babd8a9 (diff) | |
| download | mitmproxy-bf024cd15320119e341cdf9bf0fd4d69df233c64.tar.gz mitmproxy-bf024cd15320119e341cdf9bf0fd4d69df233c64.tar.bz2 mitmproxy-bf024cd15320119e341cdf9bf0fd4d69df233c64.zip | |
Merge branch 'master' of https://github.com/mitmproxy/mitmproxy
Diffstat (limited to 'examples/stream_modify.py')
| -rw-r--r-- | examples/stream_modify.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/stream_modify.py b/examples/stream_modify.py new file mode 100644 index 00000000..aa395c03 --- /dev/null +++ b/examples/stream_modify.py @@ -0,0 +1,20 @@ +""" +This inline script modifies a streamed response. +If you do not need streaming, see the modify_response_body example. +Be aware that content replacement isn't trivial: + - If the transfer encoding isn't chunked, you cannot simply change the content length. + - If you want to replace all occurences of "foobar", make sure to catch the cases + where one chunk ends with [...]foo" and the next starts with "bar[...]. +""" + + +def modify(chunks): + """ + chunks is a generator that can be used to iterate over all chunks. + """ + for chunk in chunks: + yield chunk.replace("foo", "bar") + + +def responseheaders(context, flow): + flow.response.stream = modify |
