AWS Threat Hunting Ideas: SNS
Overview:
1. Unauthorized Topic Creation (CreateTopic)
aws cloudtrail lookup-events --lookup-attributes AttributeKey=EventName,AttributeValue=CreateTopic
2. Suspected Data Exfiltration (Publish)
aws cloudtrail lookup-events --lookup-attributes AttributeKey=EventName,AttributeValue=Publish
3. Unauthorized Topic Deletion (DeleteTopic)
4. Suspicious Subscription Modifications (Subscribe/Unsubscribe)
5. Modifying Topic Policies (SetTopicAttributes)
6. Enabling or Disabling Logging (SetTopicAttributes)
7. Cross-Account Access Grant (AddPermission/RemovePermission)
8. Unusual Topic Usage (Publish)
9. Unauthorized Delivery Protocol Changes (SetSubscriptionAttributes)
10. Message Flooding (Publish/Subscribe)
Last updated