diff options
author | Thomas Kriechbaumer <Kriechi@users.noreply.github.com> | 2020-02-08 16:04:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-08 16:04:29 +0100 |
commit | c16b4887875bcdecdf18355f28347a48ba4297fd (patch) | |
tree | 20a719f432dc3e5f1510a24a45c8edc1f41838e1 | |
parent | 735b8e35c9d142e43f002dfe224f431399548e3b (diff) | |
parent | 6d71a8c0d910497003e4f4f645706588e0be2455 (diff) | |
download | mitmproxy-c16b4887875bcdecdf18355f28347a48ba4297fd.tar.gz mitmproxy-c16b4887875bcdecdf18355f28347a48ba4297fd.tar.bz2 mitmproxy-c16b4887875bcdecdf18355f28347a48ba4297fd.zip |
Merge pull request #3814 from 2NuFyeat4PZt/patch-1
Update concepts-filters.md
-rw-r--r-- | docs/src/content/concepts-filters.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/src/content/concepts-filters.md b/docs/src/content/concepts-filters.md index f0b9a4b2..b9c89456 100644 --- a/docs/src/content/concepts-filters.md +++ b/docs/src/content/concepts-filters.md @@ -49,3 +49,8 @@ Requests whose body contains the string "test": Anything but requests with a text/html content type: !(~q & ~t "text/html") + +Replace entire GET string in a request (quotes required to make it work): + + ":~q ~m GET:.*:/replacement.html" + |