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

35 lines
1.0 KiB
YAML
Raw Normal View History

2019-10-28 11:59:49 +01:00
title: Net.exe User Account Creation
2019-12-19 23:56:36 +01:00
id: cd219ff3-fa99-45d4-8380-a7d15116c6dc
2019-10-28 11:59:49 +01:00
status: experimental
2019-11-11 22:00:46 +03:00
description: Identifies creation of local users via the net.exe command
2019-10-28 11:59:49 +01:00
references:
- https://eqllib.readthedocs.io/en/latest/analytics/014c3f51-89c6-40f1-ac9c-5688f26090ab.html
2019-11-11 22:00:46 +03:00
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1136/T1136.yaml
2019-10-28 11:59:49 +01:00
author: Endgame, JHasenbusch (adapted to sigma for oscd.community)
2019-11-11 22:35:43 +03:00
date: 2018/10/30
2020-09-02 02:34:34 +02:00
modified: 2020/09/01
2019-10-28 11:59:49 +01:00
tags:
2019-12-15 00:17:22 +01:00
- attack.persistence
2020-09-02 02:34:34 +02:00
- attack.t1136 # an old one
- attack.t1136.001
2019-10-28 11:59:49 +01:00
logsource:
category: process_creation
product: windows
detection:
selection:
2019-11-11 22:00:46 +03:00
Image|endswith:
- '\net.exe'
- '\net1.exe'
CommandLine|contains|all:
- 'user'
- 'add'
2019-10-28 11:59:49 +01:00
condition: selection
2020-01-11 00:11:27 +01:00
fields:
- ComputerName
- User
- CommandLine
2019-10-28 11:59:49 +01:00
falsepositives:
- Legit user creation
2019-11-11 22:00:46 +03:00
- Better use event ids for user creation rather than command line rules
2020-01-19 22:34:16 +01:00
level: medium