-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create identify-non-compliant-controls-with-relevant-remediation-acti…
…ons.md
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
MDVM/identify-non-compliant-controls-with-relevant-remediation-actions.md
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,23 @@ | ||
# Identify non-compliant controls with relevant remediation actions | ||
|
||
# Description | ||
|
||
The following query leverages DeviceBaselineComplianceAssessment and DeviceBaselineComplianceAssessmentKB. You may choose a baseline assessment profile and then focus on controls that have been found not to be compliant with their relevant remediation options. | ||
|
||
### Microsoft Defender XDR | ||
``` | ||
let Profile = ""; // Insert ProfileId here | ||
DeviceBaselineComplianceAssessment | ||
| where ProfileId == Profile | ||
| where IsCompliant == "0" | ||
| where IsExempt == "0" | ||
| join kind=inner ( | ||
DeviceBaselineComplianceAssessmentKB | ||
) on ConfigurationId | ||
| summarize by ConfigurationId, ConfigurationName, ConfigurationDescription, ConfigurationCategory, RemediationOptions, ConfigurationBenchmark | ||
``` | ||
|
||
### Versioning | ||
| Version | Date | Comments | | ||
| ------------- |---------------| ---------------------------------------| | ||
| 1.0 | 05/12/2024 | Initial publish | |