Detection rules › Splunk

SimpleHelp Remote Access Tool Execution (Sysmon)

Group by
_time, host
Source
github.com/anvilogic-forge/armory

Threat actors may install remote access tools (RATs) to maintain persistent access to compromised systems. Tools like SimpleHelp or JWrapper Remote Access are often abused for stealthy remote control, masquerading as legitimate IT support tools. This use case detects process creation events with file paths or executable names related to SimpleHelp Remote Access. - LOLRMM

MITRE ATT&CK coverage

TacticTechniques
Command & ControlT1219 Remote Access Tools

References

Event coverage

ProviderEventTitle
SysmonEvent ID 1Process creation

Rule body yaml

id: '44775.89974'
title: SimpleHelp Remote Access Tool Execution
description: Threat actors may install remote access tools (RATs) to maintain persistent
  access to compromised systems. Tools like SimpleHelp or JWrapper Remote Access are
  often abused for stealthy remote control, masquerading as legitimate IT support
  tools. This use case detects process creation events with file paths or executable
  names related to SimpleHelp Remote Access. - LOLRMM
logic_format: Splunk
logic: '`get_endpoint_data` `get_endpoint_data_sysmon` (TERM(EventCode=1) OR "<EventID>1<")
  "JWrapper-Remote" OR "SimpleHelp" OR "SimpleService" OR "SimpleGatewayService" |
  where (match(process_name, "(?i)(Simple(help(customer)?|service|gatewayservice)|remote\saccess|windows\slauncher)\.exe")
  and match(process_path, "(?i)JWrapper-Remote\s+(Access|Support)")) or match(process_name,
  "(?i)Simple(help(customer)?|service|gatewayservice)\.exe") | table _time, host,
  user, signature_id, process, process_name, process_path `group_events("host", 5)` '
techniques:
- command-and-control:remote access software
technique_id: 
- T1219
data_category:
- Windows Sysmon
references:
- https://lolrmm.io/tools/simplehelp
- https://detection.fyi/sigmahq/sigma/windows/process_creation/proc_creation_win_remote_access_tools_simple_help/
- https://simple-help.com/downloads
- https://www.huntress.com/blog/slashandgrab-screen-connect-post-exploitation-in-the-wild-cve-2024-1709-cve-2024-1708

Stages and Predicates

Stage 1: search

search EventCode=1 source="*" source IN ("WinEventLog:Microsoft-Windows-Sysmon/Operational", "XmlWinEventLog:Microsoft-Windows-Sysmon/Operational")

Stage 2: where

where ((process_name="*(?i)(Simple(help(customer)?|service|gatewayservice)|remote\\saccess|windows\\slauncher)\\.exe*" process_path="*(?i)JWrapper-Remote\\s+(Access|Support)*") OR process_name="*(?i)Simple(help(customer)?|service|gatewayservice)\\.exe*")

Stage 3: table

table _time, host, process, process_name, process_path, signature_id, user

Stage 4: bucket

bucket _time

Stage 5: stats

stats BY host, _time

Indicators

Each row is a field, operator, and value that the rule matches. The corpus column counts how many other rules in the catalog look for the same combination: high numbers point to widely-used, community-vetted indicators. Blank or 1 shows that the indicator is specific to this rule.

FieldKindValues
EventCodeeq
  • 1 corpus 237 (splunk 224, kusto 13)
process_namematch
  • "(?i)(Simple(help(customer)?|service|gatewayservice)|remote\saccess|windows\slauncher)\.exe" corpus 2 (splunk 2)
  • "(?i)Simple(help(customer)?|service|gatewayservice)\.exe" corpus 2 (splunk 2)
process_pathmatch
  • "(?i)JWrapper-Remote\s+(Access|Support)" corpus 2 (splunk 2)

Search terms

Bare-string tokens in the SPL search body. Splunk matches each token against _raw (the untyped raw event text) anywhere it appears, not against a specific field. These don't surface in the Indicators table because they aren't predicates on a known field.

StageTerm
1TERM
1"<EventID>1<"
1"JWrapper-Remote"
1"SimpleHelp"
1"SimpleService"
1"SimpleGatewayService"