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

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,
categories
from
detectify_technology;

List the currently active technologies

select
domain_name,
service_protocol,
port,
name,
version,
categories
from
detectify_technology
where
active = 'true';

Count the number of assets using each technology

select
count(*) as assets,
name
from
detectify_technology
group by
name;

Count the number of assets using each protocol

select
count(*) as assets,
service_protocol
from
detectify_technology
group by
service_protocol;

Schema for detectify_technology

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
activebooleanIndicates if the item is active.
asset_idtextAsset ID associated with the item.
categoriesjsonbCategories associated with the service or technology.
disappeared_attimestamp with time zoneTimestamp when the item disappeared.
domain_nametextDomain name associated with the item.
first_seen_attimestamp with time zoneTimestamp when the item was first seen.
idtextUnique ID of the item.
nametextName of the service or technology.
portbigintPort number.
service_protocoltextService protocol (e.g., https, http).
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
team_idtextTeam ID associated with the item.
versiontextVersion of the service or technology.