Abnormally High AWS Instances Launched by User
Description
This search looks for AWS CloudTrail events where a user successfully launches an abnormally high number of instances. This search is deprecated and have been translated to use the latest Change Datamodel
- Type: Anomaly
-
Product: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
- Last Updated: 2020-07-21
- Author: Bhavin Patel, Splunk
- ID: 2a9b80d3-6340-4345-b5ad-290bf5d0dac4
Annotations
ATT&CK
ID | Technique | Tactic |
---|---|---|
T1078.004 | Cloud Accounts | Defense Evasion, Initial Access, Persistence, Privilege Escalation |
Kill Chain Phase
- Actions on Objectives
NIST
- DE.DP
- DE.AE
CIS20
- CIS 13
CVE
Search
1
2
3
4
5
6
7
8
9
10
`cloudtrail` eventName=RunInstances errorCode=success
| bucket span=10m _time
| stats count AS instances_launched by _time userName
| eventstats avg(instances_launched) as total_launched_avg, stdev(instances_launched) as total_launched_stdev
| eval threshold_value = 4
| eval isOutlier=if(instances_launched > total_launched_avg+(total_launched_stdev * threshold_value), 1, 0)
| search isOutlier=1 AND _time >= relative_time(now(), "-10m@m")
| eval num_standard_deviations_away = round(abs(instances_launched - total_launched_avg) / total_launched_stdev, 2)
| table _time, userName, instances_launched, num_standard_deviations_away, total_launched_avg, total_launched_stdev
| `abnormally_high_aws_instances_launched_by_user_filter`
Macros
The SPL above uses the following Macros:
Note that abnormally_high_aws_instances_launched_by_user_filter is a empty macro by default. It allows the user to filter out any results (false positives) without editing the SPL.
Required field
- _time
- eventName
- errorCode
- userName
How To Implement
You must install the AWS App for Splunk (version 5.1.0 or later) and Splunk Add-on for AWS (version 4.4.0 or later), then configure your AWS CloudTrail inputs. The threshold value should be tuned to your environment.
Known False Positives
Many service accounts configured within an AWS infrastructure are known to exhibit this behavior. Please adjust the threshold values and filter out service accounts from the output. Always verify if this search alerted on a human user.
Associated Analytic story
RBA
Risk Score | Impact | Confidence | Message |
---|---|---|---|
25.0 | 50 | 50 | tbd |
Reference
Test Dataset
Replay any dataset to Splunk Enterprise by using our replay.py tool or the UI. Alternatively you can replay a dataset into a Splunk Attack Range
source | version: 2