- Categories:
System functions (System Information)
SYSTEM$CLIENT_VULNERABILITY_INFO¶
Returns details about common vulnerabilities and exposures (CVE) fixes and related vulnerabilities for Snowflake clients and drivers.
- See also:
Syntax¶
Arguments¶
None
Returns¶
Return a string containing a JSON array of objects. Each object contains information about a specific client and driver, such as SnowSQL, the JDBC driver, and so on.
Each JSON object contains the following structure:
Where:
clientIdInternal ID of the client or driver. Possible values include:
DOTNETDriverGOJDBCJSDriver(Node.js)ODBCPHP_PDOPythonConnectorSnowSQLSQLAPI
vulnerabilitiesArray of vulnerabilities affecting the client or driver. Each vulnerability is represented as an object with the following name/value pairs:
cveis the CVE identifier for the vulnerability.severityis the severity level of the vulnerability. Possible values include:none,low,medium,high, andcritical.minAffectedis the minimum version of the client or driver that contains this vulnerability. This field is optional, as some vulnerabilities might occur in the first version of a client or driver.maxAffectedis the maximum version that contains this vulnerability.
Usage notes¶
None
Examples¶
The following example calls the SYSTEM$CLIENT_VERSION_INFO and SYSTEM$CLIENT_VULNERABIITY_INFO system functions. The example parses the JSON strings returned by these functions and presents the data in tabular form.