Search Tokens for Details of Assets  

You can use search tokens to search asset details on Assets tab.

asset.instance.pqcSupportasset.instance.pqcSupport

Use the token value as true or false to find if the instances have PQC support

Example 

Show assets that have PQC-supported instances

asset.instance.pqcSupport:true

asset.instance.pqcSupportedAlgorithmasset.instance.pqcSupportedAlgorithm

Use a text value ##### to find the assets that have instances with the specified PQC supported algorithm.

Example

Show the assets that have instances supporting the PQC algorithm

asset.instance.pqcSupportedAlgorithm:MLKEM512

certificate.instance.gradecertificate.instance.grade

Use a text value ##### to specify the Certificate Grade for an instance on the host.

Example

Show assets that have this Certificate Grade for an instance on the host

certificate.instance.grade: B

certificate.instance.lastFoundDatecertificate.instance.lastFoundDate

Use a date range or specific date search last found certificate.

Examples

Show the last found certificates within certain dates

certificate.instance.lastFoundDate: [2018-06-15 .. 2018-06-30]

Show the last found certificates on a specific date

certificate.instance.lastFoundDate:2017-12-14

certificate.instance.portcertificate.instance.port

Use an integer value ##### to specify the listening port.

Example

Show assets that have this listening port open

certificate.instance.port: 443

 

certificate.instance.servicecertificate.instance.service

Use a text value ##### to specify the service.

Example

Show assets that have this service

certificate.instance.service: SMTP

certificate.instance.sourcescertificate.instance.sources

Use a text value ##### to find the certificates scanned through VM (Vulnerability Management), Qualys Cloud Agent and WAS (Web Application Scanning). Values are IP Scanner, Cloud Agent, EASM and/or WAS.

Examples

Show certificates that are scanned through VM (Vulnerability Management)

certificate.instance.sources: IP Scanner

Show certificates that are scanned through Qualys Cloud Agent

certificate.instance.sources: Cloud Agent

Show certificates that are scanned through WAS

certificate.instance.sources: WAS

Show certificates that are scanned through EASM

certificate.instance.sources: EASM

certificate.instance.sslProtocolcertificate.instance.sslProtocol

Use a value ##### to specify SSL/TLS protocols.

Example

Show assets that have this SSL/TLS protocol enabled

certificate.instance.sslProtocols: TLSv1.2

 

certificate.subject.namecertificate.subject.name

Use a text value ##### to define the certificate name.

Example

Show certificates that have this name

certificate.subject.name: www.qualys.com

 

Supported Boolean Operators

The Qualys Query Language (QQL) supports the following logical or Boolean query operators. Use these operators in your queries to narrow down or broaden your search.

andand

Narrow down the search by using the and operator in the Boolean query. The result contains all the token values that are provided in the query.

Example

certificate.instance.grade: A and certificate.instance.port:443

 

notnot

Narrow down the search by using the not operator in the Boolean query. The result contains all the other values except the one specified after not in the query.

Example

not certificate.instance.grade: A

 

oror

Broaden the search by using the or operator in the Boolean query. The result contains any of the token values that are provided in the query.

Example

certificate.instance.grade: A or certificate.instance.port:443

 

We do not support nested queries for combination of NOT and OR operators.

For example, not certificate.instance.grade: A or certificate.instance.port:443  is not a supported query.