diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2011-07-22 20:52:13 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2011-07-22 20:52:13 +1200 |
commit | 47e16955122a4ae99f2f74b34d3dd42490687f2b (patch) | |
tree | 368ae82602f11f6c89d2d8f697c486178aa18d05 /libmproxy/proxy.py | |
parent | 6ce8b49e05dfc9d137418898bb6b372d6225f533 (diff) | |
download | mitmproxy-47e16955122a4ae99f2f74b34d3dd42490687f2b.tar.gz mitmproxy-47e16955122a4ae99f2f74b34d3dd42490687f2b.tar.bz2 mitmproxy-47e16955122a4ae99f2f74b34d3dd42490687f2b.zip |
Also replace strings path for requests.
Diffstat (limited to 'libmproxy/proxy.py')
-rw-r--r-- | libmproxy/proxy.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libmproxy/proxy.py b/libmproxy/proxy.py index c5e5971a..5051492c 100644 --- a/libmproxy/proxy.py +++ b/libmproxy/proxy.py @@ -287,6 +287,8 @@ class Request(controller.Msg): made. """ self.content, c = re.subn(pattern, repl, self.content, count, flags) + self.path, pc = re.subn(pattern, repl, self.path, count, flags) + c += pc c += self.headers.replace(pattern, repl, count, flags) return c |