Detection rules › Sigma

Service permissions hijacked for privileges abuse (service)

Status
experimental
Severity
high
Log source
product windows, category process_creation
Author
mdecrevoisier
Source
github.com/mdecrevoisier/SIGMA-detection-rules

Detects scenarios where an attacker modify the permissions of a service in order to abuse its privileges

MITRE ATT&CK coverage

Event coverage

Rule body yaml

title: Service permissions hijacked for privileges abuse (service)
description: Detects scenarios where an attacker modify the permissions of a service in order to abuse its privileges
references:
- https://github.com/mdecrevoisier/EVTX-to-MITRE-Attack/tree/master/TA0003-Persistence/T1543.003-Create%20or%20Modify%20System%20Process-Windows%20Service
- http://woshub.com/set-permissions-on-windows-service/
- https://www.winhelponline.com/blog/view-edit-service-permissions-windows/
- https://decoder.cloud/2019/02/07/demystifying-windows-service-permissions-configuration/
- https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/set-service?view=powershell-7.1
- https://medium.com/r3d-buck3t/abuse-service-registry-acls-windows-privesc-f88079140509
- https://github.com/rohnedwards/PowerShellAccessControl
tags:
- attack.persistence
- attack.t1543.003
- attack.t1574.010
author: mdecrevoisier
status: experimental
logsource:
  product: windows
  category: process_creation
detection:
  selection_sdset: # full command (native commmand): "sc sdset XblGameSave "D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)"
    NewProcessName|endswith: '\sc.exe'
    CommandLine|contains: sdset

  selection_subinACL: # full command (3rd party tool): subinacl.exe /service Spooler /grant=contoso\tuser=PTO
    CommandLine|contains|all:
      #- subinacl # not considered as executable name can be changed
      - 'service'
      - 'grant='

  selection_setACL: # full command (3rd party tool): SetACL.exe -on "schedule" -ot srv -actn list
    CommandLine|contains|all:
      #- setacl # not considered as executable name can be changed
      - 'on'   # object name
      - 'srv'  # object type
      - 'actn' # action

  condition: selection_sdset OR selection_subinACL OR selection_setACL
falsepositives:
- administrator reconfiguring service
level: high

Stages and Predicates

Stage 0: condition

selection_sdset OR selection_subinACL OR selection_setACL

Stage 1: selection_sdset

selection_sdset:
  NewProcessName|endswith: '\sc.exe'
  CommandLine|contains: sdset

Stage 2: selection_subinACL

selection_subinACL:
  CommandLine|contains|all:
    - 'service'
    - 'grant='

Stage 3: selection_setACL

selection_setACL:
  CommandLine|contains|all:
    - 'on'
    - 'srv'
    - 'actn'

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
CommandLinematch
  • actn
  • grant=
  • on
  • sdset corpus 5 (sigma 5)
  • service corpus 5 (sigma 4, splunk 1)
  • srv
NewProcessNameends_with
  • \sc.exe corpus 30 (sigma 30)