Searching Applications
Syntax help displayed in UI for Application tokens. A complete list of tokens for writing search queries is provided below. Click each token to learn more about it.
application.isSystemAppapplication.isSystemApp
Use the values Yes | No in quotes to find system applications.
Example
Show system applications
application.isSystemApp: "Yes"
application.nameapplication.name
Use values within quotes or backticks to help you find the applications you're looking for.
Examples
Show any findings with this application version
application.name: ES File Explorer
Show any findings that contain components of application name
application.name: "ES File Explorer"
Show any findings that match exact value
application.name: `ES File Explorer`
application.versionapplication.version
Use values within quotes or backticks to help you find the application version you're looking for.
Examples
Show any findings with this application version
application.version: 4.1.9.7.4
Show any findings that contain components of application version
application.version: "4.1.9.7.4"
Show any findings that match exact value
application.version: `4.1.9.7.4`
application.versionCodeapplication.versionCode
Use a text value ##### in quotes to find applications with certain version code.
Example
Show applications of this version code
application.versionCode:"20"
application.installedOnapplication.installedOn
Use a date range or specific date to define when applications were installed.
Examples
Show applications installed within certain dates
application.installedOn: [2018-01-01 ... 2018-01-10]
Show applications installed starting 2017-06-01, ending 3 months ago
application.installedOn: [2017-06-01 ... now-3M]
Show applications installed starting 2 weeks ago, ending 1 second ago
application.installedOn: [now-2w ... now-1s]
Show applications installed on a specific date
application.installedOn:'2018-01-22'
application.tagapplication.tag
Use values within quotes or backticks to help you find the application with certain tag.
Examples
Show any applications with this tag
application.tag: Business
Show any applications that contain components of tag name
application.tag: "Business"
Show any application tags that match exact value
application.tag: `Business`
application.usesMockLocationapplication.usesMockLocation
Use the values Yes | No in quotes to find applications that use mock location.
Example
Show applications that use mock location
application.usesMockLocation: "Yes"
application.identifierapplication.identifier
Use a text value ##### in quotes to define the application identifier you are interested in.
Example
Show findings with this application identifier
application.identifier:"com.facebook.katana"
application.hasUpdateAvailableapplication.hasUpdateAvailable
Use a text value ##### to find applications for which update is available
Example
Show applications for which update is available
application.hasUpdateAvailable:"Yes"
application.hash.MD5application.hash.MD5
Use a text value #### in quotes to define the MD5 hash of a application file you're interested in.
Example
Show application with this MD5 hash
application.hash.MD5:"9a07d92b04afccabca93bc9279aefdcb"
application.hash.SHA1application.hash.SHA1
Use a text value #### in quotes to define the SHA-1 hash of a application file you're interested in.
Example
Show application with this SHA-1 hash
application.hash.SHA1:"3ff09b5f0429448ae92db6abba04a94240183f83"
application.hash.SHA256application.hash.SHA256
Use a text value #### in quotes to define the SHA-256 hash of a application file you're interested in.
Example
Show application with this SHA-256 hash application;
application.hash.SHA256:"589037f6c2b837128383756910f6e2901c7577e4bfb16597ae22d045d94f225a"
application.installationSourceapplication.installationSource
Use a text value #### in quotes to find the applications with a certain installation source
Example
Show applications with this installation source
application.installationSource:"Unknown"
application.isInstalledViaAppleAppStoreapplication.isInstalledViaAppleAppStore
Use the values Yes | No in quotes to find applications which are or not installed via Apple App Store
Example
Show applications which are not installed via Apple App Store
application.isInstalledViaAppleAppStore:"No"
application.isPotentialHarmfulAppapplication.isPotentialHarmfulApp
Use the values Yes | No in quotes to find applications which are or not Potential Harmful Apps
Example
Show applications which are Potential Harmful
application.isPotentialHarmfulApp:"Yes"
application.isBatteryOptimizationEnabledapplication.isBatteryOptimizationEnabled
Use the values Yes | No in quotes to find applications for which the battery optimization is enabled or not
Example
Show applications for which the battery optimization is enabled
application.isBatteryOptimizationEnabled:"Yes"
application.isScreenReaderEnableapplication.isScreenReaderEnable
Use the values Yes | No in quotes to find applications for which the screen reader is enabled or not
Example
Show applications with screen reader enabled
application.isScreenReaderEnable:"Yes"
application.canRequestScreenReaderapplication.canRequestScreenReader
Use the values Yes | No in quotes to find applications which can raise request for screen reader or not
Example
Show applications which can request for screen reader
application.canRequestScreenReader:"Yes"
application.canRequestDeviceAdministratorapplication.canRequestDeviceAdministrator
Use the values Yes | No in quotes to find applications which can raise request for device administrator or not
Example
Show applications which can request for device administrator
application.canRequestDeviceAdministrator:"Yes"
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
application.name: "Hangouts" and application.version: "31.0.246194187"
Find application with this name and version.
Use a boolean query to express your query using NOT logic.
Example
not application.identifier: "com.facebook.katana"
Show applications whose identifier is not com.facebook.katana.
Use a boolean query to express your query using OR logic.
Example
application.version: "31.0.246194187" or application.version: "30.0.256235787"
Show findings with one of these application version.