Home

Search Tokens for Burp Reports

You can use the search tokens available in the Burp tab and refine your search results. Click each token to learn more about it.

Generic

andand

Use a boolean query to express your query using AND logic.

Example

Find burp reports created on a certain date and with a certain tag

burpReport.created:"2020-03-20" AND tags.name:"Internal1"

notnot

Use a boolean query to express your query using NOT logic.

Example

Find burp reports that are marked as default

NOT burpReport.isDefault:"false"

oror

Use a boolean query to express your query using OR logic.

Example

Find burp reports with one of these id values

burpReport.id:9725 OR burpReport.id:9999

Burp Tokens

Use these search tokens to find burp records.

burpReport.idburpReport.id

Use an integer value to find the burp report with the specified ID.

Example

Find burp report with the given ID

burpReport.id:9725

burpReport.nameburpReport.name

Use values within quotes or backticks to find report templates with the specified name.

Example

Find report templates that contain part of the given name

burpReport.name:"Burp Report name"

burpReport.createdburpReport.created

Use a date range or specific date to find report templates that were created on the given date or date range.

Example

Show burp report that were created in past 6 months.

burpReport.created:[now-6M .. now]

Show burp reports those were created on a specified date.

burpReport.created:"2020-03-20"

Show burp reports which were created after a specified date.

burpReport.created >"2020-03-20"

Show burp reports created between March 2020 to Dec 2020.

burpReport.created:[2020-03-01 .. 2020-12-31]

burpReport.createdBy.firstNameburpReport.createdBy.firstName

Use values within quotes or backticks to find burp report created by specified user’s first name.

Example

Find burp report that is created by user whose first name is Chandler.

burpReport.created:Chandler

burpReport.createdBy.lastNameburpReport.createdBy.lastName

Use values within quotes or backticks to find burp report created by specified user’s last name.

Example

Find burp report that is created by user whose last name is Bing.

burpReport.createdBy.lastName:Bing

burpReport.createdBy.usernameburpReport.createdBy.username

Search reports which were created by username.

Example

Find burp report that is created by user whose user name is quays_pp.

burpReport.createdBy.username:quays_pp

burpReport.exportDateburpReport.exportDate

Use a date range or specific date to find burp report that were were updated on specific date or date range.

Example

Show burpreport that were ere updated in past 6 months.

burpReport.updated: [now-6M .. now]

Show report burpReport that was updated on specified date.

burpReport.updated:"2020-03-20"

Show burpreports which were updated after a specified date.

burpReport.updated >"2020-03-20"

Show reports updated between March 2020 to Dec 2020.

burpReport.updated:[2020-03-01 .. 2020-12-31]

burpReport.owner.firstNameburpReport.owner.firstName

Use values within quotes or backticks to find burp report with owner's first name.

Example

Find burp report with owner's first name as Chandler

burpReport.owner.firstName:Chandler

burpReport.owner.lastNameburpReport.owner.lastName

Use values within quotes or backticks to find burp report with owner's last name.

Example

Find burp report with owner's last name as Bing

burpReport.owner.lastName:Bing

burpReport.owner.usernameburpReport.owner.username

Use values within quotes or backticks to find burp report with owner's username.

Example

Find burp report with owner's last name as quays_pp

burpReport.owner.username:quays_pp

tags.nametags.name

Use values within quotes or backticks to find burp report that are associated with the specified tag(s).

Example

Find burp report that have part of the tag named "Internal P1" associated with it.

tags.name:Internal P1

Find burp report have part of the tag named "Dev Internal" or "Production" associated with it.

tags.name:["Dev Internal", "Production"]

Find burp report which have the tag named Target1 associated with it.

tags.name:`Target1`

burpReport.quickFiltersburpReport.quickFilters

Use a text value ##### to find burp report with specified quick filters: MY_PARAMSETS, IN_USE, NOT_IN_USE

Example

Find burp report which is with given quick filters

burpReport.quickFilters:MY_BURP_REPORT