mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-06 17:35:19 +00:00
Merge branch 'patch-2' of https://github.com/neu5ron/sigma into neu5ron-patch-2
This commit is contained in:
commit
6dd4b4775a
39
rules/windows/builtin/win_susp_bcdedit.yml
Normal file
39
rules/windows/builtin/win_susp_bcdedit.yml
Normal file
@ -0,0 +1,39 @@
|
||||
---
|
||||
action: global
|
||||
title: Possible Ransomware or unauthorized MBR modifications
|
||||
status: experimental
|
||||
description: Detects, possibly, malicious unauthorized usage of bcdedit.exe
|
||||
references:
|
||||
- https://docs.microsoft.com/en-us/windows-hardware/drivers/devtest/bcdedit--set
|
||||
author: @neu5ron
|
||||
date: 2019/02/07
|
||||
detection:
|
||||
condition: selection
|
||||
level: medium
|
||||
---
|
||||
# Windows Security Eventlog: Process Creation with Full Command Line
|
||||
logsource:
|
||||
product: windows
|
||||
service: security
|
||||
definition: 'Requirements: Audit Policy : Detailed Tracking > Audit Process creation, Group Policy : Administrative Templates\System\Audit Process Creation'
|
||||
detection:
|
||||
selection:
|
||||
EventID: 4688
|
||||
NewProcessName: '*\fsutil.exe'
|
||||
ProcessCommandLine:
|
||||
- '*delete*'
|
||||
- '*deletevalue*'
|
||||
- '*import*'
|
||||
---
|
||||
# Sysmon: Process Creation (ID 1)
|
||||
logsource:
|
||||
product: windows
|
||||
service: sysmon
|
||||
detection:
|
||||
selection:
|
||||
EventID: 1
|
||||
Image: '*\fsutil.exe'
|
||||
ProcessCommandLine:
|
||||
- '*delete*'
|
||||
- '*deletevalue*'
|
||||
- '*import*'
|
Loading…
Reference in New Issue
Block a user