Search Tokens for Reports
You can use the search tokens available in the Reports tab and refine your search results. Click each token to learn more about it.
Generic
Use a boolean query to express your query using AND logic.
Example
Find reports with certain type and tag
report.type:"SCAN REPORT" AND tags.name: "Internal"
Use a boolean query to express your query using NOT logic.
Example
Show reports that are not in running status
NOT report.status:COMPLETE
Use a boolean query to express your query using OR logic.
Example
Show findings with one of these id values
report.id:1234
OR report.id:3456
Reports Tokens
Use these search tokens to find reports.
Use an integer value to find the report with the specified ID.
Example
Find the report with the given ID
report.id:9725
Use values within quotes or backticks to find the report with the specified name.
Examples
Find reports that contain part of the given name.
report.name:"Test Report"
Find reports with the given name.
report.name:`Test Report`
Select the type to find reports with the selected type: WEB APPLICATION REPORT, SCAN REPORT, SCORECARD REPORT, CATALOG REPORT, DATALIST REPORT.
Example
Find reports with the type CATALOG REPORT
report.type:"CATALOG REPORT"
Select the status to find reports with the selected status: COMPLETE, ERROR, or RUNNING.
Examples
Find reports in the COMPLETE status
report.status:"COMPLETE"
Find reports in the RUNNING status
report.status:"RUNNING"
Select the format to find reports with the selected format: CSV, CSV2, ENCRYPTED PDF, HTML, HTML ZIPPED, PDF, PPT, or XML.
Examples
Find reports that are in PDF'format
report.format:"PDF"
Find reports that are in CSV format
report.format:"CSV"
Use a date range or specific date to find reports that were created on the given date or date range.
Examples
Find reports that were created in the past 6 months
report.created:[now-6M .. now]
Find reports that were created on a specified date
report.created:"2020-03-20"
Find reports that were created after a specified date
report.created >"2020-03-20"
Find reports created between March 2020 to Dec 2020
report.created:[2020-03-01 .. 2020-12-31]
report.owner.firstNamereport.owner.firstName
Use values in quotes or backticks to find reports with the owner's first name.
Example
Find reports with the owner's first name as Chandler
report.owner.firstName:"Chandler"
report.owner.lastNamereport.owner.lastName
Use values in quotes or backticks to find reports with owner's last name.
Example
Find reports with owner's last name as Bing
report.owner.lastName:"Bing"
report.owner.usernamereport.owner.username
Use values within quotes or backticks to find reports with owner's username.
Example
Find reports with owner's username as quays_pp
report.owner.username:"quays_pp"
report.lastDownloadDatereport.lastDownloadDate
Use a date range or specific date to find reports that were downloaded on the given date or date range.
Examples
Find reports that were downloaded in the past 6 months
report.lastDownloadDate:[now-6M .. now]
Find reports that were downloaded on a specified date
report.lastDownloadDate:"2020-03-20"
Find reports that were downloaded after a specified date
report.lastDownloadDate >"2020-03-20"
Find reports downloaded between March 2020 to Dec 2020
report.lastDownloadDate:[2020-03-01 .. 2020-12-31]
reportTemplate.namereportTemplate.name
Use values within quotes or backticks to find reports that are generated using the given template name.
Examples
Find reports that are generated using the template containing part of the given name.
reportTemplate.name:"Test"
Find reports that are generated using the template with given name.
reportTemplate.name:`Test Template`
scheduleReport.namescheduleReport.name
Use text values within quotes or backticks to find reports that are generated using the given report schedule name.
Examples
Find reports that are generated using the report schedule containing part of the given name.
scheduleReport.name: "Schedule WebApp"
Find reports that are generated using the report schedule exactly matching with the given name.
scheduleReport.name
:`Schedule WebApp`