turbot/zoom_compliance

GitHub
Loading controls...

Control: 1.1.3.16 Ensure remote control is set to disabled (Manual)

Description

During screen sharing, the person who is sharing can allow others to control the shared content.

Usage

Run the control in your terminal:

steampipe check zoom_compliance.control.cis_v100_1_1_3_16

Snapshot and share results via Steampipe Cloud:

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

Plugins & Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (in_meeting -> 'remote_control') :: bool then 'alarm'
else 'ok'
end as status,
'Remote control is ' || case
when (in_meeting -> 'remote_control') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags