You can use search tokens to search for asset information on Asset tab.
Example
Show assets with this IP address
asset:(assetInterface.address: 10.20.30.40)
Example
Show assets that have this hostname
asset:(assetInterface.hostname: xpsp2-jp-26-111)
Example
Show assets that have this asset name
asset:(name: server1)
Example
Show assets that have this host NetBios name
asset:(netbiosName: server1)
Example
Show assets with certificates that were archived with reason: Revoked
certificate:(archiveReason: Revoked)
Example
Show assets with certificates that have approval status true from approved CAs
certificate:(approved: true)
Example
Show certificates that have this hash value
certificate:(certhash: 20e1541486f2cd405559d8483a3663f2a77c3cf93c72f4f915259f084f814221)
Example
Show certificates that have this subject identifier in the distinguished name.
certificate:(dn: ST=California)
Example
Show any findings which expired in last 30 days
certificate:(expiryGroup: "In 30 Days")
Example
Show assets with certificates that have this country in issuer DN
certificate:(issuer.country: US)
Example
Show assets with certificates having this issuing authority name
certificate:(issuer.name: Symantec Class 3 EV SSL
CA - G3)
Example
Show assets with certificates that have this organization in issuer DN
certificate:(issuer.organization: Symantec Corporation)
Example
Show assets with certificates that have this organization unit in issuer DN
certificate:(issuer.organizationUnit: Symantec Trust
Network)
Example
Show assets with DigiCert SHA2 Extended Validation Server CA certificates
certificate:(issuerCategory: DigiCert SHA2 Extended
Validation Server CA )
Example
Show assets with 2048-bit certificates
certificate:(keySize: 2048)
Example
Show assets with certificates that are self-signed
certificate:(selfSigned: true)
Example
Show certificates that use this signature algorithm
certificate:(signatureAlgorithm: SHA256withRSA)
Examples
Show certificates that are valid within certain dates
certificate:(validFrom: [2018-06-15 ... 2018-06-30])
Show certificates that are valid on a specific date
certificate:(validFrom: '2017-12-14')
Examples
Show assets with certificates that are expiring within certain dates
certificate:(validTo: [2018-06-15 ... 2018-06-30])
Show assets with certificates that are expiring on a specific date
certificate:(validTo: '2017-12-14')
Example
Show assets with certificates that are renewable with Qualys
certificate:(isRenewable: true)
Examples
Show certificates which expired in last 20 days
certificate:(expiryGroup: "In 20 Days")
Show all expired certificates in your subscription
certificate:(expiryGroup: "Expired")
Example
Show assets that have this country in subject DN
certificate:(subject.country: US)
Example
Show assets that have this locality in subject DN
certificate:(subject.locality: Redwood City)
Example
Show assets that have certificates with this name
certificate:(subject.name: www.qualys.com)
Example
Show assets with certificates that have this organization in subject DN
certificate:(subject.organization: Qualys, Inc.)
Example
Show assets with certificates that have this state in subject DN
certificate:(subject.state: California)
Example
Show assets that have the specified DNS Name in Certificate SAN
certificate:(subjectAlternativeNames.dnsName: www.qualys.com)
Example
Show assets that have the specified the IP address in Certificate SAN
certificate:(subjectAlternativeNames.ipAddress: 10.113.197.210)
Examples
Show all assets with certificates whose validity is greater than 200 days
certificate:(validity > 200)
Show all assets with certificates whose validity is less than 200 days
certificate:(validity < 200d)
Show all certificates whose validity is greater than 3 months. Here each month is considered as 30 days.
certificate:(validity > 3m)
Show all certificates whose validity is greater than 1 year. Here each year is considered as 365 days.
certificate:(validity > 1y)
Example
Show assets that have this cipher suit enabled in the SSL/TLS instance
instance:(cipherSuites.value: DES-CBC3-SHA)
Example
Show assets that have this host FQDN
instance:(fqdn: server1.qualys.com)
Example
Show assets that have this Certificate Grade for an instance on the host
instance:(grade: B)
Example
Show assets that have this listening port open
instance:(port: 443)
Example
Show assets that have this SSL/TLS protocol enabled
instance:(sslProtocols: TLSv1.2)
Example
Show assets that have this service
instance:(service: SMTP)
Example
Show assets that have this vulnerability QID
instance:(vulns.qid: 38603)
Example
Show assets that have this vulnerability severity
instance:(vulns.severity: 3)
Example
Show assets that have POODLE in the vulnerability title
instance:(vulns.title: POODLE)
Example
Show all certificates requested for renewal
certificate.request.type: RENEWAL
Example
Show all certificates with common name certificate.qualys-demo.com
certificate.request.cn: certificate.qualys-demo.com
Examples
Show findings with certificates requested within certain dates
certificate.request.date: [2017-06-15 ... 2017-06-30]
Show findings with certificates requested starting 2017-06-22, ending 1 month ago
certificate.request.date: [2017-06-22 ... now-1M]
Show findings with certificates requested starting 2 weeks ago, ending 1 second ago
certificate.request.date: [now-2w ... now-1s]
Show findings with certificates requested on specific date
certificate.request.date: '2017-06-14'
Examples
Show any findings with this status
certificate.request.status: SUBMITTED
Show any findings that match exact value
certificate.request.status: "SUBMITTED"
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.
Example
Show the certificates issued by DigiCert and will expire in 30 days
certificate:(expiryGroup:In 30 Days) and
certificate:(issuer.name:DigiCert)
Example
Exclude the certificates that are issued by Qualys in the search result
not certificate:(issuer.organization:Qualys)
Example
Show the assets having an operating system as Windows or Netscaler
asset:(operatingSystem:Windows) or asset:(operatingSystem:Netscaler)