mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-07 09:48:58 +00:00
31 lines
948 B
YAML
31 lines
948 B
YAML
action: global
|
|
title: NetNTLM Downgrade Attack
|
|
id: d67572a0-e2ec-45d6-b8db-c100d14b8ef2
|
|
description: Detects NetNTLM downgrade attack
|
|
references:
|
|
- https://www.optiv.com/blog/post-exploitation-using-netntlm-downgrade-attacks
|
|
author: Florian Roth
|
|
date: 2018/03/20
|
|
modified: 2021/02/24
|
|
tags:
|
|
- attack.defense_evasion
|
|
- attack.t1089 # an old one
|
|
- attack.t1562.001
|
|
- attack.t1112
|
|
# Windows Security Eventlog: Process Creation with Full Command Line
|
|
logsource:
|
|
product: windows
|
|
service: security
|
|
definition: 'Requirements: Audit Policy : Object Access > Audit Registry (Success)'
|
|
detection:
|
|
selection:
|
|
EventID: 4657
|
|
ObjectName: '\REGISTRY\MACHINE\SYSTEM\\*ControlSet*\Control\Lsa*'
|
|
ObjectValueName:
|
|
- 'LmCompatibilityLevel'
|
|
- 'NtlmMinClientSec'
|
|
- 'RestrictSendingNTLMTraffic'
|
|
condition: selection
|
|
falsepositives:
|
|
- Unknown
|
|
level: critical |