turbot/zoom_compliance
Loading controls...

Control: 1.1.1.1.7 Ensure enhanced weak passcode detection is set to enabled (Manual)

Description

For security purposes, Zoom has a few requirements that your passcode can meet. As per passcode requirements, Use enhanced weak passcode detection. This shall make the passcode strong.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_1_1_7

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (
meeting_security -> 'meeting_password_requirement' -> 'weak_enhance_detection'
) :: bool then 'ok'
else 'alarm'
end as status,
'Enhanced weak password detection setting is ' || case
when (
meeting_security -> 'meeting_password_requirement' -> 'weak_enhance_detection'
) :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags