Techniques
Sample rules
AWS SES Enumeration via Long-Term Access Key
- source: elastic
- technicques:
- T1526
Description
Detects enumeration of Amazon Simple Email Service (SES) resources using long-term IAM access keys (AKIA* prefix). Long-term access keys are associated with IAM users and are the credential type most commonly exfiltrated from repositories, configuration files, and environment variables. An adversary who obtains a long-term key may enumerate SES to discover verified email identities, sending quotas, and DKIM/MAIL FROM domain configurations as a precursor to phishing or spam campaigns launched from the compromised account’s verified domains.
Detection logic
data_stream.dataset: "aws.cloudtrail"
and event.provider: "ses.amazonaws.com"
and event.action: (
"ListIdentities" or
"GetAccountSendingEnabled" or
"GetSendQuota" or
"ListEmailIdentities" or
"GetEmailIdentity" or
"DescribeActiveReceiptRuleSet" or
"ListReceiptRuleSets"
)
and event.outcome: "success"
and aws.cloudtrail.user_identity.access_key_id: AKIA*