Searching Vulnerability Details

Syntax help displayed in UI for Vulnerability tokens. A complete list of tokens for writing search queries is provided below. Click each token to learn more about it.

vulnerabilities.foundvulnerabilities.found

Use the values true | false to define vulnerabilities are detected or not on the asset.

Example

Show findings with vulnerabilities detected

vulnerabilities.found:true

vulnerabilities.lastFoundvulnerabilities.lastFound

Use a date range or specific date to define when findings were last found.

Examples

Show findings last found within certain dates

vulnerabilities.lastFound: [2019-01-10 ... 2019-06-01]

Show findings last found starting 2010-06-01, ending 1 month ago

vulnerabilities.lastFound: [2019-01-10 ... now-1M]

Show findings last found starting 2 weeks ago, ending 1 second ago

vulnerabilities.lastFound: [now-2w ... now-1s]

Show findings last found on a specific date

vulnerabilities.lastFound:'2019-07-15'

vulnerabilities.severityvulnerabilities.severity

Use an integer value ##### to find vulnerabilities with this severity (1-5). Select from values in the drop-down menu.

Example

Show findings with severity 5

vulnerabilities.severity:5

vulnerabilities.statusvulnerabilities.status

Use a text value ##### to find vulnerabilities with certain status (e.g. Active, Fixed, New, Reopened). Select from names in the drop-down menu.

Example

Show vulnerabilities with New status

vulnerabilities.status:New

vulnerabilities.typeDetectedvulnerabilities.typeDetected

Use a text value ##### to find assets with vulnerabilities of the specified detection type (e.g. Confirmed, Potential, Information). Select from names in the drop-down menu.

Example

Show vulnerabilities with detection type Confirmed

vulnerabilities.typeDetected:Confirmed

vulnerabilities.vulnerability.qidvulnerabilities.vulnerability.qid

Use an integer value ##### to show vulnerabilities with the defined QIDs.

Example

Show vulnerabilities with QID 90405

vulnerabilities.vulnerability.qid:90405

vulnerabilities.vulnerability.categoryvulnerabilities.vulnerability.category

Use a text value ##### to show vulnerabilities with the defined category.

Example

Show findings with category Android

vulnerabilities.vulnerability.category:Android

vulnerabilities.vulnerability.titlevulnerabilities.vulnerability.title

Use values within quotes or backticks to help you find the title you're looking for.

Examples

Show any findings related to this title

vulnerabilities.vulnerability.title: Remote Code Execution

Show any findings that contain "Remote" or "Code" in title

vulnerabilities.vulnerability.title: "Remote Code"

Show any findings that match exact value "Remote Code"

vulnerabilities.vulnerability.title: `Remote Code`

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.

andand

Use a boolean query to express your query using AND logic..

Example

vulnerabilities.severity: 5 and vulnerabilities.typeDetected: Confirmed

Find vulnerabilities with this severity and type detected.

notnot

Use a boolean query to express your query using NOT logic.

Example

not vulnerabilities.severity: 1

Show vulnerabilities whose severity is not 1.

oror

Use a boolean query to express your query using OR logic.

Example

vulnerabilities.severity: 5 or vulnerabilities.severity: 4

Show findings with one of these vulnerabilities severity.