mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-07 09:48:58 +00:00
75386e6478
Field motifiers added.Filter 3 fixed due to logical error
44 lines
1.2 KiB
YAML
44 lines
1.2 KiB
YAML
title: Abused Debug Privilege by Arbitrary Parent Processes
|
|
id: d522eca2-2973-4391-a3e0-ef0374321dae
|
|
status: experimental
|
|
description: Detection of unusual child processes by different system processes
|
|
references:
|
|
- https://image.slidesharecdn.com/kheirkhabarovoffzonefinal-181117201458/95/hunting-for-privilege-escalation-in-windows-environment-74-638.jpg
|
|
date: 2020/10/07
|
|
tags:
|
|
- attack.privilege_escalation
|
|
author: 'oscd.community, Semanur Guneysu @semanurtg'
|
|
logsource:
|
|
product: windows
|
|
category: process_creation
|
|
detection:
|
|
selection:
|
|
ParentImage|endswith:
|
|
- '\winlogon.exe'
|
|
- '\services.exe'
|
|
- '\lsass.exe'
|
|
- '\csrss.exe'
|
|
- '\smss.exe'
|
|
- '\wininit.exe'
|
|
- '\spoolsv.exe'
|
|
- '\searchindexer.exe'
|
|
filter1:
|
|
Image|endswith:
|
|
- '\powershell.exe'
|
|
- '\cmd.exe'
|
|
filter2:
|
|
User: 'NT AUTHORITY\\SYSTEM'
|
|
filter3:
|
|
CommandLine|contains:
|
|
- 'route'
|
|
- 'ADD'
|
|
condition: selection and filter1 and filter2 and not filter3
|
|
fields:
|
|
- ParentImage
|
|
- Image
|
|
- User
|
|
- CommandLine
|
|
falsepositives:
|
|
- unknown
|
|
level: high
|