Skip to content

Create New Policy Version (aws)

PlatformAuthorLast Update
awsNick Jones2024-12-02

An attacker may attempt to create a new version of a given IAM policy in order to attach extra permissions to an entity they control.

MITRE IDs

Required Permissions

  • iam:CreatePolicyVersion

Required Parameters

NameTypeDescriptionExample Value
policy_arnstrARN of the policy to create a new version forarn:aws:iam::123456789012:policy/test
policy_documentstrNew policy to upload - for the CLI, this should be a path to the json document. For Leonidas, this should be the JSON document itself.file://path/to/administrator/policy.json

Attacker Action

Terminal window
aws iam create-policy-version –policy-arn policy_arn –policy-document policy_document –set-as-default

Detection Case

ELK query

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

eventName:CreatePolicyVersion AND eventSource:iam.amazonaws.com

Sigma Definition

---
title: Create New Policy Version
id: b5104c3a-40f4-464a-934a-a917a89faf1a
status: experimental
author: Nick Jones
date: 2024-12-02
description: An attacker may attempt to create a new version of a given IAM policy in order to attach extra permissions to an entity they control.
logsource:
service: cloudtrail
detection:
selection_source:
- eventSource: "iam.amazonaws.com"
events:
- eventName: "CreatePolicyVersion"
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.