S2W Quaxar

Download 107
Last updated Jul 31, 2026

quaxar-asm-asset

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

Syntax

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

Options

id=STRING
Required. Asset unique ID to look up. Use the asset_id output value of quaxar-asm-assets.
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
asset_idstringAsset IDAsset unique ID
asset_typestringAsset typeDOMAIN or IP
valuestringValueAsset name
detecteddateDetectedAsset detection time
last_scanneddateLast scannedAsset last scanned time
severitystringSeverityEXTREME, MAJOR, MODERATE or MINOR
severity_descriptionsstringSeverity descriptionsNewline-separated severity descriptions
seed_valuesstringSeed valuesNewline-separated matched seeds
ipsstringIPsNewline-separated IP addresses
cloud_providerstringCloud providerCloud provider name
host_namesstringHost namesNewline-separated host names
asnstringASNAS number
ispstringISPAS operator
countrystringCountryCountry of IP
citystringCityCity of IP
certificatesstringCertificatesCertificate list (JSON)
portsstringPortsPort list (JSON, screenshot stripped)
notesstringNotesNote list (JSON)

Error codes

Parsing errors

Error messageCauseResolution
Specify id option please.Missing or empty id optionSpecify the target asset_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-asset is a source command that looks up the detail of a single asset ID. Nested fields such as certificates, ports, and notes are returned as JSON strings, and the ports field is returned with the large screenshot data stripped out. Set pretty=t to print the JSON as indented multiple lines for readability.

The asset ID comes from the asset_id output value of the quaxar-asm-assets command.

Examples

Example: Inspect the detail of a selected asset

Situation: You want to look up the certificate, port, and note detail of a specific asset found via quaxar-asm-assets.

quaxar-asm-asset id=a1b2c3d4e5 pretty=t

Expected result:

asset_idvalueseverityipsports
a1b2c3d4e5example.comEXTREME192.0.2.1[ { ... } ]

Interpretation: The detail fields of a single asset are returned as one row. Parse the JSON values of certificates, ports, and notes for further analysis.