Control: 1.1.2.1.1 Have a minimum password length (Automated)
Description
For security purposes, Zoom has a few requirements that your password must meet. These apply when setting your initial password and when resetting your password. Minimum password length must be at least 8 characters.
Usage
Run the control in your terminal:
powerpipe control run zoom_compliance.control.cis_v100_1_1_2_1_1
Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run zoom_compliance.control.cis_v100_1_1_2_1_1 --share
Steampipe Tables
SQL
select -- Required Columns account_id as resource, case when (schedule_meeting -> 'meeting_password_requirement' -> 'length')::int >= 8 then 'ok' else 'alarm' end as status, 'Minimum password length set to ' || (schedule_meeting -> 'meeting_password_requirement' ->> 'length') || '.' as reasonfrom zoom_account_settings