mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-08 02:08:54 +00:00
7602309138
* Converted (to generic sigma) rules * Converter outputs by default with indentation 4
34 lines
953 B
YAML
34 lines
953 B
YAML
title: Net.exe Execution
|
|
status: experimental
|
|
description: Detects execution of Net.exe, whether suspicious or benign.
|
|
references:
|
|
- https://pentest.blog/windows-privilege-escalation-methods-for-pentesters/
|
|
author: Michael Haag, Mark Woan (improvements)
|
|
tags:
|
|
- attack.s0039
|
|
- attack.lateral_movement
|
|
- attack.discovery
|
|
logsource:
|
|
category: process_creation
|
|
product: windows
|
|
detection:
|
|
selection:
|
|
Image:
|
|
- '*\net.exe'
|
|
- '*\net1.exe'
|
|
CommandLine:
|
|
- '* group*'
|
|
- '* localgroup*'
|
|
- '* user*'
|
|
- '* view*'
|
|
- '* share'
|
|
- '* accounts*'
|
|
- '* use*'
|
|
condition: selection
|
|
fields:
|
|
- CommandLine
|
|
- ParentCommandLine
|
|
falsepositives:
|
|
- Will need to be tuned. If using Splunk, I recommend | stats count by Computer,CommandLine following the search for easy hunting by computer/CommandLine.
|
|
level: low
|