Search Tokens for Asset Details for Deployed Job
You can use search tokens to search assets for selected deployed job.
Search Assets
Use a text value ##### to search assets by name for the deployed job.
Example
Show assets with this name for the deployed job
asset.name: server1
Use the token values to search deployed jobs based on status. Choose the status values from Pending, Finished, In Progress, CSR Generated, or Failed.
Example
Show deployment job with this status
asset.status: Finished
Search certificates
certificate.hashcertificate.hash
Use a text value ##### to specify the certificate fingerprint of the certificates.
Example
Show certificates that have this hash value
certificate.hash: 20e1541486f2cd405559d8483a3663f2a77c3cf93c72f4f915259f084f814221
certificate.issuer.namecertificate.issuer.name
Use a text value ##### to specify name of the issuing certificate authority.
Example
Show the certificates having this issuing authority name
certificate.issuer.name: Symantec Class 3 EV SSL CA - G3
certificate.issuer.organizationcertificate.issuer.organization
Use a text value ##### to specify the organization mentioned in the issuer distinguished name.
Example
Show certificates that have this organization in issuer DN
certificate.issuer.organization: Symantec Corporation
certificate.keySizecertificate.keySize
Use a text value ##### to specify the key length of a certificate.
Example
Show certificates that have 2048-bit keys
certificate.keySize: 2048
certificate.serialNumbercertificate.serialNumber
Use the values ##### to find a certificate having a specific serial number.
Example
Show the certificate that has this serial number
certificate.serialNumber: "01ab8a210a7cf9955665c47fca758459ca78"
Use a text value ##### to define the certificate name.
Example
Show certificates with this name
subject.name: www.qualys.com
certificate.subject.organizationcertificate.subject.organization
Use a text value ##### to specify the organization mentioned in the subject distinguished name.
Example
Show certificates that have this organization in subject DN
certificate.subject.organization: Qualys, Inc.
certificate.validToDatecertificate.validToDate
Use a date range or specific date to specify expiration date of the certificates.
Examples
Show certificates that expire before 2022-01-20
certificate.validToDate < "2022-01-20"
Show certificates that expire after 2020
certificate.validToDate > "2020"
Show certificates that expire before March 2020 (yyyy-mm)
certificate.validToDate < "2020-03"
Show certificates that expire between today and 2020-12-01
certificate.validToDate: "[now..2020-12-01]"
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.
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
assetName: localhost and status:Success
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 status:Success
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
assetName: localhost or status:Success
We do not support nested queries for a combination of NOT and OR operators.