-
Notifications
You must be signed in to change notification settings - Fork 157
Home
Developed by Corey Arthur (@CoreyD97)
Original idea by Soroush Dalili (@irsdl)
A filter feature has been added allowing for easier identification of specific requests. These can be as simple as displaying only responses with status code 200 or post requests where the url matches a regular expression.
Basic filters follow a general format of:
field [=, ==,!=,<,<=,>,>=] value
and multiple filters can be combined using [||, &&] such as
Response.Status == 403 && Request.Method == "post"
Response.Status == 200 || (Request.Method == "post" && (Response.Status == 403 || Response.Cookies == true))
Nesting filters within parenthesis is supported and allows for complex rules to be created.
Finally, to use regex in place of a static value wrap your regex in //
. For example:
Request.path == /\/ws\/.*/