Detection rules › Panther

AWS IAM Group Users

Severity
low
Tags
AWS, Identity & Access Management, Privilege Escalation:Valid Accounts
Reference
https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html
Source
github.com/panther-labs/panther-analysis

This Policy ensures that all IAM groups have at least one IAM user. If they are vacant, they should be deleted.

MITRE ATT&CK coverage

TacticTechniques
Privilege EscalationT1078 Valid Accounts

Rule body yaml

AnalysisType: policy
Filename: aws_iam_group_users.py
PolicyID: "AWS.IAM.Group.Users"
DisplayName: "AWS IAM Group Users"
Enabled: true
ResourceTypes:
  - AWS.IAM.Group
Tags:
  - AWS
  - Identity & Access Management
  - Privilege Escalation:Valid Accounts
Reports:
  MITRE ATT&CK:
    - TA0004:T1078
Severity: Low
Description: >
  This Policy ensures that all IAM groups have at least one IAM user. If they are vacant,
  they should be deleted.
Runbook: >
  https://docs.runpanther.io/alert-runbooks/built-in-policies/aws-iam-group-has-users
Reference: https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html
Tests:
  - Name: Group Has No Users
    ExpectedResult: false
    Resource:
      {
        "Arn": "arn:aws:iam::123456789012:group/ExampleGroup",
        "CreateDate": "2019-01-01T00:00:00Z",
        "GroupId": "ABCDEFGHIJKLMNOP",
        "GroupName": "ExampleGroup",
        "Path": "/",
        "Users": null,
      }
  - Name: Group Has Users
    ExpectedResult: true
    Resource:
      {
        "Arn": "arn:aws:iam::123456789012:group/ExampleGroup",
        "CreateDate": "2019-01-01T00:00:00Z",
        "GroupId": "ABCDEFGHIJKLMNOP",
        "GroupName": "ExampleGroup",
        "Path": "/",
        "Users":
          [
            {
              "Arn": "arn:aws:iam::123456789012:user/Bobert",
              "CreateDate": "2019-01-1T00:00:00Z",
              "PasswordLastUsed": null,
              "Path": "/",
              "PermissionsBoundary": null,
              "Tags": null,
              "UserId": "ABCDEFGHIJKLMNOP",
              "UserName": "Bobert",
            },
          ],
      }

Detection logic

Condition

Users not is_not_null

Exclusions

Top-level NOT(...) conjuncts: predicates this rule actively suppresses.

FieldKindExcluded values
Usersis_not_null(no value, null check)