Table: detectify_technology
This table contains information about the technologies detected for each asset monitored by Detectify.
The
token_v3
argument is required to use this table, meaning you need to create an API key for v3 on Detectify.
Examples
List all technologies
select domain_name, service_protocol, port, name, version, categoriesfrom detectify_technology;
List the currently active technologies
select domain_name, service_protocol, port, name, version, categoriesfrom detectify_technologywhere active = 'true';
Count the number of assets using each technology
select count(*) as assets, namefrom detectify_technologygroup by name;
Count the number of assets using each protocol
select count(*) as assets, service_protocolfrom detectify_technologygroup by service_protocol;
Schema for detectify_technology
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
active | boolean | Indicates if the item is active. | |
asset_id | text | Asset ID associated with the item. | |
categories | jsonb | Categories associated with the service or technology. | |
disappeared_at | timestamp with time zone | Timestamp when the item disappeared. | |
domain_name | text | Domain name associated with the item. | |
first_seen_at | timestamp with time zone | Timestamp when the item was first seen. | |
id | text | Unique ID of the item. | |
name | text | Name of the service or technology. | |
port | bigint | Port number. | |
service_protocol | text | Service protocol (e.g., https, http). | |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
team_id | text | Team ID associated with the item. | |
version | text | Version of the service or technology. |