Home

Search Tokens for Scanner Appliance

You can use the search tokens available in the Appliance 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 search lists with certain type and tag

searchList.type:"DYNAMIC" AND tags.name: "Internal"

notnot

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

Example

Show search lists that are not dynamic search lists

NOT searchList.type:DYNAMIC

oror

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

Example

Show findings with one of these id values

searchList.id:1234 OR searchList.id:3456

Scanner Appliance Tokens

Use these search tokens to find Scanner Appliance.

scannerAsset.idscannerAsset.id

Use an integer value to find the scanner appliances with the specified ID.

Example

Find scanner appliances with the given ID

scannerAsset.id:9725

scannerAsset.namescannerAsset.name

Use values within quotes or backticks to find scanner appliances with the specified name.

Examples

Find scanner appliances that contain part of the given name

scannerAsset.name:"WAS SCANNER"

Find scanner appliances with the given name

scannerAsset.name:`WAS SCANNER`

scannerAsset.urlscannerAsset.url

Use values within quotes or backticks to find detections that have the specified URL.

Example

Find detections that have given URL

scannerAsset.url: "www.qualys.com"

Find detections that match exact value "www.qualys.com"

scannerAsset.url: `www.qualys.com`

scannerAsset.createdscannerAsset.created

Use a date range or specific date to find scanner appliances that were created on the given date or date range.

Example

Show scanner appliances that were created in the past 6 months.

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

Show scanner appliances that were created on a specified date.

scannerAsset.created:"2020-03-20"

Show scanner appliances that were created after a specified date.

scannerAsset.created >"2020-03-20"

Show scanner appliances created between March 2020 to Dec 2020.

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

scannerAsset.updatedscannerAsset.updated

Use a date range or specific date to find scanner appliances that were updated on a specific date or date range.

Example

Find scanner appliances that were updated in the past 6 months

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

Find scanner appliances that were updated on the specified date

scannerAsset.updated:"2020-03-20"

Find scanner appliances that were updated after a specified date

scannerAsset.updated >"2020-03-20"

Find scanner appliances updated between March 2020 to Dec 2020

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

scannerAsset.updatedBy.firstNamescannerAsset.updatedBy.firstName

Use values within quotes or backticks to find the scanner appliances updated by the specified user’s first name.

Example

Find scanner appliances that are updated by a user whose first name is Chandler

scannerAsset.updatedBy.firstName:"Chandler"

scannerAsset.updatedBy.lastNamescannerAsset.updatedBy.lastName

Use values within quotes or backticks to find the scanner appliances updated by the specified user’s last name.

Example

Find scanner appliances that is updated by a user whose last name is Bing

scannerAsset.updatedBy.lastName:"Bing"

scannerAsset.updatedBy.usernamescannerAsset.updatedBy.username

Use values within quotes or backticks to find the scanner appliances updated by the specified username.

Example

Find a scanner appliances that is updated by a user whose user name is quays_pp

scannerAsset.updatedBy.username:"quays_pp"

tags.nametags.name

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

Examples

Find scanner appliances that have part of the tag named "Internal P1" associated with it

tags.name:"Internal P1"

Find scanner appliances contains part of the tag named "Dev Internal" or "Production" associated with it

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

Find the scanner appliances which has the tag named Target1 associated with it

tags.name:`Target1`

scannerAsset.quickFilterscannerAsset.quickFilter

Use a text value ##### to find scanner appliances with specified quick filters: IN_USE, NOT_IN_USE

Example

Find scanner appliances that are being used in existing or scheduled scans

scannerAsset.quickFilters:"IN_USE"

scannerAsset.scanner.connectivityStatusscannerAsset.scanner.connectivityStatus

Select the scanner activity status to find scanner appliances with the selected status.

Example

Find scanner appliances with the activity status as CONNECTED

scannerAsset.scanner.connectivityStatus:`CONNECTED`

scannerAsset.scanner.proxyEnabledscannerAsset.scanner.proxyEnabled

Use the values true | false to find the scanner appliances with proxy enabled or disabled.

Examples

Find scanner appliances with proxy enabled

scannerAsset.scanner.proxyEnabled :true

Find scanner appliances with proxy disabled

scannerAsset.scanner.proxyEnabled :false

scannerAsset.scanner.personalizationCodescannerAsset.scanner.personalizationCode

Use an integer value to find the scanner appliances with the personalization code.

Example

Find scanner appliances with given personalization code

scannerAsset.scanner.personalizationCode:10101010101

scannerAsset.scanner.ipAddressscannerAsset.scanner.ipAddress

Use a text value to find scanner appliances with specified LAN IP aadress.

Example

Find scanner appliances with given IP address

scannerAsset.scanner.ipAddress:10.1.2.3