Skip to content

Commit 7ac799b

Browse files
authored
Create XDR-Contain-User-Sense.md
1 parent 15f48d2 commit 7ac799b

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

Queries/XDR-Contain-User-Sense.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# XDR-Contain-User-Sense
2+
3+
Microsoft Defender XDR attack disruption can initiate the 'contain user' automated response action. This is based on Microsoft Defender for Endpoint's capability, this response action automatically contains suspicious identities temporarily to help block any lateral movement and remote encryption related to incoming communication with Defender for Endpoint's onboarded devices.
4+
The Minimum Sense Agent version required for the Contain User action to work is v10.8470. This can be checked with the below KQL query.
5+
6+
## Check the Minimum Sense Agent version
7+
8+
```kusto
9+
let MinimumVersion = parse_version("10.8470");
10+
DeviceTvmSoftwareInventory
11+
| where SoftwareName == @"defender_for_endpoint"
12+
| where parse_version(SoftwareVersion) < MinimumVersion
13+
| project DeviceName, OSPlatform, SoftwareName, SoftwareVersion
14+
```
15+
16+
## Hunt Tags
17+
18+
* **Author:** [Nicola Suter](https://nicolasuter.ch)
19+
* **License:** [MIT License](https://github.com/nicolonsky/ITDR/blob/main/LICENSE)
20+
21+
### Additional information
22+
23+
* <https://learn.microsoft.com/en-us/defender-xdr/configure-attack-disruption?source=recommendations#minimum-sense-client-version-mde-client>
24+
25+
### MITRE ATT&CK Tags
26+
27+
* **Tactic:** N/A
28+
* **Technique:**
29+
* N/A

0 commit comments

Comments
 (0)