Loading controls...
Control: 3.1.1.1.3 Ensure password cannot contain consecutive characters is set to enabled (Manual)
Description
Cannot contain consecutive characters (e.g. "11111", "12345", "abcde", or "qwert") and specify the length of consecutive characters to 4 or above.
Usage
Run the control in your terminal:
steampipe check zoom_compliance.control.cis_v100_3_1_1_1_3
Snapshot and share results via Steampipe Cloud:
steampipe loginsteampipe check --share zoom_compliance.control.cis_v100_3_1_1_1_3
Plugins & Tables
SQL
select -- Required Columns account_id as resource, case when ( security -> 'password_requirement' -> 'consecutive_characters_length' ) :: int >= 9 then 'ok' else 'alarm' end as status, 'Consecutive characters length set to ' || ( security -> 'password_requirement' ->> 'consecutive_characters_length' ) || '.' as reasonfrom zoom_account_settings