turbot/net_insights

Query: ssl_server_supported_protocols

Usage

powerpipe query net_insights.query.ssl_server_supported_protocols

Steampipe Tables

SQL

with supported_protocols as (
select
distinct version
from
net_tls_connection
where
address = $1 || ':443'
and handshake_completed
order by
version desc
)
select
'Protocols Supported' as label,
string_agg(version, ', ') as value,
'info' as type
from
supported_protocols;

Params

ArgsNameDefaultDescriptionVariable
$1domain_input

    Dashboards

    The query is used in the dashboards: