-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New events: CloudStrike - Cloud-Conscious Tactics, Techniques, and Pr…
…ocedures (TTPs) & UpdateSMLProvider research (#17) * UpdateSMLProvider Persistence research * fwd:cloudsec Cloud-Conscious TTPs
- Loading branch information
1 parent
fd7c99b
commit 17d4188
Showing
21 changed files
with
1,046 additions
and
713 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"eventName": "UpdateSAMLProvider", | ||
"eventSource": "iam.amazonaws.com", | ||
"awsService": "IAM", | ||
"description": "Updates the metadata document for an existing SAML provider resource object.", | ||
"mitreAttackTactics": [ | ||
"TA0003 - Persistence", | ||
"TA0004 - Privilege Escalation" | ||
], | ||
"mitreAttackTechniques": [ | ||
"T1098 - Account Manipulation" | ||
], | ||
"usedInWild": false, | ||
"incidents": [], | ||
"researchLinks": [ | ||
{ | ||
"description": "Gaining AWS Persistence by Updating a SAML Identity Provider", | ||
"link": "https://medium.com/@adan.alvarez/gaining-aws-persistence-by-updating-a-saml-identity-provider-ef57ebdc8db5" | ||
} | ||
], | ||
"securityImplications": "Attackers might use UpdateSAMLProvider to change the metadata document from a SAML provider for latter being able to assume the roles that trust this provider.", | ||
"alerting": [], | ||
"simulation": [ | ||
{ | ||
"type": "commandLine", | ||
"value": "aws iam update-saml-provider --saml-metadata-document file://TrailDiscoverSAMLMetaData.xml --saml-provider-arn arn:aws:iam::123456789012:saml-provider/traildiscover" | ||
} | ||
], | ||
"permissions": "https://aws.permissions.cloud/iam/iam#iam-UpdateSAMLProvider" | ||
} |
Oops, something went wrong.