mirror of
https://github.com/splunk/security_content
synced 2026-06-08 17:32:49 +00:00
23 lines
1.5 KiB
YAML
23 lines
1.5 KiB
YAML
name: Previously Seen Cloud Provisioning Activity Sources - Initial
|
|
id: 4ce865fc-f43e-4521-a8ed-ab8af99052d7
|
|
version: 3
|
|
creation_date: '2020-08-19'
|
|
modification_date: '2026-05-13'
|
|
author: Rico Valdez, Splunk
|
|
status: production
|
|
description: This search builds a table of the first and last times seen for every IP address (along with its physical location) previously associated with cloud-provisioning activity. This is broadly defined as any event that runs or creates something. This table is then cached.
|
|
search: '| tstats earliest(_time) as firstTimeSeen, latest(_time) as lastTimeSeen from datamodel=Change where (All_Changes.action=started OR All_Changes.action=created) All_Changes.status=success by All_Changes.src | `drop_dm_object_name("All_Changes")` | iplocation src | where isnotnull(Country) | eventstats min(firstTimeSeen) as globalFirstTime | eval enough_data = if(globalFirstTime <= relative_time(now(), "-7d@d"), 1, 0) | table src, City, Country, Region, firstTimeSeen, lastTimeSeen, enough_data | outputlookup previously_seen_cloud_provisioning_activity_sources'
|
|
how_to_implement: You must be ingesting Cloud infrastructure logs from your cloud provider.
|
|
known_false_positives: No false positives have been identified at this time.
|
|
references: []
|
|
product:
|
|
- Splunk Enterprise
|
|
- Splunk Enterprise Security
|
|
- Splunk Cloud
|
|
security_domain: network
|
|
custom_schedule:
|
|
cron_schedule: 0 2 * * 0
|
|
earliest_time: -90d@d
|
|
latest_time: -1d@d
|
|
schedule_window: auto
|