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
assetName: 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
status: Finished
Search certificates
Use a text value ##### to specify the certificate fingerprint of the certificates.
Example
Show certificates that have this hash value
certhash: 20e1541486f2cd405559d8483a3663f2a77c3cf93c72f4f915259f084f814221
Use a text value ##### to specify name of the issuing certificate authority.
Example
Show the certificates having this issuing authority name
issuer.name: Symantec Class 3 EV SSL CA - G3
issuer.organizationissuer.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
issuer.organization: Symantec Corporation
Use a text value ##### to specify the key length of a certificate.
Example
Show certificates that have 2048-bit keys
keySize: 2048
Use the values ##### to find a certificate having a specific serial number.
Example
Show the certificate that has this serial number
serialNumber: "01ab8a210a7cf9955665c47fca758459ca78"
Use a text value ##### to define the certificate name.
Example
Show certificates with this name
subject.name: www.qualys.com
subject.organizationsubject.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
subject.organization: Qualys, Inc.
Use a date range or specific date to specify expiration date of the certificates.
Examples
Show certificates that expire before 2022-01-20
validTo < "2022-01-20"
Show certificates that expire after 2020
validTo > "2020"
Show certificates that expire before March 2020 (yyyy-mm)
validTo < "2020-03"
Show certificates that expire between today and 2020-12-01
validTo: "[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.