mirror of
https://github.com/splunk/security_content
synced 2026-06-08 17:32:49 +00:00
37 lines
1.4 KiB
YAML
37 lines
1.4 KiB
YAML
name: Previously Seen Cloud Regions - Initial
|
|
id: b5e232db-dec6-4db8-aaa1-dd5474521e40
|
|
version: 1
|
|
date: '2020-09-02'
|
|
author: David Dorsey, Splunk
|
|
type: Baseline
|
|
status: production
|
|
description: This search looks for cloud compute events where a compute instance is
|
|
started and creates a baseline of most recent time, `lastTime` and the first time
|
|
`firstTime` we've seen this region in our dataset grouped by the region for the
|
|
last 30 days
|
|
search: '| tstats earliest(_time) as firstTimeSeen, latest(_time) as lastTimeSeen
|
|
from datamodel=Change where All_Changes.action=created by All_Changes.vendor_region
|
|
| `drop_dm_object_name("All_Changes")` | eventstats min(firstTimeSeen) as globalFirstTime
|
|
| eval enough_data = if(globalFirstTime <= relative_time(now(), "-14d@d"), 1, 0)
|
|
| outputlookup previously_seen_cloud_regions'
|
|
how_to_implement: You must be ingesting the approrpiate cloud infrastructure logs
|
|
and have the Security Research cloud data model installed.
|
|
known_false_positives: none
|
|
references: []
|
|
tags:
|
|
analytic_story:
|
|
- Cloud Cryptomining
|
|
detections:
|
|
- Cloud Compute Instance Created In Previously Unused Region
|
|
product:
|
|
- Splunk Enterprise
|
|
- Splunk Enterprise Security
|
|
- Splunk Cloud
|
|
security_domain: network
|
|
deployment:
|
|
scheduling:
|
|
cron_schedule: 0 2 * * 0
|
|
earliest_time: -90d@d
|
|
latest_time: -1d@d
|
|
schedule_window: auto
|