mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-27 20:57:23 +00:00
Task ID 23142312
Added "well-known root cert types" info to the document.
This commit is contained in:
parent
a85b27f4bf
commit
8faa81c72b
@ -18,7 +18,7 @@ ms.date: 8/27/2020
|
||||
ms.technology: mde
|
||||
---
|
||||
|
||||
## Understanding Application Control event tags
|
||||
# Understanding Application Control event tags
|
||||
|
||||
Windows Defender Application Control (WDAC) events include a number of fields which provide helpful troubleshooting information to figure out exactly what an event means. Below, we have documented the values and meanings for a few useful event tags.
|
||||
|
||||
@ -91,3 +91,32 @@ Represents why verification failed, or if it succeeded.
|
||||
| 26 | Explicitly denied by WADC policy |
|
||||
| 27 | The signing chain appears to be tampered/invalid |
|
||||
| 28 | Resource page hash mismatch |
|
||||
|
||||
## Microsoft Root CAs trusted by Windows
|
||||
|
||||
The rule means trust anything signed by a cert that chains to this root CA. Enums without values start at 0, and increment by 1 as you go down the below list.
|
||||
|
||||
typedef enum _MINCRYPT_KNOWN_ROOT_ID {
|
||||
MincryptKnownRootNone, <mark><-- 0</mark><br>
|
||||
MincryptKnownRootUnknown,<br>
|
||||
MincryptKnownRootSelfsigned,<br>
|
||||
MincryptKnownRootMicrosoftAuthenticodeRoot,<br>
|
||||
MincryptKnownRootMicrosoftProductRoot1997,<br>
|
||||
MincryptKnownRootMicrosoftProductRoot2001,<br>
|
||||
MincryptKnownRootMicrosoftProductRoot2010,<br>
|
||||
MincryptKnownRootMicrosoftStandardRoot2011,<br>
|
||||
MincryptKnownRootMicrosoftCodeVerificationRoot2006,<br>
|
||||
MincryptKnownRootMicrosoftTestRoot1999,<br>
|
||||
MincryptKnownRootMicrosoftTestRoot2010,<br>
|
||||
MincryptKnownRootMicrosoftDMDTestRoot2005,<br>
|
||||
MincryptKnownRootMicrosoftDMDRoot2005,<br>
|
||||
MincryptKnownRootMicrosoftDMDPreviewRoot2005,<br>
|
||||
MincryptKnownRootMicrosoftFlightRoot2014,<br>
|
||||
MincryptKnownRootMicrosoftThirdPartyMarketplaceRoot,<br>
|
||||
MincryptKnownRootMicrosoftEccTestingRootCa2017,<br>
|
||||
MincryptKnownRootMicrosoftEccDevelopmentRootCa2018,<br>
|
||||
MincryptKnownRootMicrosoftEccProductRootCa2018,<br>
|
||||
MincryptKnownRootMicrosoftEccDevicesRootCa2017,<br>
|
||||
} MINCRYPT_KNOWN_ROOT_ID, *PMINCRYPT_KNOWN_ROOT_ID;<br>
|
||||
|
||||
For well-known roots, the TBS hashes for the certificates are baked into the code for WDAC. For example, they don’t need to be listed as TBS hashes in the policy file.
|
Loading…
x
Reference in New Issue
Block a user