SV-82433r1_rule
V-67943
SRG-APP-000164-DB-000401
SQL4-00-038900
CAT II
10
For each SQL Server Login identified in the Check as out of compliance:
In SQL Server Management Studio Object Explorer, navigate to <SQL Server instance name> >> Security >> Logins >> <login name>. Right-click, select Properties. Select the check box Enforce Password Policy. Click OK.
Alternatively, for each identified Login, run the statement:
ALTER LOGIN <login name> CHECK_POLICY = ON;
Run the statement:
SELECT
name
FROM
sys.sql_logins
WHERE
type_desc = 'SQL_LOGIN'
AND is_disabled = 0
AND is_policy_checked = 0 ;
If no account names are listed, this is not a finding.
For each account name listed, determine whether it is documented as requiring exemption from the standard password complexity rules, if it is not, this is a finding.
V-67943
False
SQL4-00-038900
Run the statement:
SELECT
name
FROM
sys.sql_logins
WHERE
type_desc = 'SQL_LOGIN'
AND is_disabled = 0
AND is_policy_checked = 0 ;
If no account names are listed, this is not a finding.
For each account name listed, determine whether it is documented as requiring exemption from the standard password complexity rules, if it is not, this is a finding.
M
2639