Closed PaulICannon closed 1 year ago
The fix for CIS 1.4 is in PR https://github.com/oracle-quickstart/oci-cis-landingzone-quickstart/pull/109. Release 2.5.11
The script is not able to check IDCS because its APIs are not supported by the OCI SDK. However, with the migration to tenancies with Identity Domains, we will be able to check Identity Domains. We are planning to add these checks in the upcoming months.
Hi,
I've been investigating some of the checks this script runs against my tenancy and found a few issues.
first 1.4, checking for password length is actually looking at the is_lowercase_characters_required field, not minimum_password_length, plus the code would never return a false value. I think the following lines:
should be replaced by:
Also, this is only checking the OCI Native IAM password length, not the IDCS password policy password length.
Secondly, checks for 1.5 and 1.6 (password expiry = 365 & password reuse = 24) are entirely missing from the code. As these are also in the IDCS password policy, is the script unable to check the IDCS password policy?
Regards, Paul.