Searching Certificate Details in Certificate View

You can use search tokens to search for certificate details on Certificate tab.

asset.instance.gradeasset.instance.grade

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

Example

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

asset.instance.grade: B

asset.instance.portasset.instance.port

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

Example

Show certificates on assets that have this listening port open

asset.instance.port: 443

asset.instance.serviceasset.instance.service

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

Example

Show certificates on assets that have this service

asset.instance.service: SMTP

asset.instance.sslProtocolsasset.instance.sslProtocols

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

Example

Show certificates on assets that have this SSL/TLS protocol

asset.instance.sslProtocols: TLSv1.2

asset.nameasset.name

Use a text value ##### to specify the asset name.

Example

Show certificates on assets that have this asset name

asset.name: server1

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

Show the certificates issued by DigiCert and will expire in 30 days

certificate:(expiryGroup:In 30 Days and issuer.name:DigiCert)

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

Exclude the certificates that are issued by Qualys in the search result

certificate:(not issuer.organization:Qualys)

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

Show the assets having an operating system as Windows or Netscaler

asset:(operatingSystem:Windows or operatingSystem:Netscaler)