Skip to content

Commit cc74c42

Browse files
authored
Merge pull request #3545 from splunk/fix-issues-june25
Fix Issues For v5.7
2 parents 46c079b + b849dd2 commit cc74c42

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

detections/cloud/o365_concurrent_sessions_from_different_ips.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: O365 Concurrent Sessions From Different Ips
22
id: 58e034de-1f87-4812-9dc3-a4f68c7db930
3-
version: 7
4-
date: '2025-05-02'
3+
version: 8
4+
date: '2025-06-02'
55
author: Mauricio Velazco, Splunk
66
status: production
77
type: TTP
@@ -17,7 +17,8 @@ data_source:
1717
- O365 UserLoggedIn
1818
search: '`o365_management_activity` Workload=AzureActiveDirectory Operation=UserLoggedIn
1919
| fillnull
20-
| stats count min(_time) as firstTime max(_time) as lastTime values(src) as src by signature dest user vendor_account vendor_product
20+
| stats count min(_time) as firstTime max(_time) as lastTime values(src) as src
21+
by signature dest user vendor_account vendor_product SessionId
2122
| where mvcount(src) > 1
2223
| `security_content_ctime(firstTime)`
2324
| `security_content_ctime(lastTime)`

detections/endpoint/windows_sensitive_registry_hive_dump_via_commandline.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Windows Sensitive Registry Hive Dump Via CommandLine
22
id: 5aaff29d-0cce-405b-9ee8-5d06b49d045e
3-
version: 5
4-
date: '2025-05-02'
3+
version: 6
4+
date: '2025-06-02'
55
author: Michael Haag, Patrick Bareiss, Nasreddine Bencherchali, Splunk
66
status: production
77
type: TTP
@@ -20,8 +20,9 @@ data_source:
2020
search: '| tstats `security_content_summariesonly` count min(_time) as firstTime max(_time)
2121
as lastTime from datamodel=Endpoint.Processes where ((`process_reg` Processes.process
2222
IN ("*save*", "*export*")) OR (`process_regedit` Processes.process IN ("*/E *",
23-
"*-E *"))) AND Processes.process IN ("*HKEY_LOCAL_MACHINE*", "*HKLM*") AND Processes.process
24-
IN ("*SAM*", "*System*", "*Security*") by Processes.action Processes.dest Processes.original_file_name
23+
"*-E *"))) AND Processes.process IN ("*HKEY_LOCAL_MACHINE\\SAM*", "*HKEY_LOCAL_MACHINE\\System*",
24+
"*HKEY_LOCAL_MACHINE\\Security*", "*HKLM\\SAM*", "*HKLM\\System*", "*HKLM\\Security*")
25+
by Processes.action Processes.dest Processes.original_file_name
2526
Processes.parent_process Processes.parent_process_exec Processes.parent_process_guid
2627
Processes.parent_process_id Processes.parent_process_name Processes.parent_process_path
2728
Processes.process Processes.process_exec Processes.process_guid Processes.process_hash

0 commit comments

Comments
 (0)