turbot/net_insights

Query: ssl_server_rc4_cipher_count

Usage

powerpipe query net_insights.query.ssl_server_rc4_cipher_count

Steampipe Tables

SQL

with domain_list as (
select
$1 as domain,
$1 || ':443' as address
),
rc4_cipher_count as (
select
address,
count(address) as cipher_count
from
net_tls_connection
where
address in (
select
address
from
domain_list
)
and version in ('TLS v1.2', 'TLS v1.1', 'TLS v1.0')
and cipher_suite_name in (
'TLS_RSA_WITH_RC4_128_SHA',
'TLS_ECDHE_ECDSA_WITH_RC4_128_SHA',
'TLS_ECDHE_RSA_WITH_RC4_128_SHA'
)
and handshake_completed
group by
address
)
select
'RC4 Cipher Suites' as label,
case
when i.cipher_count is null then 0
else i.cipher_count
end as value,
case
when i.cipher_count is null then 'ok'
when i.cipher_count < 1 then 'ok'
else 'alert'
end as type
from
domain_list as d
left join rc4_cipher_count as i on d.address = i.address;

Params

ArgsNameDefaultDescriptionVariable
$1domain_input

    Dashboards

    The query is used in the dashboards: