Skip to content
Corey Arthur edited this page Aug 5, 2023 · 3 revisions

Burp Suite Logger++

Developed by Corey Arthur (@CoreyD97)

Original idea by Soroush Dalili (@irsdl)

How-To: Filters

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\/.*/
Clone this wiki locally