Home

Search Tokens for Knowledgebase

You can use the search tokens available in the Knowledgebase tab and refine your search results. Click each token to learn more about it.

Generic

andand

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

Example

Find QIDs with severity 4 and updated on a specified date

vulnDef.severity:4 AND vulnDef.updated: "2021-07-20"

notnot

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

Example

Find scan schedules that don't have type DISCOVERY

NOT scan.schedule.type: "DISCOVERY"

oror

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

Example

Find scan schedules with DISCOVERY scan type OR Active status

scan.schedule.type: "DISCOVERY" OR scan.schedule.status: "True"

Knowledge Base Tokens

Use these search tokens to find vulnerabilities with different criteria.

vulnDef.idvulnDef.id

Use an integer value to find the vulnerability with the specified ID.

Examples

Find vulnerability with the given ID

vulnDef.id:10055

vulnDef.qidvulnDef.qid

Use an integer value to find the vulnerability with the specified QID.

Example

Find vulnerability with the given QID

vulnDef.id:10055

vulnDef.namevulnDef.name

Use text values within quotes or backticks to search QIDs with the specified name.

Examples

Find the QID that contains the part of the given name

vulnDef.name:"campas cgi vulnerability"

Find the QID with the given name

vulnDef.name:`campas cgi vulnerability`

vulnDef.threatvulnDef.threat

Use text value in quotes or backticks to search QIDs with the specified threat.

Examples

Find QIDs that contains the part of the given threat

vulnDef.threat:"campas cgi"

Find QIDs with the given threat

vulnDef.threat:`campas cgi`

vulnDef.severityvulnDef.severity 

Use an integer value to find vulnerabilities with the specified severity level. The severity level ranges between 1-5. The search includes potential and confirmed vulnerabilities with the specified severity.

Examples

Find vulnerabilities with severity 4

vulnDef.severity:4

Find vulnerabilities with severity greater than 3

vulnDef.severity>3

Find vulnerabilities with severity less than equal to 4

vulnDef.severity<=4

vulnDef.product.idvulnDef.product.id

Use an integer value to search the QID with the specified product ID.

Example

Search QID with the given Product ID.

vulnDef.product.id:4234

vulnDef.product.namevulnDef.product.name

Use text value within quotes or backticks to search the QID with the specified product name.

Examples

Find QIDs that contains the part of the given product name

vulnDef.product.name:"zypper"

Find QID with the given product name

vulnDef.product.name:`zypper`

vulnDef.vendor.idvulnDef.vendor.id

Use an integer value to search all QIDs with the specified vendor ID.

Example

Find all QIDs with the specified vendor ID.

vulnDef.vendor.id:[284, 157, 1259]

vulnDef.vendor.namevulnDef.vendor.name

Use text value within quotes or backticks to search the QID with the specified vendor name.

Examples

Find QID that contains the part of the vendor name

vulnDef.vendor.name:"suse"

Find QID with the given vendor name

vulnDef.vendor.name:`suse`

vulnDef.categoryvulnDef.category

Use text value in quotes or backticks to search the QIDs with the specified category.

Example

Find QIDs with the category that contains the part of the given name

vulnDef.category:"Web Application"

Find QIDs with the given category

vulnDef.category:`Web Application`

vulnDef.supportedByvulnDef.supportedBy

Use text value within quotes or backticks to search QIDs supported by the specified applications.

Examples

Find QIDs supported by either of the specified applications

vulnDef.vendor.supportedBy:"WAS"

Find QIDs supported by the specified module

vulnDef.vendor.supportedBy:`VM, WAS`

vulnDef.updatedvulnDef.updated

Use a date range or specific date to find QIDs updated on a specific date or date range.

Examples

Find QIDs updated on specific date

vulnDef.updated:2021-06-15

Find QIDs updated between March 2023 to July 2023

vulnDef.updated:[2023-03-01 .. 2023-07-31]

vulnDef.cveIdsvulnDef.cveIds

Use an integer value to search QIDs matching a specific CVE ID.

Example

Find QIDs matching a specific CVEID

vulnDef.cveIds:CVE-2015-2838

vulnDef.cweIdsvulnDef.cweIds

Use an integer to search QIDs with a given CWE Id associated with it.

Example

Find QIDs matching a specific CWE ID

vulnDef.cweIds:451

vulnDef.owaspTopTen.idvulnDef.owaspTopTen.id

Use an integer value to search QIDs with the given OWASP top ten category ID.

Example

Find QID supported by specific OWASP ID

vulnDef.owaspTopTen.id:154

vulnDef.owaspTopTen.namevulnDef.owaspTopTen.name

Use values within quotes or backticks to search QIDs with the specified OWASP top ten category name.

Examples

Search QIDs that contains the part of OWASP name.

vulnDef.owaspTopTen.name:"Cryptographic Failures"

Example

Search QID supported by specific OWASP name.

vulnDef.owaspTopTen.name:`Cryptographic Failures`

vulnDef.cvss3Info.baseScorevulnDef.cvss3Info.baseScore

Use an integer value to search QIDs with the specified CVSS3 base score value.

Example

Find QIDs with the CVSS V3 base score as 6.1

vulnDef.cvss3Info.baseScore:6.1

vulnDef.cvss3Info.temporalScorevulnDef.cvss3Info.temporalScore

Use an integer value to search QIDs with the specified CVSS3 temporal score value.

Example

Find QIDs with CVSS V3 temporal score as 5.8

vulnDef.cvss3Info.temporalScore:5.8