lacework-global-45
info
This rule also encompasses lacework-global-485 and lacework-global-486. See Adjusted Rules for CIS AWS 1.4.0 for further details.
1.16 Ensure IAM policies that allow full "*:*" administrative privileges are not attached (Automated)
Profile Applicability
• Level 1
Description
IAM policies are the means by which privileges are granted to users, groups, or roles. It is recommended and considered a standard security advice to grant least privilege -that is, granting only the permissions required to perform a task. Determine what users need to do and then craft policies for them that let the users perform only those tasks, instead of allowing full administrative privileges.
Rationale
It's more secure to start with a minimum set of permissions and grant additional permissions as necessary, rather than starting with permissions that are too lenient and then trying to tighten them later.
Providing full administrative privileges instead of restricting to the minimum set of permissions that the user is required to do exposes the resources to potentially unwanted actions.
IAM policies that have a statement with "Effect": "Allow" with "Action": "*" over "Resource": "*" should be removed.
Audit
Perform the following to determine what policies are created:
From Command Line
- Run the following to get a list of IAM policies:
aws iam list-policies --only-attached --output text
- For each policy returned, run the following command to determine if any policies is allowing full administrative privileges on the account:
aws iam get-policy-version --policy-arn <policy_arn> --version-id <version>
- In output ensure policy should not have any Statement block with
"Effect": "Allow"
andAction
set to"*"
andResource
set to"*"
Remediation
From Console
Perform the following to detach the policy that has full administrative privileges:
- Sign in to the AWS Management Console and open the IAM console at https://console.aws.amazon.com/iam/.
- In the navigation pane, click Policies and then search for the policy name found in the audit step.
- Select the policy that needs to be deleted.
- In the policy action menu, select first
Detach
- Select all Users, Groups, Roles that have this policy attached
- Click
Detach Policy
- In the policy action menu, select
Detach
From Command Line
Perform the following to detach the policy that has full administrative privileges as found in the audit step:
- Lists all IAM users, groups, and roles that the specified managed policy is attached to.
aws iam list-entities-for-policy --policy-arn <policy_arn>
- Detach the policy from all IAM Users:
aws iam detach-user-policy --user-name <iam_user> --policy-arn <policy_arn>
- Detach the policy from all IAM Groups:
aws iam detach-group-policy --group-name <iam_group> --policy-arn <policy_arn>
- Detach the policy from all IAM Roles:
aws iam detach-role-policy --role-name <iam_role> --policy-arn <policy_arn>
References
CCE-78912-3
https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html
https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_managed-vs-inline.html
https://docs.aws.amazon.com/cli/latest/reference/iam/index.html#cli-aws-iam