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, monitoredfrom detectify_asset;
List the non-monitored assets
select name, status, last_seen, monitoredfrom detectify_assetwhere monitored = 'false';
Group assets by monitored status
select count(*) as assets, monitoredfrom detectify_assetgroup by monitored;
Schema for detectify_asset
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
added_by | jsonb | List of sources that added the asset. | |
created | timestamp with time zone | Timestamp when the asset was created. | |
discovered | timestamp with time zone | Timestamp when the asset was discovered. | |
last_seen | timestamp with time zone | Timestamp when the asset was last seen. | |
monitored | boolean | Indicates if the asset is monitored. | |
name | text | Name of the asset. | |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
status | text | Status of the asset. | |
token | text | Token associated with the asset. | |
updated | timestamp with time zone | Timestamp when the asset was last updated. |