turbot/zoom_compliance
Loading controls...

Control: 1.1.3.4.2 Ensure "who can share?" is set to "Host Only" (Manual)

Description

Select "Who can share?" as "Host Only" here. This can be controlled by host for a particular meeting at desktop client software.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_3_4_2

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run zoom_compliance.control.cis_v100_1_1_3_4_2 --share

Steampipe Tables

SQL

select
-- Required Columns
account_id as resource,
case
when in_meeting ->> 'who_can_share_screen' = 'host' then 'ok'
else 'alarm'
end as status,
'Who can share is ' || (in_meeting ->> 'who_can_share_screen') || '.' as reason
from
zoom_account_settings

Tags