AWS S3 Bucket Policy Added to Share with External Account
Identifies an AWS S3 bucket policy change to share permissions with an external account. Adversaries may attempt to
backdoor an S3 bucket by sharing it with an external account. This can be used to exfiltrate data or to provide access
to other adversaries. This rule identifies changes to a bucket policy via the PutBucketPolicy
API call where the
policy includes an Effect=Allow
statement that does not contain the AWS account ID of the bucket owner.
Elastic rule (View on GitHub)
1[metadata]
2creation_date = "2024/04/17"
3integration = ["aws"]
4maturity = "production"
5updated_date = "2024/07/23"
6
7[rule]
8author = ["Elastic"]
9description = """
10Identifies an AWS S3 bucket policy change to share permissions with an external account. Adversaries may attempt to
11backdoor an S3 bucket by sharing it with an external account. This can be used to exfiltrate data or to provide access
12to other adversaries. This rule identifies changes to a bucket policy via the `PutBucketPolicy` API call where the
13policy includes an `Effect=Allow` statement that does not contain the AWS account ID of the bucket owner.
14"""
15false_positives = [
16 """
17 Legitimate changes to share an S3 bucket with an external account may be identified as false positive but are not
18 best practice.
19 """,
20]
21index = ["filebeat-*", "logs-aws.cloudtrail-*"]
22language = "eql"
23license = "Elastic License v2"
24name = "AWS S3 Bucket Policy Added to Share with External Account"
25note = """
26## Triage and Analysis
27
28### Investigating AWS S3 Bucket Policy Change to Share with External Account
29
30This rule detects when an AWS S3 bucket policy is changed to share permissions with an external account. Adversaries may attempt to backdoor an S3 bucket by sharing it with an external account to exfiltrate data or provide access to other adversaries. This rule identifies changes to a bucket policy via the `PutBucketPolicy` API call where the policy includes an `Effect=Allow` statement that does not contain the AWS account ID of the bucket owner.
31
32#### Possible Investigation Steps:
33
34- **Identify the Actor**: Review the `aws.cloudtrail.user_identity.arn` and `aws.cloudtrail.user_identity.access_key_id` fields to identify who made the change. Verify if this actor typically performs such actions and if they have the necessary permissions.
35- **Review the Request Details**: Examine the `aws.cloudtrail.request_parameters` to understand the specific changes made to the bucket policy. Look for any unusual parameters that could suggest unauthorized or malicious modifications.
36- **Analyze the Source of the Request**: Investigate the `source.ip` and `source.geo` fields to determine the geographical origin of the request. An external or unexpected location might indicate compromised credentials or unauthorized access.
37- **Contextualize with Timestamp**: Use the `@timestamp` field to check when the change occurred. Modifications during non-business hours or outside regular maintenance windows might require further scrutiny.
38- **Correlate with Other Activities**: Search for related CloudTrail events before and after this change to see if the same actor or IP address engaged in other potentially suspicious activities.
39
40### False Positive Analysis:
41
42- **Legitimate Administrative Actions**: Confirm if the bucket policy change aligns with scheduled updates, development activities, or legitimate administrative tasks documented in change management systems.
43- **Consistency Check**: Compare the action against historical data of similar actions performed by the user or within the organization. If the action is consistent with past legitimate activities, it might indicate a false alarm.
44- **Verify through Outcomes**: Check the `aws.cloudtrail.response_elements` and the `event.outcome` to confirm if the change was successful and intended according to policy.
45
46### Response and Remediation:
47
48- **Immediate Review and Reversal if Necessary**: If the change was unauthorized, update the bucket policy to remove any unauthorized permissions and restore it to its previous state.
49- **Enhance Monitoring and Alerts**: Adjust monitoring systems to alert on similar actions, especially those involving sensitive data or permissions.
50- **Educate and Train**: Provide additional training to users with administrative rights on the importance of security best practices concerning bucket policy management and sharing permissions.
51- **Audit Bucket Policies and Permissions**: Conduct a comprehensive audit of all bucket policies and associated permissions to ensure they adhere to the principle of least privilege.
52- **Incident Response**: If there's an indication of malicious intent or a security breach, initiate the incident response protocol to mitigate any damage and prevent future occurrences.
53
54### Additional Information:
55
56For further guidance on managing S3 bucket policies and securing AWS environments, refer to the [AWS S3 documentation](https://docs.aws.amazon.com/AmazonS3/latest/userguide/enable-cloudtrail-logging-for-s3.html) and AWS best practices for security.
57"""
58references = [
59 "https://stratus-red-team.cloud/attack-techniques/AWS/aws.exfiltration.s3-backdoor-bucket-policy/",
60 "https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketPolicy.html",
61]
62risk_score = 47
63rule_id = "e8c9ff14-fd1e-11ee-a0df-f661ea17fbce"
64setup = """
65## Setup
66
67S3 data event types must be collected in the AWS CloudTrail logs. Please refer to [AWS documentation](https://docs.aws.amazon.com/AmazonS3/latest/userguide/enable-cloudtrail-logging-for-s3.html) for more information.
68"""
69severity = "medium"
70tags = [
71 "Domain: Cloud",
72 "Data Source: AWS",
73 "Data Source: Amazon Web Services",
74 "Data Source: AWS S3",
75 "Use Case: Threat Detection",
76 "Tactic: Exfiltration",
77]
78timestamp_override = "event.ingested"
79type = "eql"
80
81query = '''
82any where event.dataset == "aws.cloudtrail"
83 and event.provider == "s3.amazonaws.com"
84 and event.action == "PutBucketPolicy" and event.outcome == "success"
85 and stringContains(aws.cloudtrail.request_parameters, "Effect=Allow")
86 and not stringContains(aws.cloudtrail.request_parameters, aws.cloudtrail.recipient_account_id)
87'''
88
89
90[[rule.threat]]
91framework = "MITRE ATT&CK"
92[[rule.threat.technique]]
93id = "T1537"
94name = "Transfer Data to Cloud Account"
95reference = "https://attack.mitre.org/techniques/T1537/"
96
97
98[rule.threat.tactic]
99id = "TA0010"
100name = "Exfiltration"
101reference = "https://attack.mitre.org/tactics/TA0010/"
Triage and Analysis
Investigating AWS S3 Bucket Policy Change to Share with External Account
This rule detects when an AWS S3 bucket policy is changed to share permissions with an external account. Adversaries may attempt to backdoor an S3 bucket by sharing it with an external account to exfiltrate data or provide access to other adversaries. This rule identifies changes to a bucket policy via the PutBucketPolicy
API call where the policy includes an Effect=Allow
statement that does not contain the AWS account ID of the bucket owner.
Possible Investigation Steps:
- Identify the Actor: Review the
aws.cloudtrail.user_identity.arn
andaws.cloudtrail.user_identity.access_key_id
fields to identify who made the change. Verify if this actor typically performs such actions and if they have the necessary permissions. - Review the Request Details: Examine the
aws.cloudtrail.request_parameters
to understand the specific changes made to the bucket policy. Look for any unusual parameters that could suggest unauthorized or malicious modifications. - Analyze the Source of the Request: Investigate the
source.ip
andsource.geo
fields to determine the geographical origin of the request. An external or unexpected location might indicate compromised credentials or unauthorized access. - Contextualize with Timestamp: Use the
@timestamp
field to check when the change occurred. Modifications during non-business hours or outside regular maintenance windows might require further scrutiny. - Correlate with Other Activities: Search for related CloudTrail events before and after this change to see if the same actor or IP address engaged in other potentially suspicious activities.
False Positive Analysis:
- Legitimate Administrative Actions: Confirm if the bucket policy change aligns with scheduled updates, development activities, or legitimate administrative tasks documented in change management systems.
- Consistency Check: Compare the action against historical data of similar actions performed by the user or within the organization. If the action is consistent with past legitimate activities, it might indicate a false alarm.
- Verify through Outcomes: Check the
aws.cloudtrail.response_elements
and theevent.outcome
to confirm if the change was successful and intended according to policy.
Response and Remediation:
- Immediate Review and Reversal if Necessary: If the change was unauthorized, update the bucket policy to remove any unauthorized permissions and restore it to its previous state.
- Enhance Monitoring and Alerts: Adjust monitoring systems to alert on similar actions, especially those involving sensitive data or permissions.
- Educate and Train: Provide additional training to users with administrative rights on the importance of security best practices concerning bucket policy management and sharing permissions.
- Audit Bucket Policies and Permissions: Conduct a comprehensive audit of all bucket policies and associated permissions to ensure they adhere to the principle of least privilege.
- Incident Response: If there's an indication of malicious intent or a security breach, initiate the incident response protocol to mitigate any damage and prevent future occurrences.
Additional Information:
For further guidance on managing S3 bucket policies and securing AWS environments, refer to the AWS S3 documentation and AWS best practices for security.
References
Related rules
- AWS S3 Bucket Replicated to Another Account
- AWS RDS DB Snapshot Shared with Another Account
- EC2 AMI Shared with Another Account
- AWS Lambda Function Policy Updated to Allow Public Invocation
- AWS Lambda Layer Added to Existing Function