Control: 1.1.4.3.3 Ensure allow users to upload custom backgrounds is set to disabled (Manual)
Description
Customize your background to keep your environment private from others in a meeting. This can be used with or without a green screen. Allow users to upload custom backgrounds. Disabling this option ensures that participants do not have inappropriate backgrounds.
Usage
Run the control in your terminal:
powerpipe control run zoom_compliance.control.cis_v100_1_1_4_3_3Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run zoom_compliance.control.cis_v100_1_1_4_3_3 --shareSteampipe Tables
SQL
select  account_id as resource,  case    when (in_meeting -> 'virtual_background_settings' -> 'allow_upload_custom')::bool then 'alarm'    else 'ok'  end as status,  'Upload custom backgrounds is ' || case when (in_meeting -> 'virtual_background_settings' -> 'allow_upload_custom')::bool then 'enabled' else 'disabled' end || '.' as reasonfrom  zoom_account_settings