mirror of
https://github.com/splunk/security_content
synced 2026-06-08 17:32:49 +00:00
Branch was auto-updated.
This commit is contained in:
@@ -56,6 +56,10 @@ class DetectionBuilder(abc.ABC):
|
||||
def addCve(self) -> None:
|
||||
pass
|
||||
|
||||
@abc.abstractmethod
|
||||
def addSplunkApp(self) -> None:
|
||||
pass
|
||||
|
||||
@abc.abstractmethod
|
||||
def setObject(self, path: str) -> None:
|
||||
pass
|
||||
|
||||
@@ -48,6 +48,7 @@ class Detection(BaseModel, SecurityContentObject):
|
||||
macros: list[Macro] = None
|
||||
lookups: list[Lookup] = None
|
||||
cve_enrichment: list = None
|
||||
splunk_app_enrichment: list = None
|
||||
file_path: str = None
|
||||
source: str = None
|
||||
|
||||
|
||||
@@ -26,6 +26,7 @@ class DetectionTags(BaseModel):
|
||||
security_domain: str
|
||||
risk_severity: str = None
|
||||
cve: list = None
|
||||
supported_tas: list = None
|
||||
|
||||
# enrichment
|
||||
mitre_attack_enrichments: list[MitreAttackEnrichment] = None
|
||||
|
||||
+3
-2
@@ -38,7 +38,7 @@ tags:
|
||||
We have not been able to test, simulate, or build datasets for this object. Use at your own risk. This analytic is **NOT** supported.
|
||||
{% endif %}
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -46,7 +46,8 @@ We have not been able to test, simulate, or build datasets for this object. Use
|
||||
|
||||
- **Type**: [{{ object.type }}](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: {{ object.tags.product|join(', ') }}
|
||||
- **Datamodel**: {% for datamodel in object.datamodel %}[{{ datamodel }}](https://docs.splunk.com/Documentation/CIM/latest/User/{{ datamodel|replace("_", "")}}){% if not loop.last %}, {% endif %}{%-endfor %}
|
||||
{% if object.datamodel -%}- **Datamodel**: {% for datamodel in object.datamodel %}[{{ datamodel }}](https://docs.splunk.com/Documentation/CIM/latest/User/{{ datamodel|replace("_", "")}}){% if not loop.last %}, {% endif %}{%-endfor %}{% endif %}
|
||||
{% if object.splunk_app_enrichment -%}- **Datasource**: {% for splunk_app in object.splunk_app_enrichment %}[{{ splunk_app.name }}]({{splunk_app.url}}){% if not loop.last %}, {% endif %}{%-endfor %}{% endif %}
|
||||
- **Last Updated**: {{ object.date }}
|
||||
- **Author**: {{object.author}}
|
||||
- **ID**: {{ object.id }}
|
||||
|
||||
+7
@@ -11,6 +11,7 @@ from bin.contentctl_project.contentctl_core.domain.entities.security_content_obj
|
||||
from bin.contentctl_project.contentctl_core.domain.entities.macro import Macro
|
||||
from bin.contentctl_project.contentctl_core.domain.entities.mitre_attack_enrichment import MitreAttackEnrichment
|
||||
from bin.contentctl_project.contentctl_infrastructure.builder.cve_enrichment import CveEnrichment
|
||||
from bin.contentctl_project.contentctl_infrastructure.builder.splunk_app_enrichment import SplunkAppEnrichment
|
||||
|
||||
|
||||
class SecurityContentDetectionBuilder(DetectionBuilder):
|
||||
@@ -222,6 +223,12 @@ class SecurityContentDetectionBuilder(DetectionBuilder):
|
||||
for cve in self.security_content_obj.tags.cve:
|
||||
self.security_content_obj.cve_enrichment.append(CveEnrichment.enrich_cve(cve))
|
||||
|
||||
def addSplunkApp(self) -> None:
|
||||
if self.security_content_obj:
|
||||
self.security_content_obj.splunk_app_enrichment = []
|
||||
if self.security_content_obj.tags.supported_tas:
|
||||
for splunk_app in self.security_content_obj.tags.supported_tas:
|
||||
self.security_content_obj.splunk_app_enrichment.append(SplunkAppEnrichment.enrich_splunk_app(splunk_app))
|
||||
|
||||
def reset(self) -> None:
|
||||
self.security_content_obj = None
|
||||
|
||||
@@ -27,6 +27,7 @@ class SecurityContentDirector(Director):
|
||||
builder.addMacros(macros)
|
||||
builder.addLookups(lookups)
|
||||
builder.addCve()
|
||||
builder.addSplunkApp()
|
||||
|
||||
|
||||
def constructStory(self, builder: StoryBuilder, path: str, detections: list, baselines: list, investigations: list) -> None:
|
||||
|
||||
@@ -0,0 +1,46 @@
|
||||
import requests
|
||||
import xmltodict
|
||||
import json
|
||||
|
||||
SPLUNKBASE_API_URL = "https://apps.splunk.com/api/apps/entriesbyid/"
|
||||
|
||||
|
||||
class SplunkAppEnrichment():
|
||||
|
||||
@classmethod
|
||||
def enrich_splunk_app(self, splunk_ta: str) -> dict:
|
||||
appurl = SPLUNKBASE_API_URL + splunk_ta
|
||||
splunk_app_enriched = dict()
|
||||
try:
|
||||
response = requests.get(appurl)
|
||||
response_dict = xmltodict.parse(response.content)
|
||||
# check if list since data changes depending on answer
|
||||
url, results = self._parse_splunkbase_response(response_dict)
|
||||
# grab the app name
|
||||
for i in results:
|
||||
if i['@name'] == 'appName':
|
||||
splunk_app_enriched['name'] = i['#text']
|
||||
# grab out the splunkbase url
|
||||
if 'entriesbyid' in url:
|
||||
response = requests.get(url)
|
||||
response_dict = xmltodict.parse(response.content)
|
||||
#print(json.dumps(response_dict, indent=2))
|
||||
url, results = self._parse_splunkbase_response(response_dict)
|
||||
# chop the url so we grab the splunkbase portion but not direct download
|
||||
splunk_app_enriched['url'] = url.rsplit('/', 4)[0]
|
||||
except requests.exceptions.ConnectionError as connErr:
|
||||
# there was a connection error lets just capture the name
|
||||
splunk_app_enriched['name'] = splunk_ta
|
||||
splunk_app_enriched['url'] = ''
|
||||
|
||||
return splunk_app_enriched
|
||||
|
||||
def _parse_splunkbase_response(response_dict):
|
||||
if isinstance(response_dict['feed']['entry'], list):
|
||||
url = response_dict['feed']['entry'][0]['link']['@href']
|
||||
results = response_dict['feed']['entry'][0]['content']['s:dict']['s:key']
|
||||
else:
|
||||
url = response_dict['feed']['entry']['link']['@href']
|
||||
results = response_dict['feed']['entry']['content']['s:dict']['s:key']
|
||||
return url, results
|
||||
|
||||
+9
@@ -101,6 +101,9 @@
|
||||
"risk_score": 90,
|
||||
"security_domain": "endpoint",
|
||||
"risk_severity": "high",
|
||||
"supported_tas": [
|
||||
"Splunk_TA_microsoft_sysmon"
|
||||
],
|
||||
"mitre_attack_enrichments": [
|
||||
{
|
||||
"mitre_attack_id": "T1003.002",
|
||||
@@ -153,6 +156,12 @@
|
||||
],
|
||||
"lookups": [],
|
||||
"cve_enrichment": [],
|
||||
"splunk_app_enrichment": [
|
||||
{
|
||||
"name": "Splunk Add-on for Sysmon",
|
||||
"url": "https://splunkbase.splunk.com/app/5709"
|
||||
}
|
||||
],
|
||||
"file_path": "/Users/pbareib/Documents/Projects/security_content/bin/contentctl_project/contentctl_infrastructure/tests/adapter/../builder/test_data/detection/valid.yml",
|
||||
"source": "detection"
|
||||
}
|
||||
|
||||
+9
@@ -184,6 +184,9 @@
|
||||
"risk_score": 90,
|
||||
"security_domain": "endpoint",
|
||||
"risk_severity": "high",
|
||||
"supported_tas": [
|
||||
"Splunk_TA_microsoft_sysmon"
|
||||
],
|
||||
"mitre_attack_enrichments": [
|
||||
{
|
||||
"mitre_attack_id": "T1003.002",
|
||||
@@ -422,6 +425,12 @@
|
||||
],
|
||||
"lookups": [],
|
||||
"cve_enrichment": [],
|
||||
"splunk_app_enrichment": [
|
||||
{
|
||||
"name": "Splunk Add-on for Sysmon",
|
||||
"url": "https://splunkbase.splunk.com/app/5709"
|
||||
}
|
||||
],
|
||||
"file_path": "/Users/pbareib/Documents/Projects/security_content/bin/contentctl_project/contentctl_infrastructure/tests/adapter/../builder/test_data/detection/valid.yml",
|
||||
"source": "detection"
|
||||
}
|
||||
|
||||
+3
-2
@@ -20,7 +20,7 @@ tags:
|
||||
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -28,7 +28,8 @@ This search looks for AWS CloudTrail events wherein a console login event by a u
|
||||
|
||||
- **Type**: [TTP](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**:
|
||||
|
||||
|
||||
- **Last Updated**: 2020-07-21
|
||||
- **Author**: Bhavin Patel, Splunk
|
||||
- **ID**: ada0f478-84a8-4641-a3f3-d82362dffd75
|
||||
|
||||
+2
-1
@@ -21,7 +21,7 @@ tags:
|
||||
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -30,6 +30,7 @@ Monitor for execution of reg.exe with parameters specifying an export of keys th
|
||||
- **Type**: [TTP](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**: [Endpoint](https://docs.splunk.com/Documentation/CIM/latest/User/Endpoint)
|
||||
- **Datasource**: [Splunk Add-on for Sysmon](https://splunkbase.splunk.com/app/5709)
|
||||
- **Last Updated**: 2021-09-16
|
||||
- **Author**: Patrick Bareiss, Splunk
|
||||
- **ID**: e9fb4a59-c5fb-440a-9f24-191fbc6b2911
|
||||
|
||||
+3
-2
@@ -20,7 +20,7 @@ tags:
|
||||
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -28,7 +28,8 @@ This search looks for AWS CloudTrail events wherein a console login event by a u
|
||||
|
||||
- **Type**: [TTP](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**:
|
||||
|
||||
|
||||
- **Last Updated**: 2020-07-21
|
||||
- **Author**: Bhavin Patel, Splunk
|
||||
- **ID**: ada0f478-84a8-4641-a3f3-d82362dffd75
|
||||
|
||||
+2
-1
@@ -21,7 +21,7 @@ tags:
|
||||
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -30,6 +30,7 @@ Monitor for execution of reg.exe with parameters specifying an export of keys th
|
||||
- **Type**: [TTP](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**: [Endpoint](https://docs.splunk.com/Documentation/CIM/latest/User/Endpoint)
|
||||
- **Datasource**: [Splunk Add-on for Sysmon](https://splunkbase.splunk.com/app/5709)
|
||||
- **Last Updated**: 2021-09-16
|
||||
- **Author**: Patrick Bareiss, Splunk
|
||||
- **ID**: e9fb4a59-c5fb-440a-9f24-191fbc6b2911
|
||||
|
||||
+2
@@ -86,3 +86,5 @@ tags:
|
||||
- Processes.parent_process_id
|
||||
risk_score: 90
|
||||
security_domain: endpoint
|
||||
supported_tas:
|
||||
- Splunk_TA_microsoft_sysmon
|
||||
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
|
||||
|
||||
from bin.contentctl_project.contentctl_infrastructure.builder.splunk_app_enrichment import SplunkAppEnrichment
|
||||
|
||||
|
||||
def test_splunk_app_enrichment():
|
||||
splunk_app_enriched = SplunkAppEnrichment.enrich_splunk_app('Splunk_TA_microsoft_sysmon')
|
||||
assert splunk_app_enriched['name'] == 'Splunk Add-on for Sysmon'
|
||||
assert splunk_app_enriched['url'] == 'https://splunkbase.splunk.com/app/5709'
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:43 UTC
|
||||
# On Date: 2022-03-24T08:24:11 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
Vendored
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:43 UTC
|
||||
# On Date: 2022-03-24T08:24:11 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
Vendored
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
dist/escu/default/data/ui/panels/workbench_panel_aws_network_acl_details_from_id___response_task.xml
Vendored
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
Vendored
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
Vendored
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
Vendored
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
dist/escu/default/data/ui/panels/workbench_panel_get_emails_from_specific_sender___response_task.xml
Vendored
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
Vendored
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
Vendored
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
Vendored
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
Vendored
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:44 UTC
|
||||
# On Date: 2022-03-24T08:24:12 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:43 UTC
|
||||
# On Date: 2022-03-24T08:24:11 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
Vendored
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:43 UTC
|
||||
# On Date: 2022-03-24T08:24:11 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
Vendored
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:43 UTC
|
||||
# On Date: 2022-03-24T08:24:11 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
Vendored
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:43 UTC
|
||||
# On Date: 2022-03-24T08:24:11 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#############
|
||||
# Automatically generated by generator.py in splunk/security_content
|
||||
# On Date: 2022-03-21T07:44:43 UTC
|
||||
# On Date: 2022-03-24T08:24:11 UTC
|
||||
# Author: Splunk Security Research
|
||||
# Contact: research@splunk.com
|
||||
#############
|
||||
|
||||
@@ -250,6 +250,8 @@ GEM
|
||||
jekyll-seo-tag (~> 2.1)
|
||||
minitest (5.15.0)
|
||||
multipart-post (2.1.1)
|
||||
nokogiri (1.13.1-x86_64-darwin)
|
||||
racc (~> 1.4)
|
||||
nokogiri (1.13.1-x86_64-linux)
|
||||
racc (~> 1.4)
|
||||
octokit (4.22.0)
|
||||
@@ -298,6 +300,7 @@ GEM
|
||||
zeitwerk (2.5.4)
|
||||
|
||||
PLATFORMS
|
||||
x86_64-darwin-20
|
||||
x86_64-linux
|
||||
|
||||
DEPENDENCIES
|
||||
|
||||
@@ -300,7 +300,7 @@ sidebar:
|
||||
| [Excessive Usage Of SC Service Utility](/endpoint/excessive_usage_of_sc_service_utility/) | [System Services](/tags/#system-services), [Service Execution](/tags/#service-execution) | Anomaly |
|
||||
| [Excessive Usage Of Taskkill](/endpoint/excessive_usage_of_taskkill/) | [Disable or Modify Tools](/tags/#disable-or-modify-tools), [Impair Defenses](/tags/#impair-defenses) | Anomaly |
|
||||
| [Excessive Usage of NSLOOKUP App](/endpoint/excessive_usage_of_nslookup_app/) | [Exfiltration Over Alternative Protocol](/tags/#exfiltration-over-alternative-protocol) | Anomaly |
|
||||
| [Excessive number of distinct processes created in Windows Temp folder](/endpoint/excessive_number_of_distinct_processes_created_in_windows_temp_folder/) | [Command and Scripting Interpreter](/tags/#command-and-scripting-interpreter) | Anomaly |
|
||||
| [Excessive distinct processes from Windows Temp](/endpoint/excessive_distinct_processes_from_windows_temp/) | [Command and Scripting Interpreter](/tags/#command-and-scripting-interpreter) | Anomaly |
|
||||
| [Excessive number of service control start as disabled](/endpoint/excessive_number_of_service_control_start_as_disabled/) | [Disable or Modify Tools](/tags/#disable-or-modify-tools), [Impair Defenses](/tags/#impair-defenses) | Anomaly |
|
||||
| [Excessive number of taskhost processes](/endpoint/excessive_number_of_taskhost_processes/) | [System Owner/User Discovery](/tags/#system-owner/user-discovery) | Anomaly |
|
||||
| [Exchange PowerShell Abuse via SSRF](/endpoint/exchange_powershell_abuse_via_ssrf/) | [Exploit Public-Facing Application](/tags/#exploit-public-facing-application) | TTP |
|
||||
@@ -402,8 +402,8 @@ sidebar:
|
||||
| [Kubernetes AWS detect sensitive role access]() | None | Hunting |
|
||||
| [Kubernetes AWS detect service accounts forbidden failure access]() | None | Hunting |
|
||||
| [Kubernetes AWS detect suspicious kubectl calls]() | None | Hunting |
|
||||
| [Kubernetes Azure active service accounts by pod namespace]() | None | Hunting |
|
||||
| [Kubernetes Azure detect RBAC authorization by account]() | None | Hunting |
|
||||
| [Kubernetes Azure detect most active service accounts by pod namespace]() | None | Hunting |
|
||||
| [Kubernetes Azure detect sensitive object access]() | None | Hunting |
|
||||
| [Kubernetes Azure detect sensitive role access]() | None | Hunting |
|
||||
| [Kubernetes Azure detect service accounts forbidden failure access]() | None | Hunting |
|
||||
@@ -463,20 +463,20 @@ sidebar:
|
||||
| [Log4Shell JNDI Payload Injection Attempt](/web/log4shell_jndi_payload_injection_attempt/) | [Exploit Public-Facing Application](/tags/#exploit-public-facing-application) | Anomaly |
|
||||
| [Log4Shell JNDI Payload Injection with Outbound Connection](/web/log4shell_jndi_payload_injection_with_outbound_connection/) | [Exploit Public-Facing Application](/tags/#exploit-public-facing-application) | Anomaly |
|
||||
| [Logon Script Event Trigger Execution](/endpoint/logon_script_event_trigger_execution/) | [Boot or Logon Initialization Scripts](/tags/#boot-or-logon-initialization-scripts), [Logon Script (Windows)](/tags/#logon-script-(windows)) | TTP |
|
||||
| [MS Exchange Mailbox Replication service writing Active Server Pages](/endpoint/ms_exchange_mailbox_replication_service_writing_active_server_pages/) | [Server Software Component](/tags/#server-software-component), [Web Shell](/tags/#web-shell), [Exploit Public-Facing Application](/tags/#exploit-public-facing-application) | TTP |
|
||||
| [MS Scripting Process Loading Ldap Module](/endpoint/ms_scripting_process_loading_ldap_module/) | [Command and Scripting Interpreter](/tags/#command-and-scripting-interpreter), [JavaScript](/tags/#javascript) | Anomaly |
|
||||
| [MS Scripting Process Loading WMI Module](/endpoint/ms_scripting_process_loading_wmi_module/) | [Command and Scripting Interpreter](/tags/#command-and-scripting-interpreter), [JavaScript](/tags/#javascript) | Anomaly |
|
||||
| [MSBuild Suspicious Spawned By Script Process](/endpoint/msbuild_suspicious_spawned_by_script_process/) | [MSBuild](/tags/#msbuild), [Trusted Developer Utilities Proxy Execution](/tags/#trusted-developer-utilities-proxy-execution) | TTP |
|
||||
| [MSHTML Module Load in Office Product](/endpoint/mshtml_module_load_in_office_product/) | [Phishing](/tags/#phishing), [Spearphishing Attachment](/tags/#spearphishing-attachment) | TTP |
|
||||
| [MSI Module Loaded by Non-System Binary](/endpoint/msi_module_loaded_by_non-system_binary/) | [DLL Side-Loading](/tags/#dll-side-loading), [Hijack Execution Flow](/tags/#hijack-execution-flow) | Hunting |
|
||||
| [MacOS - Re-opened Applications]() | None | TTP |
|
||||
| [MacOS LOLbin](/endpoint/macos_lolbin/) | [Unix Shell](/tags/#unix-shell), [Command and Scripting Interpreter](/tags/#command-and-scripting-interpreter) | TTP |
|
||||
| [Mailsniper Invoke functions](/endpoint/mailsniper_invoke_functions/) | [Email Collection](/tags/#email-collection), [Local Email Collection](/tags/#local-email-collection) | TTP |
|
||||
| [Malicious InProcServer32 Modification](/endpoint/malicious_inprocserver32_modification/) | [Regsvr32](/tags/#regsvr32), [Modify Registry](/tags/#modify-registry) | TTP |
|
||||
| [Malicious PowerShell Process - Encoded Command](/endpoint/malicious_powershell_process_-_encoded_command/) | [Obfuscated Files or Information](/tags/#obfuscated-files-or-information) | Hunting |
|
||||
| [Malicious PowerShell Process - Execution Policy Bypass](/endpoint/malicious_powershell_process_-_execution_policy_bypass/) | [Command and Scripting Interpreter](/tags/#command-and-scripting-interpreter), [PowerShell](/tags/#powershell) | TTP |
|
||||
| [Malicious PowerShell Process - Multiple Suspicious Command-Line Arguments](/deprecated/malicious_powershell_process_-_multiple_suspicious_command-line_arguments/) | [PowerShell](/tags/#powershell) | TTP |
|
||||
| [Malicious PowerShell Process With Obfuscation Techniques](/endpoint/malicious_powershell_process_with_obfuscation_techniques/) | [Command and Scripting Interpreter](/tags/#command-and-scripting-interpreter), [PowerShell](/tags/#powershell) | TTP |
|
||||
| [Malicious Powershell Executed As A Service](/endpoint/malicious_powershell_executed_as_a_service/) | [System Services](/tags/#system-services), [Service Execution](/tags/#service-execution) | TTP |
|
||||
| [Microsoft Exchange Mailbox Replication service writing Active Server Pages](/endpoint/microsoft_exchange_mailbox_replication_service_writing_active_server_pages/) | [Server Software Component](/tags/#server-software-component), [Web Shell](/tags/#web-shell), [Exploit Public-Facing Application](/tags/#exploit-public-facing-application) | TTP |
|
||||
| [Mimikatz PassTheTicket CommandLine Parameters](/endpoint/mimikatz_passtheticket_commandline_parameters/) | [Use Alternate Authentication Material](/tags/#use-alternate-authentication-material), [Pass the Ticket](/tags/#pass-the-ticket) | TTP |
|
||||
| [Mmc LOLBAS Execution Process Spawn](/endpoint/mmc_lolbas_execution_process_spawn/) | [Remote Services](/tags/#remote-services), [Distributed Component Object Model](/tags/#distributed-component-object-model) | TTP |
|
||||
| [Modification Of Wallpaper](/endpoint/modification_of_wallpaper/) | [Defacement](/tags/#defacement) | TTP |
|
||||
@@ -488,11 +488,8 @@ sidebar:
|
||||
| [Mshta spawning Rundll32 OR Regsvr32 Process](/endpoint/mshta_spawning_rundll32_or_regsvr32_process/) | [Signed Binary Proxy Execution](/tags/#signed-binary-proxy-execution), [Mshta](/tags/#mshta) | TTP |
|
||||
| [Msmpeng Application DLL Side Loading](/endpoint/msmpeng_application_dll_side_loading/) | [DLL Side-Loading](/tags/#dll-side-loading), [Hijack Execution Flow](/tags/#hijack-execution-flow) | TTP |
|
||||
| [Multiple Archive Files Http Post Traffic](/network/multiple_archive_files_http_post_traffic/) | [Exfiltration Over Unencrypted/Obfuscated Non-C2 Protocol](/tags/#exfiltration-over-unencrypted/obfuscated-non-c2-protocol), [Exfiltration Over Alternative Protocol](/tags/#exfiltration-over-alternative-protocol) | TTP |
|
||||
| [Multiple Disabled Users Failing To Authenticate From Host Using Kerberos](/endpoint/multiple_disabled_users_failing_to_authenticate_from_host_using_kerberos/) | [Password Spraying](/tags/#password-spraying), [Brute Force](/tags/#brute-force) | Anomaly |
|
||||
| [Multiple Invalid Users Failing To Authenticate From Host Using Kerberos](/endpoint/multiple_invalid_users_failing_to_authenticate_from_host_using_kerberos/) | [Password Spraying](/tags/#password-spraying), [Brute Force](/tags/#brute-force) | Anomaly |
|
||||
| [Multiple Invalid Users Failing To Authenticate From Host Using NTLM](/endpoint/multiple_invalid_users_failing_to_authenticate_from_host_using_ntlm/) | [Password Spraying](/tags/#password-spraying), [Brute Force](/tags/#brute-force) | Anomaly |
|
||||
| [Multiple Okta Users With Invalid Credentials From The Same IP](/application/multiple_okta_users_with_invalid_credentials_from_the_same_ip/) | [Valid Accounts](/tags/#valid-accounts), [Default Accounts](/tags/#default-accounts) | TTP |
|
||||
| [Multiple Users Attempting To Authenticate Using Explicit Credentials](/endpoint/multiple_users_attempting_to_authenticate_using_explicit_credentials/) | [Password Spraying](/tags/#password-spraying), [Brute Force](/tags/#brute-force) | Anomaly |
|
||||
| [Multiple Users Failing To Authenticate From Host Using Kerberos](/endpoint/multiple_users_failing_to_authenticate_from_host_using_kerberos/) | [Password Spraying](/tags/#password-spraying), [Brute Force](/tags/#brute-force) | Anomaly |
|
||||
| [Multiple Users Failing To Authenticate From Host Using NTLM](/endpoint/multiple_users_failing_to_authenticate_from_host_using_ntlm/) | [Password Spraying](/tags/#password-spraying), [Brute Force](/tags/#brute-force) | Anomaly |
|
||||
| [Multiple Users Failing To Authenticate From Process](/endpoint/multiple_users_failing_to_authenticate_from_process/) | [Password Spraying](/tags/#password-spraying), [Brute Force](/tags/#brute-force) | Anomaly |
|
||||
@@ -555,7 +552,7 @@ sidebar:
|
||||
| [PowerShell 4104 Hunting](/endpoint/powershell_4104_hunting/) | [Command and Scripting Interpreter](/tags/#command-and-scripting-interpreter), [PowerShell](/tags/#powershell) | Hunting |
|
||||
| [PowerShell Domain Enumeration](/endpoint/powershell_domain_enumeration/) | [Command and Scripting Interpreter](/tags/#command-and-scripting-interpreter), [PowerShell](/tags/#powershell) | TTP |
|
||||
| [PowerShell Get LocalGroup Discovery](/endpoint/powershell_get_localgroup_discovery/) | [Permission Groups Discovery](/tags/#permission-groups-discovery), [Local Groups](/tags/#local-groups) | Hunting |
|
||||
| [PowerShell Loading DotNET into Memory via System Reflection Assembly](/endpoint/powershell_loading_dotnet_into_memory_via_system_reflection_assembly/) | [Command and Scripting Interpreter](/tags/#command-and-scripting-interpreter), [PowerShell](/tags/#powershell) | TTP |
|
||||
| [PowerShell Loading DotNET into Memory via Reflection](/endpoint/powershell_loading_dotnet_into_memory_via_reflection/) | [Command and Scripting Interpreter](/tags/#command-and-scripting-interpreter), [PowerShell](/tags/#powershell) | TTP |
|
||||
| [PowerShell Start-BitsTransfer](/endpoint/powershell_start-bitstransfer/) | [BITS Jobs](/tags/#bits-jobs) | TTP |
|
||||
| [Powershell Creating Thread Mutex](/endpoint/powershell_creating_thread_mutex/) | [Obfuscated Files or Information](/tags/#obfuscated-files-or-information), [Indicator Removal from Tools](/tags/#indicator-removal-from-tools) | TTP |
|
||||
| [Powershell Disable Security Monitoring](/endpoint/powershell_disable_security_monitoring/) | [Disable or Modify Tools](/tags/#disable-or-modify-tools), [Impair Defenses](/tags/#impair-defenses) | TTP |
|
||||
@@ -701,6 +698,7 @@ sidebar:
|
||||
| [Suspicious MSBuild Spawn](/endpoint/suspicious_msbuild_spawn/) | [Trusted Developer Utilities Proxy Execution](/tags/#trusted-developer-utilities-proxy-execution), [MSBuild](/tags/#msbuild) | TTP |
|
||||
| [Suspicious PlistBuddy Usage](/endpoint/suspicious_plistbuddy_usage/) | [Launch Agent](/tags/#launch-agent), [Create or Modify System Process](/tags/#create-or-modify-system-process) | TTP |
|
||||
| [Suspicious PlistBuddy Usage via OSquery](/endpoint/suspicious_plistbuddy_usage_via_osquery/) | [Launch Agent](/tags/#launch-agent), [Create or Modify System Process](/tags/#create-or-modify-system-process) | TTP |
|
||||
| [Suspicious Powershell Command-Line Arguments](/deprecated/suspicious_powershell_command-line_arguments/) | [PowerShell](/tags/#powershell) | TTP |
|
||||
| [Suspicious Process DNS Query Known Abuse Web Services](/endpoint/suspicious_process_dns_query_known_abuse_web_services/) | [Visual Basic](/tags/#visual-basic), [Command and Scripting Interpreter](/tags/#command-and-scripting-interpreter) | TTP |
|
||||
| [Suspicious Process File Path](/endpoint/suspicious_process_file_path/) | [Create or Modify System Process](/tags/#create-or-modify-system-process) | TTP |
|
||||
| [Suspicious Process With Discord DNS Query](/endpoint/suspicious_process_with_discord_dns_query/) | [Visual Basic](/tags/#visual-basic), [Command and Scripting Interpreter](/tags/#command-and-scripting-interpreter) | Anomaly |
|
||||
@@ -779,8 +777,15 @@ sidebar:
|
||||
| [Windows Curl Upload to Remote Destination](/endpoint/windows_curl_upload_to_remote_destination/) | [Ingress Tool Transfer](/tags/#ingress-tool-transfer) | TTP |
|
||||
| [Windows DISM Remove Defender](/endpoint/windows_dism_remove_defender/) | [Disable or Modify Tools](/tags/#disable-or-modify-tools), [Impair Defenses](/tags/#impair-defenses) | TTP |
|
||||
| [Windows Defender Exclusion Registry Entry](/endpoint/windows_defender_exclusion_registry_entry/) | [Disable or Modify Tools](/tags/#disable-or-modify-tools), [Impair Defenses](/tags/#impair-defenses) | TTP |
|
||||
| [Windows Disable Change Password Through Registry](/endpoint/windows_disable_change_password_through_registry/) | [Modify Registry](/tags/#modify-registry) | Anomaly |
|
||||
| [Windows Disable Lock Workstation Feature Through Registry](/endpoint/windows_disable_lock_workstation_feature_through_registry/) | [Modify Registry](/tags/#modify-registry) | Anomaly |
|
||||
| [Windows Disable LogOff Button Through Registry](/endpoint/windows_disable_logoff_button_through_registry/) | [Modify Registry](/tags/#modify-registry) | Anomaly |
|
||||
| [Windows Disable Memory Crash Dump](/endpoint/windows_disable_memory_crash_dump/) | [Data Destruction](/tags/#data-destruction) | TTP |
|
||||
| [Windows Disable Notification Center](/endpoint/windows_disable_notification_center/) | [Modify Registry](/tags/#modify-registry) | Anomaly |
|
||||
| [Windows Disable Shutdown Button Through Registry](/endpoint/windows_disable_shutdown_button_through_registry/) | [Modify Registry](/tags/#modify-registry) | Anomaly |
|
||||
| [Windows Disable Windows Group Policy Features Through Registry](/endpoint/windows_disable_windows_group_policy_features_through_registry/) | [Modify Registry](/tags/#modify-registry) | Anomaly |
|
||||
| [Windows DisableAntiSpyware Registry](/endpoint/windows_disableantispyware_registry/) | [Disable or Modify Tools](/tags/#disable-or-modify-tools), [Impair Defenses](/tags/#impair-defenses) | TTP |
|
||||
| [Windows Disabled Users Failing To Authenticate Kerberos](/endpoint/windows_disabled_users_failing_to_authenticate_kerberos/) | [Password Spraying](/tags/#password-spraying), [Brute Force](/tags/#brute-force) | Anomaly |
|
||||
| [Windows DiskCryptor Usage](/endpoint/windows_diskcryptor_usage/) | [Data Encrypted for Impact](/tags/#data-encrypted-for-impact) | Hunting |
|
||||
| [Windows Diskshadow Proxy Execution](/endpoint/windows_diskshadow_proxy_execution/) | [Signed Binary Proxy Execution](/tags/#signed-binary-proxy-execution) | TTP |
|
||||
| [Windows DotNet Binary in Non Standard Path](/endpoint/windows_dotnet_binary_in_non_standard_path/) | [Masquerading](/tags/#masquerading), [Rename System Utilities](/tags/#rename-system-utilities), [Signed Binary Proxy Execution](/tags/#signed-binary-proxy-execution), [InstallUtil](/tags/#installutil) | TTP |
|
||||
@@ -788,6 +793,7 @@ sidebar:
|
||||
| [Windows Event Log Cleared](/endpoint/windows_event_log_cleared/) | [Indicator Removal on Host](/tags/#indicator-removal-on-host), [Clear Windows Event Logs](/tags/#clear-windows-event-logs) | TTP |
|
||||
| [Windows Excessive Disabled Services Event](/endpoint/windows_excessive_disabled_services_event/) | [Disable or Modify Tools](/tags/#disable-or-modify-tools), [Impair Defenses](/tags/#impair-defenses) | TTP |
|
||||
| [Windows File Without Extension In Critical Folder](/endpoint/windows_file_without_extension_in_critical_folder/) | [Data Destruction](/tags/#data-destruction) | TTP |
|
||||
| [Windows Hide Notification Features Through Registry](/endpoint/windows_hide_notification_features_through_registry/) | [Modify Registry](/tags/#modify-registry) | Anomaly |
|
||||
| [Windows High File Deletion Frequency](/endpoint/windows_high_file_deletion_frequency/) | [Data Destruction](/tags/#data-destruction) | Anomaly |
|
||||
| [Windows Hunting System Account Targeting Lsass](/endpoint/windows_hunting_system_account_targeting_lsass/) | [LSASS Memory](/tags/#lsass-memory), [OS Credential Dumping](/tags/#os-credential-dumping) | Hunting |
|
||||
| [Windows InstallUtil Credential Theft](/endpoint/windows_installutil_credential_theft/) | [InstallUtil](/tags/#installutil), [Signed Binary Proxy Execution](/tags/#signed-binary-proxy-execution) | TTP |
|
||||
@@ -796,6 +802,7 @@ sidebar:
|
||||
| [Windows InstallUtil Uninstall Option](/endpoint/windows_installutil_uninstall_option/) | [InstallUtil](/tags/#installutil), [Signed Binary Proxy Execution](/tags/#signed-binary-proxy-execution) | TTP |
|
||||
| [Windows InstallUtil Uninstall Option with Network](/endpoint/windows_installutil_uninstall_option_with_network/) | [InstallUtil](/tags/#installutil), [Signed Binary Proxy Execution](/tags/#signed-binary-proxy-execution) | TTP |
|
||||
| [Windows InstallUtil in Non Standard Path](/endpoint/windows_installutil_in_non_standard_path/) | [Masquerading](/tags/#masquerading), [Rename System Utilities](/tags/#rename-system-utilities), [Signed Binary Proxy Execution](/tags/#signed-binary-proxy-execution), [InstallUtil](/tags/#installutil) | TTP |
|
||||
| [Windows Invalid Users Failed Authentication via Kerberos](/endpoint/windows_invalid_users_failed_authentication_via_kerberos/) | [Password Spraying](/tags/#password-spraying), [Brute Force](/tags/#brute-force) | Anomaly |
|
||||
| [Windows Java Spawning Shells](/endpoint/windows_java_spawning_shells/) | [Exploit Public-Facing Application](/tags/#exploit-public-facing-application) | TTP |
|
||||
| [Windows Modify Show Compress Color And Info Tip Registry](/endpoint/windows_modify_show_compress_color_and_info_tip_registry/) | [Modify Registry](/tags/#modify-registry) | TTP |
|
||||
| [Windows NirSoft AdvancedRun](/endpoint/windows_nirsoft_advancedrun/) | [Tool](/tags/#tool) | TTP |
|
||||
@@ -815,6 +822,7 @@ sidebar:
|
||||
| [Windows Service Creation Using Registry Entry](/endpoint/windows_service_creation_using_registry_entry/) | [Services Registry Permissions Weakness](/tags/#services-registry-permissions-weakness) | TTP |
|
||||
| [Windows Service Creation on Remote Endpoint](/endpoint/windows_service_creation_on_remote_endpoint/) | [Create or Modify System Process](/tags/#create-or-modify-system-process), [Windows Service](/tags/#windows-service) | TTP |
|
||||
| [Windows Service Initiation on Remote Endpoint](/endpoint/windows_service_initiation_on_remote_endpoint/) | [Create or Modify System Process](/tags/#create-or-modify-system-process), [Windows Service](/tags/#windows-service) | TTP |
|
||||
| [Windows Users Authenticate Using Explicit Credentials](/endpoint/windows_users_authenticate_using_explicit_credentials/) | [Password Spraying](/tags/#password-spraying), [Brute Force](/tags/#brute-force) | Anomaly |
|
||||
| [Windows WMI Process Call Create](/endpoint/windows_wmi_process_call_create/) | [Windows Management Instrumentation](/tags/#windows-management-instrumentation) | Hunting |
|
||||
| [Windows connhost exe started forcefully](/deprecated/windows_connhost_exe_started_forcefully/) | [Windows Command Shell](/tags/#windows-command-shell) | TTP |
|
||||
| [Windows hosts file modification]() | None | TTP |
|
||||
|
||||
@@ -15,7 +15,7 @@ sidebar:
|
||||
| [Active Directory Reset password](/playbooks/active_directory_reset_password/)| None | Response |
|
||||
| [Block Indicators](/playbooks/block_indicators/)| None | Response |
|
||||
| [Crowdstrike Malware Triage](/playbooks/crowdstrike_malware_triage/)| None | Response |
|
||||
| [Delete Detected Files](/playbooks/delete_detected_files/)|[Executable File Written in Administrative SMB Share](/endpoint/executable_file_written_in_administrative_smb_share/)| Response |
|
||||
| [Delete Detected Files](/playbooks/delete_detected_files/)|[Executable File Written in Administrative SMB Share]((/detection/executable_file_written_in_administrative_smb_share/)| Response |
|
||||
| [Email Notification for Malware](/playbooks/email_notification_for_malware/)| None | Response |
|
||||
| [Internal Host SSH Investigate](/playbooks/internal_host_ssh_investigate/)| None | Investigation |
|
||||
| [Internal Host SSH Log4j Investigate](/playbooks/internal_host_ssh_log4j_investigate/)| None | Investigation |
|
||||
@@ -23,11 +23,11 @@ sidebar:
|
||||
| [Internal Host WinRM Investigate](/playbooks/internal_host_winrm_investigate/)| None | Investigation |
|
||||
| [Internal Host WinRM Log4j Investigate](/playbooks/internal_host_winrm_log4j_investigate/)| None | Investigation |
|
||||
| [Internal Host WinRM Response](/playbooks/internal_host_winrm_response/)| None | Response |
|
||||
| [Log4j Investigate](/playbooks/log4j_investigate/)|[Curl Download and Bash Execution](/endpoint/curl_download_and_bash_execution/)[Java Class File download by Java User Agent](/endpoint/java_class_file_download_by_java_user_agent/)[Linux Java Spawning Shell](/endpoint/linux_java_spawning_shell/)[Outbound Network Connection from Java Using Default Ports](/endpoint/outbound_network_connection_from_java_using_default_ports/)[Wget Download and Bash Execution](/endpoint/wget_download_and_bash_execution/)[Detect Outbound LDAP Traffic](/network/detect_outbound_ldap_traffic/)[Log4Shell JNDI Payload Injection Attempt](/web/log4shell_jndi_payload_injection_attempt/)[Log4Shell JNDI Payload Injection with Outbound Connection](/web/log4shell_jndi_payload_injection_with_outbound_connection/)| Investigation |
|
||||
| [Log4j Respond](/playbooks/log4j_respond/)|[Curl Download and Bash Execution](/endpoint/curl_download_and_bash_execution/)[Java Class File download by Java User Agent](/endpoint/java_class_file_download_by_java_user_agent/)[Linux Java Spawning Shell](/endpoint/linux_java_spawning_shell/)[Outbound Network Connection from Java Using Default Ports](/endpoint/outbound_network_connection_from_java_using_default_ports/)[Wget Download and Bash Execution](/endpoint/wget_download_and_bash_execution/)[Detect Outbound LDAP Traffic](/network/detect_outbound_ldap_traffic/)[Log4Shell JNDI Payload Injection Attempt](/web/log4shell_jndi_payload_injection_attempt/)[Log4Shell JNDI Payload Injection with Outbound Connection](/web/log4shell_jndi_payload_injection_with_outbound_connection/)| Response |
|
||||
| [Log4j Investigate](/playbooks/log4j_investigate/)|[Curl Download and Bash Execution]((/detection/curl_download_and_bash_execution/)[Wget Download and Bash Execution]((/detection/wget_download_and_bash_execution/)[Linux Java Spawning Shell]((/detection/linux_java_spawning_shell/)[Windows Java Spawning Shell]((/detection/windows_java_spawning_shell/)[Java Class File download by Java User Agent]((/detection/java_class_file_download_by_java_user_agent/)[Outbound Network Connection from Java Using Default Ports]((/detection/outbound_network_connection_from_java_using_default_ports/)[Log4Shell JNDI Payload Injection Attempt]((/detection/log4shell_jndi_payload_injection_attempt/)[Log4Shell JNDI Payload Injection with Outbound Connection]((/detection/log4shell_jndi_payload_injection_with_outbound_connection/)[Detect Outbound LDAP Traffic]((/detection/detect_outbound_ldap_traffic/)| Investigation |
|
||||
| [Log4j Respond](/playbooks/log4j_respond/)|[Curl Download and Bash Execution]((/detection/curl_download_and_bash_execution/)[Wget Download and Bash Execution]((/detection/wget_download_and_bash_execution/)[Linux Java Spawning Shell]((/detection/linux_java_spawning_shell/)[Windows Java Spawning Shell]((/detection/windows_java_spawning_shell/)[Java Class File download by Java User Agent]((/detection/java_class_file_download_by_java_user_agent/)[Outbound Network Connection from Java Using Default Ports]((/detection/outbound_network_connection_from_java_using_default_ports/)[Log4Shell JNDI Payload Injection Attempt]((/detection/log4shell_jndi_payload_injection_attempt/)[Log4Shell JNDI Payload Injection with Outbound Connection]((/detection/log4shell_jndi_payload_injection_with_outbound_connection/)[Detect Outbound LDAP Traffic]((/detection/detect_outbound_ldap_traffic/)| Response |
|
||||
| [Log4j Splunk Investigation](/playbooks/log4j_splunk_investigation/)| None | Investigation |
|
||||
| [Malware Hunt and Contain](/playbooks/malware_hunt_and_contain/)| None | Response |
|
||||
| [Ransomware Investigate and Contain](/playbooks/ransomware_investigate_and_contain/)|[Conti Common Exec parameter](/endpoint/conti_common_exec_parameter/)| Response |
|
||||
| [Ransomware Investigate and Contain](/playbooks/ransomware_investigate_and_contain/)|[Conti Common Exec parameter]((/detection/conti_common_exec_parameter/)| Response |
|
||||
| [Risk Notable Block Indicators](/playbooks/risk_notable_block_indicators/)| None | Response |
|
||||
| [Risk Notable Enrich](/playbooks/risk_notable_enrich/)| None | Investigation |
|
||||
| [Risk Notable Import Data](/playbooks/risk_notable_import_data/)| None | Investigation |
|
||||
|
||||
@@ -68,7 +68,7 @@ sidebar:
|
||||
| [Linux Persistence Techniques](linux_persistence_techniques) | [Cron](/tags/#cron), [Scheduled Task/Job](/tags/#scheduled-task/job), [Local Account](/tags/#local-account), [Create Account](/tags/#create-account), [At (Linux)](/tags/#at-(linux)), [Linux and Mac File and Directory Permissions Modification](/tags/#linux-and-mac-file-and-directory-permissions-modification), [File and Directory Permissions Modification](/tags/#file-and-directory-permissions-modification), [Setuid and Setgid](/tags/#setuid-and-setgid), [Abuse Elevation Control Mechanism](/tags/#abuse-elevation-control-mechanism), [Sudo and Sudo Caching](/tags/#sudo-and-sudo-caching), [Kernel Modules and Extensions](/tags/#kernel-modules-and-extensions), [Boot or Logon Autostart Execution](/tags/#boot-or-logon-autostart-execution), [RC Scripts](/tags/#rc-scripts), [Boot or Logon Initialization Scripts](/tags/#boot-or-logon-initialization-scripts), [Unix Shell Configuration Modification](/tags/#unix-shell-configuration-modification), [Event Triggered Execution](/tags/#event-triggered-execution), [SSH Authorized Keys](/tags/#ssh-authorized-keys), [Account Manipulation](/tags/#account-manipulation), [/etc/passwd and /etc/shadow](/tags/#/etc/passwd-and-/etc/shadow), [OS Credential Dumping](/tags/#os-credential-dumping), [Dynamic Linker Hijacking](/tags/#dynamic-linker-hijacking), [Hijack Execution Flow](/tags/#hijack-execution-flow), [Systemd Timers](/tags/#systemd-timers) | [Credential Access](/tags/#credential-access), [Defense Evasion](/tags/#defense-evasion), [Execution](/tags/#execution), [Persistence](/tags/#persistence), [Privilege Escalation](/tags/#privilege-escalation) |
|
||||
| [Linux Post-Exploitation](linux_post-exploitation) | [Unix Shell](/tags/#unix-shell) | [Execution](/tags/#execution) |
|
||||
| [Linux Privilege Escalation](linux_privilege_escalation) | [Cron](/tags/#cron), [Scheduled Task/Job](/tags/#scheduled-task/job), [Local Account](/tags/#local-account), [Create Account](/tags/#create-account), [At (Linux)](/tags/#at-(linux)), [Linux and Mac File and Directory Permissions Modification](/tags/#linux-and-mac-file-and-directory-permissions-modification), [File and Directory Permissions Modification](/tags/#file-and-directory-permissions-modification), [Setuid and Setgid](/tags/#setuid-and-setgid), [Abuse Elevation Control Mechanism](/tags/#abuse-elevation-control-mechanism), [Sudo and Sudo Caching](/tags/#sudo-and-sudo-caching), [Kernel Modules and Extensions](/tags/#kernel-modules-and-extensions), [Boot or Logon Autostart Execution](/tags/#boot-or-logon-autostart-execution), [RC Scripts](/tags/#rc-scripts), [Boot or Logon Initialization Scripts](/tags/#boot-or-logon-initialization-scripts), [Unix Shell Configuration Modification](/tags/#unix-shell-configuration-modification), [Event Triggered Execution](/tags/#event-triggered-execution), [Exploitation for Privilege Escalation](/tags/#exploitation-for-privilege-escalation), [SSH Authorized Keys](/tags/#ssh-authorized-keys), [Account Manipulation](/tags/#account-manipulation), [/etc/passwd and /etc/shadow](/tags/#/etc/passwd-and-/etc/shadow), [OS Credential Dumping](/tags/#os-credential-dumping), [Dynamic Linker Hijacking](/tags/#dynamic-linker-hijacking), [Hijack Execution Flow](/tags/#hijack-execution-flow), [Systemd Timers](/tags/#systemd-timers) | [Credential Access](/tags/#credential-access), [Defense Evasion](/tags/#defense-evasion), [Execution](/tags/#execution), [Persistence](/tags/#persistence), [Privilege Escalation](/tags/#privilege-escalation) |
|
||||
| [Living Off The Land](living_off_the_land) | [Bypass User Account Control](/tags/#bypass-user-account-control), [Abuse Elevation Control Mechanism](/tags/#abuse-elevation-control-mechanism), [Signed Binary Proxy Execution](/tags/#signed-binary-proxy-execution) | [Defense Evasion](/tags/#defense-evasion), [Privilege Escalation](/tags/#privilege-escalation) |
|
||||
| [Living Off The Land](living_off_the_land) | [BITS Jobs](/tags/#bits-jobs), [Ingress Tool Transfer](/tags/#ingress-tool-transfer), [Deobfuscate/Decode Files or Information](/tags/#deobfuscate/decode-files-or-information), [Windows Command Shell](/tags/#windows-command-shell), [Command and Scripting Interpreter](/tags/#command-and-scripting-interpreter), [Signed Binary Proxy Execution](/tags/#signed-binary-proxy-execution), [Control Panel](/tags/#control-panel), [NTDS](/tags/#ntds), [OS Credential Dumping](/tags/#os-credential-dumping), [Compiled HTML File](/tags/#compiled-html-file), [Mshta](/tags/#mshta), [Regsvcs/Regasm](/tags/#regsvcs/regasm), [Regsvr32](/tags/#regsvr32), [Rundll32](/tags/#rundll32), [Disable or Modify Tools](/tags/#disable-or-modify-tools), [Impair Defenses](/tags/#impair-defenses), [LSASS Memory](/tags/#lsass-memory), [Security Account Manager](/tags/#security-account-manager), [Bypass User Account Control](/tags/#bypass-user-account-control), [Abuse Elevation Control Mechanism](/tags/#abuse-elevation-control-mechanism), [Unix Shell](/tags/#unix-shell), [Remote Services](/tags/#remote-services), [Distributed Component Object Model](/tags/#distributed-component-object-model), [Services Registry Permissions Weakness](/tags/#services-registry-permissions-weakness), [Hijack Execution Flow](/tags/#hijack-execution-flow), [Windows Management Instrumentation](/tags/#windows-management-instrumentation), [Process Injection](/tags/#process-injection), [Modify Registry](/tags/#modify-registry), [Scheduled Task/Job](/tags/#scheduled-task/job), [At (Windows)](/tags/#at-(windows)), [Scheduled Task](/tags/#scheduled-task), [Create or Modify System Process](/tags/#create-or-modify-system-process), [Windows Service](/tags/#windows-service), [Masquerading](/tags/#masquerading), [Trusted Developer Utilities Proxy Execution](/tags/#trusted-developer-utilities-proxy-execution), [Rename System Utilities](/tags/#rename-system-utilities), [MSBuild](/tags/#msbuild), [InstallUtil](/tags/#installutil) | [Command And Control](/tags/#command-and-control), [Credential Access](/tags/#credential-access), [Defense Evasion](/tags/#defense-evasion), [Execution](/tags/#execution), [Lateral Movement](/tags/#lateral-movement), [Persistence](/tags/#persistence), [Privilege Escalation](/tags/#privilege-escalation) |
|
||||
| [Log4Shell CVE-2021-44228](log4shell_cve-2021-44228) | [Command and Scripting Interpreter](/tags/#command-and-scripting-interpreter), [PowerShell](/tags/#powershell), [Windows Command Shell](/tags/#windows-command-shell), [Ingress Tool Transfer](/tags/#ingress-tool-transfer), [Exploit Public-Facing Application](/tags/#exploit-public-facing-application) | [Command And Control](/tags/#command-and-control), [Execution](/tags/#execution), [Initial Access](/tags/#initial-access) |
|
||||
| [Malicious PowerShell](malicious_powershell) | [PowerShell](/tags/#powershell), [Command and Scripting Interpreter](/tags/#command-and-scripting-interpreter), [OS Credential Dumping](/tags/#os-credential-dumping), [Obfuscated Files or Information](/tags/#obfuscated-files-or-information), [Remote Services](/tags/#remote-services), [Distributed Component Object Model](/tags/#distributed-component-object-model), [Windows Remote Management](/tags/#windows-remote-management), [Windows Management Instrumentation](/tags/#windows-management-instrumentation), [Scheduled Task](/tags/#scheduled-task), [Windows Service](/tags/#windows-service), [Indicator Removal from Tools](/tags/#indicator-removal-from-tools), [Component Object Model Hijacking](/tags/#component-object-model-hijacking), [Event Triggered Execution](/tags/#event-triggered-execution), [Process Injection](/tags/#process-injection), [Deobfuscate/Decode Files or Information](/tags/#deobfuscate/decode-files-or-information), [Gather Victim Host Information](/tags/#gather-victim-host-information), [Impair Defenses](/tags/#impair-defenses) | [Credential Access](/tags/#credential-access), [Defense Evasion](/tags/#defense-evasion), [Execution](/tags/#execution), [Lateral Movement](/tags/#lateral-movement), [Persistence](/tags/#persistence), [Privilege Escalation](/tags/#privilege-escalation), [Reconnaissance](/tags/#reconnaissance) |
|
||||
| [Masquerading - Rename System Utilities](masquerading_-_rename_system_utilities) | [Rename System Utilities](/tags/#rename-system-utilities), [Signed Binary Proxy Execution](/tags/#signed-binary-proxy-execution), [Masquerading](/tags/#masquerading), [Rundll32](/tags/#rundll32), [Data Destruction](/tags/#data-destruction), [File Deletion](/tags/#file-deletion), [Indicator Removal on Host](/tags/#indicator-removal-on-host), [Trusted Developer Utilities Proxy Execution](/tags/#trusted-developer-utilities-proxy-execution), [MSBuild](/tags/#msbuild), [InstallUtil](/tags/#installutil) | [Defense Evasion](/tags/#defense-evasion), [Impact](/tags/#impact) |
|
||||
|
||||
@@ -24,7 +24,7 @@ This playbook acts upon events where a file has been determined to be malicious
|
||||
|
||||
#### Associated Detections
|
||||
|
||||
* [Executable File Written in Administrative SMB Share](//executable_file_written_in_administrative_smb_share/)
|
||||
* [Executable File Written in Administrative SMB Share](/detection/executable_file_written_in_administrative_smb_share/)
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -24,14 +24,15 @@ Published in response to CVE-2021-44228, this playbook and its sub-playbooks can
|
||||
|
||||
#### Associated Detections
|
||||
|
||||
* [Curl Download and Bash Execution](//curl_download_and_bash_execution/)
|
||||
* [Java Class File download by Java User Agent](//java_class_file_download_by_java_user_agent/)
|
||||
* [Linux Java Spawning Shell](//linux_java_spawning_shell/)
|
||||
* [Outbound Network Connection from Java Using Default Ports](//outbound_network_connection_from_java_using_default_ports/)
|
||||
* [Wget Download and Bash Execution](//wget_download_and_bash_execution/)
|
||||
* [Detect Outbound LDAP Traffic](//detect_outbound_ldap_traffic/)
|
||||
* [Log4Shell JNDI Payload Injection Attempt](//log4shell_jndi_payload_injection_attempt/)
|
||||
* [Log4Shell JNDI Payload Injection with Outbound Connection](//log4shell_jndi_payload_injection_with_outbound_connection/)
|
||||
* [Curl Download and Bash Execution](/detection/curl_download_and_bash_execution/)
|
||||
* [Wget Download and Bash Execution](/detection/wget_download_and_bash_execution/)
|
||||
* [Linux Java Spawning Shell](/detection/linux_java_spawning_shell/)
|
||||
* [Windows Java Spawning Shell](/detection/windows_java_spawning_shell/)
|
||||
* [Java Class File download by Java User Agent](/detection/java_class_file_download_by_java_user_agent/)
|
||||
* [Outbound Network Connection from Java Using Default Ports](/detection/outbound_network_connection_from_java_using_default_ports/)
|
||||
* [Log4Shell JNDI Payload Injection Attempt](/detection/log4shell_jndi_payload_injection_attempt/)
|
||||
* [Log4Shell JNDI Payload Injection with Outbound Connection](/detection/log4shell_jndi_payload_injection_with_outbound_connection/)
|
||||
* [Detect Outbound LDAP Traffic](/detection/detect_outbound_ldap_traffic/)
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -24,14 +24,15 @@ Published in response to CVE-2021-44228, this playbook is meant to be launched a
|
||||
|
||||
#### Associated Detections
|
||||
|
||||
* [Curl Download and Bash Execution](//curl_download_and_bash_execution/)
|
||||
* [Java Class File download by Java User Agent](//java_class_file_download_by_java_user_agent/)
|
||||
* [Linux Java Spawning Shell](//linux_java_spawning_shell/)
|
||||
* [Outbound Network Connection from Java Using Default Ports](//outbound_network_connection_from_java_using_default_ports/)
|
||||
* [Wget Download and Bash Execution](//wget_download_and_bash_execution/)
|
||||
* [Detect Outbound LDAP Traffic](//detect_outbound_ldap_traffic/)
|
||||
* [Log4Shell JNDI Payload Injection Attempt](//log4shell_jndi_payload_injection_attempt/)
|
||||
* [Log4Shell JNDI Payload Injection with Outbound Connection](//log4shell_jndi_payload_injection_with_outbound_connection/)
|
||||
* [Curl Download and Bash Execution](/detection/curl_download_and_bash_execution/)
|
||||
* [Wget Download and Bash Execution](/detection/wget_download_and_bash_execution/)
|
||||
* [Linux Java Spawning Shell](/detection/linux_java_spawning_shell/)
|
||||
* [Windows Java Spawning Shell](/detection/windows_java_spawning_shell/)
|
||||
* [Java Class File download by Java User Agent](/detection/java_class_file_download_by_java_user_agent/)
|
||||
* [Outbound Network Connection from Java Using Default Ports](/detection/outbound_network_connection_from_java_using_default_ports/)
|
||||
* [Log4Shell JNDI Payload Injection Attempt](/detection/log4shell_jndi_payload_injection_attempt/)
|
||||
* [Log4Shell JNDI Payload Injection with Outbound Connection](/detection/log4shell_jndi_payload_injection_with_outbound_connection/)
|
||||
* [Detect Outbound LDAP Traffic](/detection/detect_outbound_ldap_traffic/)
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -29,7 +29,7 @@ This playbook investigates and contains ransomware detected on endpoints.
|
||||
|
||||
#### Associated Detections
|
||||
|
||||
* [Conti Common Exec parameter](//conti_common_exec_parameter/)
|
||||
* [Conti Common Exec parameter](/detection/conti_common_exec_parameter/)
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ tags:
|
||||
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -25,6 +25,7 @@ The search is used to detect systems that are still vulnerable to the Spectre an
|
||||
- **Type**: [TTP](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**: [Vulnerabilities](https://docs.splunk.com/Documentation/CIM/latest/User/Vulnerabilities)
|
||||
|
||||
- **Last Updated**: 2017-01-07
|
||||
- **Author**: David Dorsey, Splunk
|
||||
- **ID**: 354be8e0-32cd-4da0-8c47-796de13b60ea
|
||||
|
||||
@@ -17,7 +17,7 @@ tags:
|
||||
We have not been able to test, simulate, or build datasets for this object. Use at your own risk. This analytic is **NOT** supported.
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -26,6 +26,7 @@ The search queries the authentication logs for assets that are categorized as ro
|
||||
- **Type**: [TTP](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**: [Authentication](https://docs.splunk.com/Documentation/CIM/latest/User/Authentication)
|
||||
|
||||
- **Last Updated**: 2017-09-12
|
||||
- **Author**: Bhavin Patel, Splunk
|
||||
- **ID**: bce3ed7c-9b1f-42a0-abdf-d8b123a34836
|
||||
|
||||
@@ -14,7 +14,7 @@ tags:
|
||||
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -22,7 +22,8 @@ This search returns a list of hosts that have not successfully completed a backu
|
||||
|
||||
- **Type**: [Hunting](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**:
|
||||
|
||||
|
||||
- **Last Updated**: 2017-09-12
|
||||
- **Author**: David Dorsey, Splunk
|
||||
- **ID**: a34aae96-ccf8-4aef-952c-3ea214444440
|
||||
|
||||
@@ -20,7 +20,7 @@ tags:
|
||||
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -28,7 +28,8 @@ This detection search will help profile user accounts in your environment by ide
|
||||
|
||||
- **Type**: [Hunting](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**:
|
||||
|
||||
|
||||
- **Last Updated**: 2017-09-12
|
||||
- **Author**: Bhavin Patel, Splunk
|
||||
- **ID**: 475b9e27-17e4-46e2-b7e2-648221be3b89
|
||||
|
||||
@@ -14,7 +14,7 @@ tags:
|
||||
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -22,7 +22,8 @@ This search gives you the hosts where a backup was attempted and then failed.
|
||||
|
||||
- **Type**: [Hunting](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**:
|
||||
|
||||
|
||||
- **Last Updated**: 2017-09-12
|
||||
- **Author**: David Dorsey, Splunk
|
||||
- **ID**: a34aae96-ccf8-4aaa-952c-3ea21444444f
|
||||
|
||||
@@ -17,7 +17,7 @@ tags:
|
||||
We have not been able to test, simulate, or build datasets for this object. Use at your own risk. This analytic is **NOT** supported.
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -26,6 +26,7 @@ By populating the organization's assets within the assets_by_str.csv, we will be
|
||||
- **Type**: [TTP](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**: [Network_Sessions](https://docs.splunk.com/Documentation/CIM/latest/User/NetworkSessions)
|
||||
|
||||
- **Last Updated**: 2017-09-13
|
||||
- **Author**: Bhavin Patel, Splunk
|
||||
- **ID**: dcfd6b40-42f9-469d-a433-2e53f7489ff4
|
||||
|
||||
@@ -17,7 +17,7 @@ tags:
|
||||
We have not been able to test, simulate, or build datasets for this object. Use at your own risk. This analytic is **NOT** supported.
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -26,6 +26,7 @@ This search looks for Windows endpoints that have not generated an event indicat
|
||||
- **Type**: [Hunting](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**: [Updates](https://docs.splunk.com/Documentation/CIM/latest/User/Updates)
|
||||
|
||||
- **Last Updated**: 2017-09-15
|
||||
- **Author**: Bhavin Patel, Splunk
|
||||
- **ID**: 1a77c08c-2f56-409c-a2d3-7d64617edd4f
|
||||
|
||||
@@ -17,7 +17,7 @@ tags:
|
||||
We have not been able to test, simulate, or build datasets for this object. Use at your own risk. This analytic is **NOT** supported.
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -26,6 +26,7 @@ Attackers often use spaces as a means to obfuscate an attachment's file extensio
|
||||
- **Type**: [Anomaly](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**: [Email](https://docs.splunk.com/Documentation/CIM/latest/User/Email)
|
||||
|
||||
- **Last Updated**: 2017-09-19
|
||||
- **Author**: David Dorsey, Splunk
|
||||
- **ID**: 56e877a6-1455-4479-ada6-0550dc1e22f8
|
||||
|
||||
@@ -15,7 +15,7 @@ tags:
|
||||
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -23,7 +23,8 @@ This search allows you to look for evidence of exploitation for CVE-2016-4859, t
|
||||
|
||||
- **Type**: [TTP](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**:
|
||||
|
||||
|
||||
- **Last Updated**: 2017-09-19
|
||||
- **Author**: Bhavin Patel, Splunk
|
||||
- **ID**: d199fb99-2312-451a-9daa-e5efa6ed76a7
|
||||
|
||||
@@ -23,7 +23,7 @@ tags:
|
||||
We have not been able to test, simulate, or build datasets for this object. Use at your own risk. This analytic is **NOT** supported.
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -32,6 +32,7 @@ The search is used to identify attempts to use your DNS Infrastructure for DDoS
|
||||
- **Type**: [Anomaly](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**: [Network_Resolution](https://docs.splunk.com/Documentation/CIM/latest/User/NetworkResolution)
|
||||
|
||||
- **Last Updated**: 2017-09-20
|
||||
- **Author**: Bhavin Patel, Splunk
|
||||
- **ID**: 8fa891f7-a533-4b3c-af85-5aa2e7c1f1eb
|
||||
|
||||
@@ -20,7 +20,7 @@ tags:
|
||||
We have not been able to test, simulate, or build datasets for this object. Use at your own risk. This analytic is **NOT** supported.
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -29,6 +29,7 @@ This search looks for specific GET or HEAD requests to web servers that are indi
|
||||
- **Type**: [TTP](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**: [Web](https://docs.splunk.com/Documentation/CIM/latest/User/Web)
|
||||
|
||||
- **Last Updated**: 2017-09-23
|
||||
- **Author**: Bhavin Patel, Splunk
|
||||
- **ID**: 104658f4-afdc-499e-9719-17243f982681
|
||||
|
||||
@@ -17,7 +17,7 @@ tags:
|
||||
We have not been able to test, simulate, or build datasets for this object. Use at your own risk. This analytic is **NOT** supported.
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -26,6 +26,7 @@ This search is used to detect malicious HTTP requests crafted to exploit jmx-con
|
||||
- **Type**: [TTP](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**: [Web](https://docs.splunk.com/Documentation/CIM/latest/User/Web)
|
||||
|
||||
- **Last Updated**: 2017-09-23
|
||||
- **Author**: Bhavin Patel, Splunk
|
||||
- **ID**: c8bff7a4-11ea-4416-a27d-c5bca472913d
|
||||
|
||||
@@ -15,7 +15,7 @@ tags:
|
||||
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -24,6 +24,7 @@ This search looks for DNS requests for faux domains similar to the domains that
|
||||
- **Type**: [TTP](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**: [Network_Resolution](https://docs.splunk.com/Documentation/CIM/latest/User/NetworkResolution)
|
||||
|
||||
- **Last Updated**: 2017-09-23
|
||||
- **Author**: David Dorsey, Splunk
|
||||
- **ID**: 24dd17b1-e2fb-4c31-878c-d4f746595bfa
|
||||
@@ -41,8 +42,8 @@ This search looks for DNS requests for faux domains similar to the domains that
|
||||
|
||||
#### Macros
|
||||
The SPL above uses the following Macros:
|
||||
* [security_content_ctime](https://github.com/splunk/security_content/blob/develop/macros/security_content_ctime.yml)
|
||||
* [brand_abuse_dns](https://github.com/splunk/security_content/blob/develop/macros/brand_abuse_dns.yml)
|
||||
* [security_content_ctime](https://github.com/splunk/security_content/blob/develop/macros/security_content_ctime.yml)
|
||||
* [security_content_summariesonly](https://github.com/splunk/security_content/blob/develop/macros/security_content_summariesonly.yml)
|
||||
|
||||
Note that `monitor_dns_for_brand_abuse_filter` is a empty macro by default. It allows the user to filter out any results (false positives) without editing the SPL.
|
||||
|
||||
@@ -17,7 +17,7 @@ tags:
|
||||
We have not been able to test, simulate, or build datasets for this object. Use at your own risk. This analytic is **NOT** supported.
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -26,6 +26,7 @@ This search looks for Web requests to faux domains similar to the one that you w
|
||||
- **Type**: [TTP](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**: [Web](https://docs.splunk.com/Documentation/CIM/latest/User/Web)
|
||||
|
||||
- **Last Updated**: 2017-09-23
|
||||
- **Author**: David Dorsey, Splunk
|
||||
- **ID**: 134da869-e264-4a8f-8d7e-fcd0ec88f301
|
||||
@@ -43,9 +44,9 @@ This search looks for Web requests to faux domains similar to the one that you w
|
||||
|
||||
#### Macros
|
||||
The SPL above uses the following Macros:
|
||||
* [brand_abuse_web](https://github.com/splunk/security_content/blob/develop/macros/brand_abuse_web.yml)
|
||||
* [security_content_ctime](https://github.com/splunk/security_content/blob/develop/macros/security_content_ctime.yml)
|
||||
* [security_content_summariesonly](https://github.com/splunk/security_content/blob/develop/macros/security_content_summariesonly.yml)
|
||||
* [brand_abuse_web](https://github.com/splunk/security_content/blob/develop/macros/brand_abuse_web.yml)
|
||||
|
||||
Note that `monitor_web_traffic_for_brand_abuse_filter` is a empty macro by default. It allows the user to filter out any results (false positives) without editing the SPL.
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ tags:
|
||||
We have not been able to test, simulate, or build datasets for this object. Use at your own risk. This analytic is **NOT** supported.
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -24,7 +24,8 @@ This search looks for unusually long strings in the Content-Type http header tha
|
||||
|
||||
- **Type**: [Anomaly](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**:
|
||||
|
||||
|
||||
- **Last Updated**: 2017-10-13
|
||||
- **Author**: Bhavin Patel, Splunk
|
||||
- **ID**: 57a0a2bf-353f-40c1-84dc-29293f3c35b7
|
||||
|
||||
@@ -15,7 +15,7 @@ tags:
|
||||
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -24,6 +24,7 @@ The search is used to detect hosts that generate Windows Event ID 4663 for succe
|
||||
- **Type**: [TTP](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**: [Change_Analysis](https://docs.splunk.com/Documentation/CIM/latest/User/ChangeAnalysis)
|
||||
|
||||
- **Last Updated**: 2017-11-27
|
||||
- **Author**: Bhavin Patel, Splunk
|
||||
- **ID**: 104658f4-afdc-499f-9719-17a43f9826f5
|
||||
|
||||
@@ -17,7 +17,7 @@ tags:
|
||||
We have not been able to test, simulate, or build datasets for this object. Use at your own risk. This analytic is **NOT** supported.
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -26,6 +26,7 @@ This search looks for emails claiming to be sent from a domain similar to one th
|
||||
- **Type**: [TTP](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**: [Email](https://docs.splunk.com/Documentation/CIM/latest/User/Email)
|
||||
|
||||
- **Last Updated**: 2018-01-05
|
||||
- **Author**: David Dorsey, Splunk
|
||||
- **ID**: b2ea1f38-3a3e-4b8a-9cf1-82760d86a6b8
|
||||
|
||||
@@ -17,7 +17,7 @@ tags:
|
||||
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -25,7 +25,8 @@ This search looks for AWS CloudTrail events where an instance is started in a pa
|
||||
|
||||
- **Type**: [Anomaly](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**:
|
||||
|
||||
|
||||
- **Last Updated**: 2018-02-23
|
||||
- **Author**: Bhavin Patel, Splunk
|
||||
- **ID**: ada0f478-84a8-4641-a3f3-d82362d6fd75
|
||||
|
||||
@@ -14,7 +14,7 @@ tags:
|
||||
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -22,7 +22,8 @@ This search looks for EC2 instances being created with previously unseen AMIs.
|
||||
|
||||
- **Type**: [Anomaly](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**:
|
||||
|
||||
|
||||
- **Last Updated**: 2018-03-12
|
||||
- **Author**: David Dorsey, Splunk
|
||||
- **ID**: 347ec301-601b-48b9-81aa-9ddf9c829dd3
|
||||
|
||||
@@ -17,7 +17,7 @@ tags:
|
||||
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -25,7 +25,8 @@ This search looks for AWS provisioning activities from previously unseen cities.
|
||||
|
||||
- **Type**: [Anomaly](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**:
|
||||
|
||||
|
||||
- **Last Updated**: 2018-03-16
|
||||
- **Author**: David Dorsey, Splunk
|
||||
- **ID**: 344a1778-0b25-490c-adb1-de8beddf59cd
|
||||
|
||||
@@ -17,7 +17,7 @@ tags:
|
||||
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -25,7 +25,8 @@ This search looks for AWS provisioning activities from previously unseen countri
|
||||
|
||||
- **Type**: [Anomaly](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**:
|
||||
|
||||
|
||||
- **Last Updated**: 2018-03-16
|
||||
- **Author**: David Dorsey, Splunk
|
||||
- **ID**: ceb8d3d8-06cb-49eb-beaf-829526e33ff0
|
||||
|
||||
@@ -14,7 +14,7 @@ tags:
|
||||
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -22,7 +22,8 @@ This search looks for AWS provisioning activities from previously unseen IP addr
|
||||
|
||||
- **Type**: [Anomaly](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**:
|
||||
|
||||
|
||||
- **Last Updated**: 2018-03-16
|
||||
- **Author**: David Dorsey, Splunk
|
||||
- **ID**: 42e15012-ac14-4801-94f4-f1acbe64880b
|
||||
|
||||
@@ -17,7 +17,7 @@ tags:
|
||||
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -25,7 +25,8 @@ This search looks for AWS provisioning activities from previously unseen regions
|
||||
|
||||
- **Type**: [Anomaly](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**:
|
||||
|
||||
|
||||
- **Last Updated**: 2018-03-16
|
||||
- **Author**: David Dorsey, Splunk
|
||||
- **ID**: 7971d3df-da82-4648-a6e5-b5637bea5253
|
||||
|
||||
@@ -20,7 +20,7 @@ tags:
|
||||
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -28,7 +28,8 @@ This search detects new API calls that have either never been seen before or tha
|
||||
|
||||
- **Type**: [Anomaly](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**:
|
||||
|
||||
|
||||
- **Last Updated**: 2018-04-16
|
||||
- **Author**: Bhavin Patel, Splunk
|
||||
- **ID**: 22773e84-bac0-4595-b086-20d3f335b4f1
|
||||
|
||||
@@ -20,7 +20,7 @@ tags:
|
||||
|
||||
|
||||
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_us/cyber-security.html){: .btn .btn--success}
|
||||
[Try in Splunk Security Cloud](https://www.splunk.com/en_splunk_app_enrichmentus/cyber-security.html){: .btn .btn--success}
|
||||
|
||||
#### Description
|
||||
|
||||
@@ -28,7 +28,8 @@ This search will detect users creating spikes in API activity related to securit
|
||||
|
||||
- **Type**: [Anomaly](https://github.com/splunk/security_content/wiki/object-Analytic-Types)
|
||||
- **Product**: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud
|
||||
- **Datamodel**:
|
||||
|
||||
|
||||
- **Last Updated**: 2018-04-18
|
||||
- **Author**: Bhavin Patel, Splunk
|
||||
- **ID**: ada0f478-84a8-4641-a3f1-e32372d4bd53
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user