You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: detections/deprecated/windows_remote_access_software_hunt.yml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
name: Windows Remote Access Software Hunt
2
2
id: 8bd22c9f-05a2-4db1-b131-29271f28cb0a
3
-
version: 7
4
-
date: '2025-04-18'
3
+
version: 8
4
+
date: '2025-04-30'
5
5
author: Michael Haag, Splunk
6
-
status: production
6
+
status: deprecated
7
7
type: Hunting
8
-
description: The following analytic identifies the use of remote access software within
8
+
description: This search is deprecated in favor of the new detection - Detect Remote Access Software Usage Process. The following analytic identifies the use of remote access software within
9
9
the environment. It leverages data from Endpoint Detection and Response (EDR) agents,
10
10
focusing on process execution logs. This detection is significant as unauthorized
11
11
remote access tools can be used by adversaries to maintain persistent access to
Copy file name to clipboardExpand all lines: detections/endpoint/detect_remote_access_software_usage_process.yml
+24-17Lines changed: 24 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -1,34 +1,38 @@
1
1
name: Detect Remote Access Software Usage Process
2
2
id: ffd5e001-2e34-48f4-97a2-26dc4bb08178
3
-
version: 8
4
-
date: '2025-04-18'
5
-
author: Steven Dick
3
+
version: 9
4
+
date: '2025-04-30'
5
+
author: Steven Dick, Sebastian Wurl, Splunk Community
6
6
status: production
7
7
type: Anomaly
8
8
description: The following analytic detects the execution of known remote access software
9
9
within the environment. It leverages data from Endpoint Detection and Response (EDR)
10
10
agents, focusing on process names and parent processes mapped to the Endpoint data
11
-
model. This activity is significant as adversaries often use remote access tools
12
-
like AnyDesk, GoToMyPC, LogMeIn, and TeamViewer to maintain unauthorized access.
11
+
model. We then compare with with a list of known remote access software shipped as a lookup file - remote_access_software. This activity is significant as adversaries often use remote access tools like AnyDesk, GoToMyPC, LogMeIn, and TeamViewer to maintain unauthorized access.
13
12
If confirmed malicious, this could allow attackers to control systems remotely,
14
13
exfiltrate data, or deploy additional malware, posing a severe threat to the organization's
15
14
security.
16
15
data_source:
17
16
- Sysmon EventID 1
18
17
- Windows Event Log Security 4688
19
18
- CrowdStrike ProcessRollup2
20
-
search: '| tstats `security_content_summariesonly` count min(_time) as firstTime max(_time)
21
-
as lastTime values(Processes.parent_process) as parent_process from datamodel=Endpoint.Processes
22
-
where Processes.dest!=unknown Processes.process!=unknown by Processes.action Processes.dest
0 commit comments