Skip to main content

lacework-global-38

1.9 Ensure Identity and Access Management (IAM) password policy prevents password reuse (Automated)

Profile Applicability

• Level 1

Description

IAM password policies can prevent the reuse of a given password by the same user. Best practices recommend that the password policy prevent the reuse of passwords.

Rationale

Preventing password reuse increases account resiliency against brute force login attempts.

Audit

Perform the following to ensure the password policy is configured as prescribed:

From Console

  1. Login to AWS Console (with appropriate permissions to View Identity Access Management Account Settings)
  2. Go to IAM Service on the AWS Console
  3. Click on Account Settings on the Left Pane
  4. Ensure "Prevent password reuse" is checked
  5. Ensure "Number of passwords to remember" is set to 24

From Command Line

aws iam get-account-password-policy 

Ensure the output of the above command includes "PasswordReusePrevention": 24

Remediation

Perform the following to set the password policy as prescribed:

From Console

  1. Login to AWS Console (with appropriate permissions to View Identity Access Management Account Settings).
  2. Go to IAM Service on the AWS Console.
  3. Click Account Settings on the Left Pane.
  4. Check "Prevent password reuse".
  5. Set "Number of passwords to remember" to 24.

From Command Line

 aws iam update-account-password-policy --password-reuse-prevention 24
note
  • You can combine all commands starting with "aws iam update-account-password-policy" into a single command.
  • You can utilize Lacework's remediation template to resolve violations of this policy. See Remediation Templates.

References

CCE-78908-1
https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_passwords_account-policy.html
https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html#configure-strong-password-policy