SigmaHQ/rules/windows/process_creation/win_net_user_add.yml

30 lines
911 B
YAML
Raw Normal View History

2019-10-28 10:59:49 +00:00
title: Net.exe User Account Creation
status: experimental
2019-11-11 19:00:46 +00:00
description: Identifies creation of local users via the net.exe command
2019-10-28 10:59:49 +00:00
references:
- https://eqllib.readthedocs.io/en/latest/analytics/014c3f51-89c6-40f1-ac9c-5688f26090ab.html
2019-11-11 19:00:46 +00:00
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1136/T1136.yaml
2019-10-28 10:59:49 +00:00
author: Endgame, JHasenbusch (adapted to sigma for oscd.community)
2019-11-11 19:35:43 +00:00
date: 2018/10/30
2019-11-11 19:00:46 +00:00
modified: 2019/11/11
2019-10-28 10:59:49 +00:00
tags:
- attack.persistance
- attack.credential_access
2019-11-10 22:35:51 +00:00
- attack.t1136
2019-10-28 10:59:49 +00:00
logsource:
category: process_creation
product: windows
detection:
selection:
2019-11-11 19:00:46 +00:00
Image|endswith:
- '\net.exe'
- '\net1.exe'
CommandLine|contains|all:
- 'user'
- 'add'
2019-10-28 10:59:49 +00:00
condition: selection
falsepositives:
- Legit user creation
2019-11-11 19:00:46 +00:00
- Better use event ids for user creation rather than command line rules
2019-10-28 10:59:49 +00:00
level: low