List Secrets In Secrets Manager (aws)
| Platform | Author | Last Update | 
|---|---|---|
| aws | Nick Jones | 2024-12-02 | 
An adversary may attempt to enumerate the secrets in secrets manager, in order to find secrets to access.
MITRE IDs
Required Permissions
- secretsmanager:ListSecrets
Required Parameters
None
Attacker Action
aws secretsmanager list-secretsDetection Case
ELK query
When logs are ingested into ELK, the following Lucene query can be used to identify relevant events.
eventName:ListSecrets AND eventSource:*.secretsmanager.amazonaws.comSigma Definition
---title: List Secrets in Secrets Managerid: 40b578f3-5056-42b8-ae6b-13e5b015d817status: experimentalauthor: Nick Jonesdate: 2024-12-02description: An adversary may attempt to enumerate the secrets in secrets manager, in order to find secrets to access.logsource:  service: cloudtraildetection:  selection_source:    - eventSource: "*.secretsmanager.amazonaws.com"  events:    - eventName: "ListSecrets"  condition: selection_source and eventslevel: lowtags:  - attack.T1528
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.