l-teles/detectify
steampipe plugin install l-teles/detectify

Table: detectify_asset

An asset in Detectify refers to any domain or subdomain that is monitored and scanned for vulnerabilities by the surface monitoring module, web application scanner or both. This table includes only the root domains.

Examples

List all assets

select
name,
status,
last_seen,
monitored
from
detectify_asset;

List the non-monitored assets

select
name,
status,
last_seen,
monitored
from
detectify_asset
where
monitored = 'false';

Group assets by monitored status

select
count(*) as assets,
monitored
from
detectify_asset
group by
monitored;

Schema for detectify_asset

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
added_byjsonbList of sources that added the asset.
createdtimestamp with time zoneTimestamp when the asset was created.
discoveredtimestamp with time zoneTimestamp when the asset was discovered.
last_seentimestamp with time zoneTimestamp when the asset was last seen.
monitoredbooleanIndicates if the asset is monitored.
nametextName of the asset.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
statustextStatus of the asset.
tokentextToken associated with the asset.
updatedtimestamp with time zoneTimestamp when the asset was last updated.