aboutsummaryrefslogtreecommitdiffstats
path: root/docs/features/filters.rst
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-02-15 14:58:46 +0100
committerMaximilian Hils <git@maximilianhils.com>2016-02-15 14:58:46 +0100
commit33fa49277a821b9d38e8c9bf0bcf2adcfa2f6f04 (patch)
tree31914a601302579ff817504019296fd7e9e46765 /docs/features/filters.rst
parent36f34f701991b5d474c005ec45e3b66e20f326a8 (diff)
downloadmitmproxy-33fa49277a821b9d38e8c9bf0bcf2adcfa2f6f04.tar.gz
mitmproxy-33fa49277a821b9d38e8c9bf0bcf2adcfa2f6f04.tar.bz2
mitmproxy-33fa49277a821b9d38e8c9bf0bcf2adcfa2f6f04.zip
move mitmproxy
Diffstat (limited to 'docs/features/filters.rst')
-rw-r--r--docs/features/filters.rst39
1 files changed, 0 insertions, 39 deletions
diff --git a/docs/features/filters.rst b/docs/features/filters.rst
deleted file mode 100644
index 2adcfb70..00000000
--- a/docs/features/filters.rst
+++ /dev/null
@@ -1,39 +0,0 @@
-.. _filters:
-
-Filter expressions
-==================
-
-Many commands in :program:`mitmproxy` and :program:`mitmdump` take a filter expression.
-Filter expressions consist of the following operators:
-
-.. documentedlist::
- :header: "Expression" "Description"
- :listobject: libmproxy.filt.help
-
-- Regexes are Python-style
-- Regexes can be specified as quoted strings
-- Header matching (~h, ~hq, ~hs) is against a string of the form "name: value".
-- Strings with no operators are matched against the request URL.
-- The default binary operator is &.
-
-Examples
---------
-
-URL containing "google.com":
-
-.. code-block:: none
-
- google\.com
-
-Requests whose body contains the string "test":
-
-.. code-block:: none
-
- ~q ~b test
-
-Anything but requests with a text/html content type:
-
-.. code-block:: none
-
- !(~q & ~t "text/html")
-