Detection rules › Elastic
NetSupport Execution form unusual Path
Identifies a suspicious execution of NetSupport remote access software from non-default paths. Adversaries may abuse the NetSupport RMM software to control a target victim machine.
MITRE ATT&CK coverage
| Tactic | Techniques |
|---|---|
| Command & Control |
Rule body
[rule]
description = """
Identifies a suspicious execution of NetSupport remote access software from non-default paths. Adversaries may abuse the
NetSupport RMM software to control a target victim machine.
"""
id = "f36c407e-27c1-4682-a322-73dd0cddf29d"
license = "Elastic License v2"
name = "NetSupport Execution form unusual Path"
os_list = ["windows"]
reference = ["https://www.netsupportsoftware.com/"]
version = "1.0.5"
query = '''
process where process.pe.original_file_name : "client??.exe" and
process.code_signature.subject_name : ("NetSupport Ltd", "NETSUPPORT LTD.") and
not process.executable : ("?:\\Program Files\\NetSupport*.exe", "?:\\Program Files (x86)\\NetSupport*.exe") and
not process.parent.executable : ("?:\\Program Files\\NetSupport*.exe", "?:\\Program Files (x86)\\NetSupport*.exe")
'''
min_endpoint_version = "8.4.0"
[[actions]]
action = "kill_process"
field = "process.entity_id"
state = 0
tree = true
[[optional_actions]]
action = "rollback"
field = "process.entity_id"
state = 0
[[threat]]
framework = "MITRE ATT&CK"
[[threat.technique]]
id = "T1219"
name = "Remote Access Tools"
reference = "https://attack.mitre.org/techniques/T1219/"
[threat.tactic]
id = "TA0011"
name = "Command and Control"
reference = "https://attack.mitre.org/tactics/TA0011/"
[internal]
min_endpoint_version = "8.4.0"
Stages and Predicates
Stage 1: process
process where process.pe.original_file_name : "client??.exe" and
process.code_signature.subject_name : ("NetSupport Ltd", "NETSUPPORT LTD.") and
not process.executable : ("?:\\Program Files\\NetSupport*.exe", "?:\\Program Files (x86)\\NetSupport*.exe") and
not process.parent.executable : ("?:\\Program Files\\NetSupport*.exe", "?:\\Program Files (x86)\\NetSupport*.exe")
Exclusions
The rule actively suppresses these predicates.
| Field | Kind | Excluded values | Search |
|---|---|---|---|
process.executable | wildcard | ?:\Program Files\NetSupport*.exe, ?:\Program Files (x86)\NetSupport*.exe | excludes:process.executable field:"process.executable" value:"?:\Program Files\NetSupport*.exe" field:"process.executable" value:"?:\Program Files (x86)\NetSupport*.exe" |
process.parent.executable | wildcard | ?:\Program Files\NetSupport*.exe, ?:\Program Files (x86)\NetSupport*.exe | excludes:process.parent.executable field:"process.parent.executable" value:"?:\Program Files\NetSupport*.exe" field:"process.parent.executable" value:"?:\Program Files (x86)\NetSupport*.exe" |
Indicators
These rows show field, operator, and value matches.
| Field | Kind | Values | Search |
|---|---|---|---|
process.code_signature.subject_name | wildcard |
| field:"Signature" kind:wildcard |
process.pe.original_file_name | wildcard |
| field:"OriginalFileName" kind:wildcard value:"client??.exe" |