From e983253ecc85aaa8a51ae562dc1805132d339781 Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Fri, 18 Mar 2011 09:04:49 +1300 Subject: Docs, minor cert tweaks. --- doc-src/filters.html | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 doc-src/filters.html (limited to 'doc-src/filters.html') diff --git a/doc-src/filters.html b/doc-src/filters.html new file mode 100644 index 00000000..b71207fc --- /dev/null +++ b/doc-src/filters.html @@ -0,0 +1,34 @@ + +Many commands in __mitmproxy__ and __mitmdump__ take a filter expression. +Filter expressions consist of the following operators: + + + + + + + + +
@!i[0]!@@!i[1]!@
+ +- 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": + + google\.com + +Requests whose body contains the string "test": + + ~r ~b test + +Anything but requests with a text/html content type: + + !(~r & ~t \"text/html\") + -- cgit v1.2.3