turbot/zoom_compliance
Loading controls...

Control: 1.1.3.3.1 Ensure hosts and participants can send files through the in-meeting chat is set to disabled (Manual)

Description

Hosts and participants can send files through the in-meeting chat. As this is account level setting keep this enabled. If option of file transfer is required, then use it along with allowing specific file extension.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_3_3_1

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

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

Tags