Searching APNs
Syntax help displayed in UI for APNs tokens. A complete list of tokens for writing search queries is provided below. Click each token to learn more about it.
apns.serialNumberapns.serialNumber
Use a text value ##### in a quotes to find the APNs certificates with serial number you're looking for.
Example
Show APNs certificate with this serial number
apns.serialNumber:"55bc2d02b5476daf"
Use a text value ##### in a quotes to find the APNs certificates with the name you're looking for.
Example
Show APNs certificate with this name
apns.name:"Demo APN Certificate"
Use a text value ##### in a quotes to find the APNs certificates with the status you're looking for.
Example
Show APNs certificates with this status
apns.status:"Expired"
apns.uploadedOnapns.uploadedOn
Use a date range or specific date to define when APNs certificates were uploaded.
Examples
Show APNs certificates uploaded within certain dates
apns.uploadedOn: [2019-01-01 ... 2019-01-02]
Show APNs certificates uploaded starting 2018-06-01, ending 3 months ago
apns.uploadedOn: [2018-06-01 ... now-3M]
Show APNs certificates uploaded starting 2 weeks ago, ending 1 second ago
apns.uploadedOn: [now-2w ... now-1s]
Show APNs certificates uploaded on a specific date
apns.uploadedOn: '2019-02-01'
Use a text value ##### in a quotes to find the APNs certificates uploaded using the Apple Id you are looking for.
Example
Show APNs certificates uploaded with this Apple Id
apns.appleId:"test@apple.com"
Use a date range or specific date to define when APNs certificates are going to expire.
Examples
Show APNs certificates valid till within certain dates
apns.validTill: [2019-01-01 ... 2019-01-02]
Show APNs certificates valid till starting 2018-06-01, ending 3 months ago
apns.validTill: [2018-06-01 ... now-3M]
Show APNs certificates valid till starting 2 weeks ago, ending 1 second ago
apns.validTill: [now-2w ... now-1s]
Show APNs certificates valid till on a specific date
apns.validTill: '2019-02-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.
Use a boolean query to express your query using AND logic..
Example
apns.appleId: "test@apple.com" and apns.status: "Expired"
Find APNs with this Apple Id and Expired status.
Use a boolean query to express your query using NOT logic.
Example
not apns.status: "Active"
Show APNs whose status is not Active.
Use a boolean query to express your query using OR logic.
Example
apns.status: "Expired" or apns.status: "Expiring"
Show findings with one of these APNs status.