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

Table: detectify_profile

This table contains information about web application scan profiles used by Detectify.

Examples

List all profiles

select
name,
endpoint,
status,
latest_scan
from
detectify_profile;

List the profiles that are not verified

select
name,
endpoint,
status,
latest_scan
from
detectify_profile
where
status != 'verified';

Count the number of scans in each status

select
count(*) as scans,
latest_scan ->> 'status' as "status"
from
detectify_profile
group by
latest_scan ->> 'status';

Schema for detectify_profile

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
createdtimestamp with time zoneTimestamp when the profile was created.
endpointtextEndpoint of the profile.
latest_scanjsonbLatest scan details
nametextName of the profile.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
statustextStatus of the profile.
tokentextToken associated with the profile.