-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9162 from kfriede/master
Added analytic rule for vulnerability of CVE-2023-4863
- Loading branch information
Showing
1 changed file
with
72 additions
and
0 deletions.
There are no files selected for viewing
72 changes: 72 additions & 0 deletions
72
Solutions/Microsoft 365 Defender/Analytic Rules/PossibleWebpBufferOverflow.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
id: 26e81021-2de6-4442-a74a-a77885e96911 | ||
name: Execution of software vulnerable to webp buffer overflow of CVE-2023-4863 | ||
description: | | ||
'This query looks at device, process, and network events from Defender for Endpoint that may be vulnerable to buffer overflow defined in CVE-2023-4863. Results are not an indicator of malicious activity.' | ||
severity: Informational | ||
status: Available | ||
kind: Scheduled | ||
queryFrequency: 1h | ||
queryPeriod: 1h | ||
triggerOperator: gt | ||
triggerThreshold: 0 | ||
tactics: | ||
- Execution | ||
relevantTechniques: | ||
- T1203 | ||
tags: | ||
- CVE-2023-4863 | ||
requiredDataConnectors: | ||
- connectorId: MicrosoftThreatProtection | ||
dataTypes: | ||
- DeviceProcessEvents | ||
- DeviceNetworkEvents | ||
- DeviceEvents | ||
- DeviceTvmSoftwareVulnerabilities | ||
query: |- | ||
//CVE-2023-4863 Process activity with .webp files on devices where CVE-2023-4863 is unpatched | ||
//This query shows all process activity with .webp files on vulnerable machines and is not an indicator of malicious activity | ||
let VulnDevices = DeviceTvmSoftwareVulnerabilities | ||
| where CveId == "CVE-2023-4863" | ||
| distinct DeviceId; | ||
union DeviceProcessEvents, DeviceNetworkEvents, DeviceEvents | ||
| where DeviceId in (VulnDevices) and InitiatingProcessCommandLine has(".webp") or ProcessCommandLine has(".webp") | ||
entityMappings: | ||
- entityType: Host | ||
fieldMappings: | ||
- identifier: HostName | ||
columnName: DeviceName | ||
- entityType: Account | ||
fieldMappings: | ||
- identifier: FullName | ||
columnName: AccountName | ||
- entityType: Process | ||
fieldMappings: | ||
- identifier: ProcessId | ||
columnName: ProcessId | ||
- entityType: Process | ||
fieldMappings: | ||
- identifier: ProcessId | ||
columnName: InitiatingProcessId | ||
- entityType: Process | ||
fieldMappings: | ||
- identifier: CommandLine | ||
columnName: ProcessCommandLine | ||
suppressionEnabled: false | ||
incidentConfiguration: | ||
createIncident: false | ||
groupingConfiguration: | ||
enabled: false | ||
reopenClosedIncident: false | ||
lookbackDuration: 5h | ||
matchingMethod: Selected | ||
groupByEntities: | ||
- Account | ||
groupByAlertDetails: [] | ||
groupByCustomDetails: [] | ||
suppressionDuration: 5h | ||
alertDetailsOverride: | ||
alertDisplayNameFormat: Possible exploitation of CVE-2023-4863 | ||
alertDynamicProperties: [] | ||
eventGroupingSettings: | ||
aggregationKind: SingleAlert | ||
version: 1.0.0 |