S2W Quaxar

Download 107
Last updated Jul 31, 2026

quaxar-asm-vulnerability

Get the detail of a single vulnerability by vulnerability ID from the S2W Quaxar ASM service.

Syntax

quaxar-asm-vulnerability id=STRING [profile=STRING] [orgs=STRING] [pretty=BOOL]

Options

id=STRING
Required. Vulnerability unique ID to look up. Use the vulnerability_id output value of quaxar-asm-vulnerabilities.
profile=STRING
Optional. QUAXAR connect profile code. If omitted, an available profile is used automatically.
orgs=STRING
Optional. Comma-separated customer organization names.
pretty=BOOL
Optional. Set t to enable pretty print with line breaks (default: f).

Output fields

FieldTypeNameDescription
profilestringConnect profileProfile name of QUAXAR
vulnerability_idstringVulnerability IDVulnerability unique ID
cve_codestringCVE codeCVE code
publisheddatePublishedCVE published time
detecteddateDetectedVulnerability detection time
epssfloatEPSSEPSS score
epss_gradestringEPSS gradeHIGH, MEDIUM or LOW
cvssfloatCVSSCVSS score
cvss_gradestringCVSS gradeCRITICAL, HIGH, MEDIUM or LOW
basic_metricsstringBasic metricsCVSS basic metrics (JSON)
descriptionstringDescriptionCVE description
affected_softwaresstringAffected softwaresAffected software list (JSON)
notesstringNotesNote list (JSON)

Error codes

Parsing errors

Error messageCauseResolution
Specify id option please.Missing or empty id optionSpecify the target vulnerability_id in id
Specify valid Quaxar profile.Invalid profile in the profile optionSpecify a valid Quaxar connect profile code
No available Quaxar profile found.No Quaxar connect profile registeredRegister a Quaxar connect profile first

Runtime errors

Error messageCauseResolution
quaxar asm api error: status=..., message=...ASM API returned an error stateCheck id validity, profile permission and service

Description

quaxar-asm-vulnerability is a source command that looks up the detail of a single vulnerability ID. It returns detailed fields not provided by the list command, such as CVE published time, CVE description, CVSS basic metrics, and affected software. basic_metrics, affected_softwares, and notes are returned as JSON strings and can be indented with pretty=t. The vulnerability ID comes from the vulnerability_id output value of the quaxar-asm-vulnerabilities command.

Examples

Example: Inspect the CVE detail of a priority vulnerability

Situation: You want to inspect the CVE description and affected software of a high-risk vulnerability selected from the list.

quaxar-asm-vulnerability id=44752f37272e944fd2c913a35342eacc pretty=t

Expected result:

cve_codecvsscvss_gradepublisheddescription
CVE-2023-471458.4HIGH2023-11-14 00:00:00IBM DB2 buffer overflow

Interpretation: The detail fields of a single vulnerability are returned as one row. Parse the JSON of affected_softwares to cross-check which software among internal assets is affected.