SigmaHQ/rules/windows/process_creation/win_net_user_add.yml

35 lines
1.0 KiB
YAML
Raw Normal View History

2019-10-28 10:59:49 +00:00
title: Net.exe User Account Creation
id: cd219ff3-fa99-45d4-8380-a7d15116c6dc
2019-10-28 10:59:49 +00:00
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
2020-09-02 00:34:34 +00:00
modified: 2020/09/01
2019-10-28 10:59:49 +00:00
tags:
2019-12-14 23:17:22 +00:00
- attack.persistence
2020-09-02 00:34:34 +00:00
- attack.t1136 # an old one
- attack.t1136.001
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
fields:
- ComputerName
- User
- CommandLine
2019-10-28 10:59:49 +00:00
falsepositives:
- Legit user creation
2019-11-11 19:00:46 +00:00
- Better use event ids for user creation rather than command line rules
2020-01-19 21:34:16 +00:00
level: medium