Detection: IAM User Administrator Policy Attached
Overview
Detect when the AdministratorAccess
policy was attached to an IAM user. Assigning this policy grants full access to AWS resources, increasing the risk of unauthorized privilege escalation, security misconfigurations, or potential misuse. Monitoring these events helps enforce the principle of least privilege and ensures that administrative permissions are only assigned when necessary.
References:
Usage
Run the detection in your terminal:
powerpipe detection run aws_cloudtrail_log_detections.detection.iam_user_administrator_policy_attached
Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe detection run aws_cloudtrail_log_detections.detection.iam_user_administrator_policy_attached --share
SQL
This detection uses a named query:
select tp_timestamp as timestamp,string_split(event_source, '.')[1] || ':' || event_name as operation,request_parameters ->> 'userName' as resource,user_identity.arn as actor,tp_source_ip as source_ip,tp_index as account_id,aws_region as region,tp_id as source_id,*
from aws_cloudtrail_logwhere event_source = 'iam.amazonaws.com' and event_name = 'AttachUserPolicy' and (request_parameters ->> 'policyArn') like 'arn:%:iam::aws:policy/AdministratorAccess' and error_code is null
order by event_time desc;