Skip to content

Add A Policy To A Group (aws)

PlatformAuthorLast Update
awsNick Jones2024-12-02

An adversary may attempt to add a policy to a group, in order to alter the permissions assigned to a user they have compromised.

MITRE IDs

Required Permissions

  • iam:AttachGroupPolicy

Required Parameters

NameTypeDescriptionExample Value
groupstrGroup to add policy toNONE
policyarnstrPolicy to add to grouparn:aws:iam::aws:policy/ReadOnlyAccess

Attacker Action

Terminal window
aws iam attach-group-policy --group-name --policy-arn

Detection Case

ELK query

When logs are ingested into ELK, the following Lucene query can be used to identify relevant events.

eventName:AttachGroupPolicy AND eventSource:iam.amazonaws.com

Sigma Definition

---
title: Add a policy to a group
id: 299b8380-8447-4f24-8520-c7a3c0008ef8
status: experimental
author: Nick Jones
date: 2024-12-02
description: An adversary may attempt to add a policy to a group, in order to alter the permissions assigned to a user they have compromised.
logsource:
service: cloudtrail
detection:
selection_source:
- eventSource: "iam.amazonaws.com"
events:
- eventName: "AttachGroupPolicy"
condition: selection_source and events
level: low
tags:
- attack.T1098
falsepositives:
- Developers making legitimate changes to the environment. Verify whether the user identity, user agent, and/or hostname should be making changes in your environment.