Detection: Abnormally High Number Of Cloud Instances Destroyed

REMOVED DETECTION

This detection has been removed from the Splunk Threat Research content library and is no longer maintained or supported.

Reason: Detection is deprecated as these do not work with the latest Splunk AI Toolkit(5.7.0) and Python for Scientific Computing for Linux 64-bit(4.3.0).

Removed in version: 5.26.0

If you have any questions or concerns, please reach out to us at research@splunk.com.

Description

The following analytic identifies an abnormally high number of cloud instances being destroyed within a 4-hour period. It leverages cloud infrastructure logs and applies a probability density model to detect outliers. This activity is significant for a SOC because a sudden spike in destroyed instances could indicate malicious activity, such as an insider threat or a compromised account attempting to disrupt services. If confirmed malicious, this could lead to significant operational disruptions, data loss, and potential financial impact due to the destruction of critical cloud resources.

 1
 2| tstats count as instances_destroyed values(All_Changes.object_id) as object_id FROM datamodel=Change
 3  WHERE All_Changes.action=deleted
 4    AND
 5    All_Changes.status=success
 6    AND
 7    All_Changes.object_category=instance
 8  BY All_Changes.user _time span=1h
 9
10| `drop_dm_object_name("All_Changes")`
11
12| eval HourOfDay=strftime(_time, "%H")
13
14| eval HourOfDay=floor(HourOfDay/4)*4
15
16| eval DayOfWeek=strftime(_time, "%w")
17
18| eval isWeekend=if(DayOfWeek >= 1 AND DayOfWeek <= 5, 0, 1)
19
20| join HourOfDay isWeekend [summary cloud_excessive_instances_destroyed_v1]
21
22| where cardinality >=16
23
24| apply cloud_excessive_instances_destroyed_v1 threshold=0.005
25
26| rename "IsOutlier(instances_destroyed)" as isOutlier
27
28| where isOutlier=1
29
30| eval expected_upper_threshold = mvindex(split(mvindex(BoundaryRanges, -1), ":"), 0)
31
32| eval distance_from_threshold = instances_destroyed - expected_upper_threshold
33
34| table _time, user, instances_destroyed, expected_upper_threshold, distance_from_threshold, object_id
35
36| `abnormally_high_number_of_cloud_instances_destroyed_filter`

Data Source

Name Platform Sourcetype Source
AWS CloudTrail AWS icon AWS 'aws:cloudtrail' 'aws_cloudtrail'

Macros Used

Name Value
drop_dm_object_name ``
abnormally_high_number_of_cloud_instances_destroyed_filter ``
abnormally_high_number_of_cloud_instances_destroyed_filter is an empty macro by default. It allows the user to filter out any results (false positives) without editing the SPL.

Annotations

- MITRE ATT&CK
+ Kill Chain Phases
+ NIST
+ CIS
- Threat Actors
ID Technique Tactic
T1078.004 Cloud Accounts Initial Access

Default Configuration

This detection is configured by default in Splunk Enterprise Security to run with the following settings:

Setting Value
Disabled true
Cron Schedule N/A
Earliest Time N/A
Latest Time N/A
Schedule Window N/A
Creates Finding (Notable) No
Creates Intermediate Finding (Risk Event) No
Anomaly detections generate Intermediate Findings (Risk Events). They do not generate a Finding (Notable) directly.

Implementation

You must be ingesting your cloud infrastructure logs. You also must run the baseline search Baseline Of Cloud Instances Destroyed to create the probability density function.

Known False Positives

Many service accounts configured within a cloud 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

Detection Testing

Test Type Status Dataset Source Sourcetype
Validation Not Applicable N/A N/A N/A
Unit Not Applicable N/A N/A N/A
Integration Not Applicable N/A N/A N/A

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: GitHub |

Version: 9