Table: detectify_profile
This table contains information about web application scan profiles used by Detectify.
Examples
List all profiles
select name, endpoint, status, latest_scanfrom detectify_profile;
List the profiles that are not verified
select name, endpoint, status, latest_scanfrom detectify_profilewhere status != 'verified';
Count the number of scans in each status
select count(*) as scans, latest_scan ->> 'status' as "status"from detectify_profilegroup by latest_scan ->> 'status';
Schema for detectify_profile
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
created | timestamp with time zone | Timestamp when the profile was created. | |
endpoint | text | Endpoint of the profile. | |
latest_scan | jsonb | Latest scan details | |
name | text | Name of the profile. | |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
status | text | Status of the profile. | |
token | text | Token associated with the profile. |