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.
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"
Use a boolean query to express your query using NOT logic.
Example
Find burp reports that are marked as default
NOT burpReport.isDefault:"false"
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.
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 text 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.createdBy.firstName: "Chandler"
Find the Burp reports that is created by the user whose first name exactly matches the given value.
burpReport.createdBy.firstName: `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 values to find burp report with export date.
Example
Find Burp Report that were exported in past 6 months.
burpReport.exportDate: [now-6M .. now]
Find Burp Report that was exported on specified date.
burpReport.exportDate: "2025-03-20"
Find Burp Report that were exported after a specified date.
burpReport.exportDate > "2025-03-20"
Find Burp Report exported between March 2025 to April 2025.
burpReport.exportDate: [2025-03-01 .. 2025-04-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
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