turbot/zoom_compliance

GitHub
Loading controls...

Control: 1.1.3.7 Ensure require encryption for 3rd party endpoints (SIP/H.323) is set to enabled (Manual)

Description

By default, Zoom requires encryption for all data transferred between the Zoom cloud, Zoom client, and Zoom Room. Turn on this setting to require encryption for 3rd party endpoints (SIP/H.323) as well.

Usage

Run the control in your terminal:

steampipe check zoom_compliance.control.cis_v100_1_1_3_7

Snapshot and share results via Steampipe Cloud:

steampipe login
steampipe check --share zoom_compliance.control.cis_v100_1_1_3_7

Plugins & Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (in_meeting -> 'e2e_encryption') :: bool then 'ok'
else 'alarm'
end as status,
'Encryption for 3rd party endpoints is ' || case
when (in_meeting -> 'e2e_encryption') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags