Skip to content

Commit d5981ab

Browse files
authored
Merge pull request #1980 from MicrosoftDocs/main
publishing MDE urgent updates
2 parents 404ee43 + 4f4ab3b commit d5981ab

File tree

1 file changed

+69
-4
lines changed

1 file changed

+69
-4
lines changed

defender-endpoint/evaluate-exploit-protection.md

Lines changed: 69 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.collection:
1515
- tier2
1616
- mde-asr
1717
search.appverid: met150
18-
ms.date: 11/15/2024
18+
ms.date: 11/21/2024
1919
---
2020

2121
# Evaluate exploit protection
@@ -37,7 +37,7 @@ In audit, you can see how mitigation works for certain apps in a test environmen
3737

3838
Exploit protection mitigations work at a low level in the operating system, and some kinds of software that perform similar low-level operations might have compatibility issues when they're configured to be protected by using exploit protection.
3939

40-
#### What kinds of Software shouldn't be protected by exploit protection?
40+
#### What kinds of software shouldn't be protected by exploit protection?
4141

4242
- Anti-malware and intrusion prevention or detection software
4343
- Debuggers
@@ -55,6 +55,40 @@ Services
5555
- System services
5656
- Network services
5757

58+
## Exploit protection mitigations enabled by default
59+
60+
| Mitigation | Enabled by default |
61+
| -------- | -------- |
62+
| Data Execution Prevention (DEP) | 64-bit and 32-bit applications |
63+
| Validate exception chains (SEHOP) | 64-bit applications |
64+
| Validate heap integrity | 64-bit and 32-bit applications |
65+
66+
## Deprecated "Program settings" mitigations
67+
68+
| “Program settings” mitigations | Reason |
69+
| -------- | -------- |
70+
| Export address filtering (EAF) | Application compatibility issues |
71+
| Import address filtering (IAF) | Application compatibility issues |
72+
| Simulate execution (SimExec) | Replaced with Arbitrary Code Guard (ACG) |
73+
| Validate API invocation (CallerCheck) | Replaced with Arbitrary Code Guard (ACG) |
74+
| Validate stack integrity (StackPivot) | Replaced with Arbitrary Code Guard (ACG) |
75+
76+
## Office application best practices
77+
78+
Instead of using Exploit Protection for Office applications such as Outlook, Word, Excel, PowerPoint, and OneNote, consider using a more modern approach to prevent their misuse: Attack Surface Reduction rules (ASR rules):
79+
80+
- [Block executable content from email client and webmail ](attack-surface-reduction-rules-reference.md#block-executable-content-from-email-client-and-webmail)
81+
- [Block Office applications from creating executable content](attack-surface-reduction-rules-reference.md#block-office-applications-from-creating-executable-content)
82+
- [Block all Office applications from creating child processes](attack-surface-reduction-rules-reference.md#block-all-office-applications-from-creating-child-processes)
83+
- [Block Office communication application from creating child processes](attack-surface-reduction-rules-reference.md#block-office-communication-application-from-creating-child-processes)
84+
- [Block Office applications from injecting code into other processes](attack-surface-reduction-rules-reference.md#block-office-applications-from-injecting-code-into-other-processes)
85+
- [Block execution of potentially obfuscated scripts](attack-surface-reduction-rules-reference.md#block-execution-of-potentially-obfuscated-scripts)
86+
- [Block Win32 API calls from Office macros](attack-surface-reduction-rules-reference.md#block-win32-api-calls-from-office-macros)
87+
88+
For Adobe Reader use the following ASR rule:
89+
90+
[Block Adobe Reader from creating child processes](attack-surface-reduction-rules-reference.md#block-adobe-reader-from-creating-child-processes)
91+
5892
## Application compatibility list
5993

6094
The following table lists specific products that have compatibility issues with the mitigations that are included in exploit protection. You must disable specific incompatible mitigations if you want to protect the product by using exploit protection. Be aware that this list takes into consideration the default settings for the latest versions of the product. Compatibility issues can introduced when you apply certain add-ins or other components to the standard software.
@@ -69,7 +103,7 @@ The following table lists specific products that have compatibility issues with
69103
| DropBox | EAF |
70104
| Excel Power Query, Power View, Power Map and PowerPivot | EAF |
71105
| Google Chrome | EAF+ |
72-
| Immidio Flex+ | Cell 4 |
106+
| Immidio Flex+ | EAF |
73107
| Microsoft Office Web Components (OWC) | System DEP=AlwaysOn |
74108
| Microsoft PowerPoint | EAF |
75109
| Microsoft Teams | EAF+ |
@@ -82,7 +116,38 @@ The following table lists specific products that have compatibility issues with
82116

83117
ǂ EMET mitigations might be incompatible with Oracle Java when they're run by using settings that reserve a large chunk of memory for the virtual machine (that is, by using the -Xms option).
84118

85-
## Enable exploit protection for testing
119+
## Enable exploit protection system settings for testing
120+
121+
These Exploit Protection system settings are enabled by default on Windows 10 and later, Windows Server 2019 and later, and on Windows Server version 1803 core edition and later.
122+
123+
| System settings | Setting |
124+
| -------- | -------- |
125+
| Control flow guard (CFG) | Use default (On) |
126+
| Data Execution Prevention (DEP) | Use default (On) |
127+
| Force randomization for images (Mandatory ASRL) | Use default (On) |
128+
| Randomize memory allocations (Bottom-up ASRL) | Use default (On) |
129+
| High-entropy ASRL | Use default (On) |
130+
| Validate exception chains (SEHOP) | Use default (On) |
131+
132+
The xml sample is available below
133+
134+
```
135+
<?xml version="1.0" encoding="UTF-8"?>
136+
<MitigationPolicy>
137+
<SystemConfig>
138+
<DEP Enable="true" EmulateAtlThunks="false" />
139+
<ASLR ForceRelocateImages="true" RequireInfo="false" BottomUp="true" HighEntropy="true" />
140+
<ControlFlowGuard Enable="true" SuppressExports="false" />
141+
<SEHOP Enable="true" TelemetryOnly="false" />
142+
<Heap TerminateOnError="true" />
143+
</SystemConfig>
144+
</MitigationPolicy>
145+
```
146+
147+
## Enable exploit protection program settings for testing
148+
149+
> [!TIP]
150+
> We highly recommend reviewing the modern approach for vulnerability mitigations, which is to use [Attack Surface Reduction rules (ASR rules)](attack-surface-reduction.md).
86151
87152
You can set mitigations in a testing mode for specific programs by using the Windows Security app or Windows PowerShell.
88153

0 commit comments

Comments
 (0)