Files
blue-team-tools/rules/cloud/aws/aws_ses_messaging_enabled.yml
T

28 lines
972 B
YAML
Raw Normal View History

2022-12-29 05:46:36 +11:00
title: Potential AWS Cloud Email Service Abuse
2022-12-16 10:32:18 +01:00
id: 60b84424-a724-4502-bd0d-cc676e1bc90e
2022-12-16 09:24:19 +01:00
status: experimental
2022-12-29 05:46:36 +11:00
description: Detects when the email sending feature is enabled for an AWS account and the email address verification request is dispatched in quick succession
2022-12-16 09:24:19 +01:00
references:
- https://unit42.paloaltonetworks.com/compromised-cloud-compute-credentials/
author: Janantha Marasinghe
date: 2022/12/12
2022-12-29 05:46:36 +11:00
modified: 2022/12/28
2022-12-16 09:24:19 +01:00
tags:
- attack.t1583.006
- attack.resource_development
logsource:
product: aws
service: cloudtrail
detection:
selection1:
2022-12-23 11:01:57 +01:00
eventSource: 'ses.amazonaws.com'
2022-12-16 09:24:19 +01:00
eventName: 'UpdateAccountSendingEnabled'
selection2:
2022-12-23 11:01:57 +01:00
eventSource: 'ses.amazonaws.com'
2022-12-16 09:24:19 +01:00
eventName: 'VerifyEmailIdentity'
timeframe: 5m
2022-12-23 11:01:57 +01:00
condition: selection1 and selection2 # We don't combine them in one selection because we want to correlate both events
2022-12-16 09:24:19 +01:00
falsepositives:
- Legitimate SES configuration activity
level: medium