SigmaHQ/rules/windows/builtin/win_net_ntlm_downgrade.yml

56 lines
1.4 KiB
YAML
Raw Normal View History

2018-03-20 14:03:55 +00:00
action: global
title: NetNTLM Downgrade Attack
2019-11-12 22:12:27 +00:00
id: d67572a0-e2ec-45d6-b8db-c100d14b8ef2
description: Detects NetNTLM downgrade attack
2019-11-12 22:12:27 +00:00
references:
- https://www.optiv.com/blog/post-exploitation-using-netntlm-downgrade-attacks
author: Florian Roth, wagga
date: 2018/03/20
modified: 2021/06/27
2018-07-24 05:50:32 +00:00
tags:
- attack.defense_evasion
- attack.t1089 # an old one
- attack.t1562.001
- attack.t1112
2018-03-20 14:03:55 +00:00
detection:
condition: 1 of them
falsepositives:
- Unknown
level: critical
---
logsource:
product: windows
category: registry_event
detection:
2018-03-20 14:03:55 +00:00
selection1:
2020-10-28 00:59:49 +00:00
TargetObject|contains|all:
- 'SYSTEM\'
- 'ControlSet'
- '\Control\Lsa'
TargetObject|endswith:
- '\lmcompatibilitylevel'
- '\NtlmMinClientSec'
- '\RestrictSendingNTLMTraffic'
2018-03-20 14:03:55 +00:00
---
# Windows Security Eventlog: Process Creation with Full Command Line
logsource:
product: windows
service: security
definition: 'Requirements: Audit Policy : Object Access > Audit Registry (Success)'
2018-03-20 14:03:55 +00:00
detection:
2021-02-24 12:44:13 +00:00
selection:
2018-03-20 14:03:55 +00:00
EventID: 4657
ObjectName|contains|all:
- '\REGISTRY\MACHINE\SYSTEM'
- 'ControlSet'
- '\Control\Lsa'
2018-03-20 14:03:55 +00:00
ObjectValueName:
- 'LmCompatibilityLevel'
- 'NtlmMinClientSec'
- 'RestrictSendingNTLMTraffic'
2021-02-24 12:44:13 +00:00
condition: selection
falsepositives:
- Unknown
level: critical