Detection rules › Sigma
CVE-2023-23397 Exploitation Attempt
Detects outlook initiating connection to a WebDAV or SMB share, which could be a sign of CVE-2023-23397 exploitation.
MITRE ATT&CK coverage
| Tactic | Techniques |
|---|---|
| Initial Access | No specific technique |
| Credential Access | No specific technique |
Event coverage
| Provider | Event | Title |
|---|---|---|
| Security-Auditing | Event ID 4656 | A handle to an object was requested. |
| Security-Auditing | Event ID 4663 | An attempt was made to access an object. |
Rule body yaml
title: CVE-2023-23397 Exploitation Attempt
id: 73c59189-6a6d-4b9f-a748-8f6f9bbed75c
status: test
description: Detects outlook initiating connection to a WebDAV or SMB share, which could be a sign of CVE-2023-23397 exploitation.
author: Robert Lee @quantum_cookie
date: 2023-03-16
modified: 2023-03-22
references:
- https://www.trustedsec.com/blog/critical-outlook-vulnerability-in-depth-technical-analysis-and-recommendations-cve-2023-23397/
tags:
- attack.credential-access
- attack.initial-access
- cve.2023-23397
- detection.emerging-threats
logsource:
service: security
product: windows
definition: 'Requirements: SACLs must be enabled for "Query Value" on the registry keys used in this rule'
detection:
selection:
EventID:
- 4656
- 4663
ProcessName|endswith: '\OUTLOOK.EXE'
# Example: \REGISTRY\MACHINE\SYSTEM\CurrentControlSet001\Services\WebClient\NetworkProvider
ObjectName|contains|all:
- '\REGISTRY\MACHINE\SYSTEM'
- 'Services\'
ObjectName|endswith:
- 'WebClient\NetworkProvider'
- 'LanmanWorkstation\NetworkProvider'
AccessList|contains: '%%4416' # "Query key value"
condition: selection
falsepositives:
- Searchprotocolhost.exe likes to query these registry keys. To avoid false postives, it's better to filter out those events before they reach the SIEM
level: critical
Stages and Predicates
Stage 0: condition
selectionStage 1: selection
selection:
EventID:
- 4656
- 4663
ProcessName|endswith: '\OUTLOOK.EXE'
ObjectName|contains|all:
- '\REGISTRY\MACHINE\SYSTEM'
- 'Services\'
ObjectName|endswith:
- 'WebClient\NetworkProvider'
- 'LanmanWorkstation\NetworkProvider'
AccessList|contains: '%%4416'
Indicators
Each row is a field, operator, and value that the rule matches. The corpus column counts how many other rules in the catalog look for the same combination: high numbers point to widely-used, community-vetted indicators. Blank or 1 shows that the indicator is specific to this rule.
| Field | Kind | Values |
|---|---|---|
AccessList | match |
|
ObjectName | ends_with |
|
ObjectName | match |
|
ProcessName | ends_with |
|