Files
blue-team-tools/rules/windows/process_creation/sysmon_abusing_debug_privilege.yml
T

48 lines
1.2 KiB
YAML
Raw Normal View History

2020-10-07 16:52:19 +03:00
title: Abused Debug Privilege by Arbitrary Parent Processes
id: d522eca2-2973-4391-a3e0-ef0374321dae
2021-11-27 11:33:14 +01:00
status: test
2020-10-07 16:52:19 +03:00
description: Detection of unusual child processes by different system processes
2021-11-27 11:33:14 +01:00
author: 'Semanur Guneysu @semanurtg, oscd.community'
2020-10-07 16:52:19 +03:00
references:
2021-11-27 11:33:14 +01:00
- https://image.slidesharecdn.com/kheirkhabarovoffzonefinal-181117201458/95/hunting-for-privilege-escalation-in-windows-environment-74-638.jpg
2020-10-28 20:11:29 +03:00
date: 2020/10/28
2021-11-27 11:33:14 +01:00
modified: 2021/11/27
2020-10-07 16:52:19 +03:00
logsource:
2021-11-27 11:33:14 +01:00
product: windows
category: process_creation
2020-10-07 16:52:19 +03:00
detection:
2021-11-27 11:33:14 +01:00
selection1:
ParentImage|endswith:
- '\winlogon.exe'
- '\services.exe'
- '\lsass.exe'
- '\csrss.exe'
- '\smss.exe'
- '\wininit.exe'
- '\spoolsv.exe'
- '\searchindexer.exe'
selection2:
Image|endswith:
- '\powershell.exe'
- '\cmd.exe'
selection3:
User|startswith:
- 'NT AUTHORITY\SYSTEM'
- 'AUTORITE NT\Sys' # French language settings
filter:
CommandLine|contains|all:
- ' route '
- ' ADD '
condition: selection1 and selection2 and selection3 and not filter
2020-10-07 16:52:19 +03:00
fields:
2021-11-27 11:33:14 +01:00
- ParentImage
- Image
- User
- CommandLine
2020-10-07 16:52:19 +03:00
falsepositives:
2021-11-27 11:33:14 +01:00
- unknown
2020-10-07 16:52:19 +03:00
level: high
2021-11-27 11:33:14 +01:00
tags:
- attack.privilege_escalation
- attack.t1548