// ntddk.h
typedef struct _PROCESS_MITIGATION_PAYLOAD_RESTRICTION_POLICY {
union {
ULONG Flags;
struct {
ULONG EnableExportAddressFilter : 1;
ULONG AuditExportAddressFilter : 1;
ULONG EnableExportAddressFilterPlus : 1;
ULONG AuditExportAddressFilterPlus : 1;
ULONG EnableImportAddressFilter : 1;
ULONG AuditImportAddressFilter : 1;
ULONG EnableRopStackPivot : 1;
ULONG AuditRopStackPivot : 1;
ULONG EnableRopCallerCheck : 1;
ULONG AuditRopCallerCheck : 1;
ULONG EnableRopSimExec : 1;
ULONG AuditRopSimExec : 1;
ULONG ReservedFlags : 20;
} DUMMYSTRUCTNAME;
} DUMMYUNIONNAME;
} PROCESS_MITIGATION_PAYLOAD_RESTRICTION_POLICY, *PPROCESS_MITIGATION_PAYLOAD_RESTRICTION_POLICY;
View the official Windows Driver Kit DDI referenceNo description available.
Stores information about process mitigation policy.
DUMMYUNIONNAMEDUMMYUNIONNAME.FlagsBitwise of flags in this structure.
DUMMYUNIONNAME.DUMMYSTRUCTNAMEDUMMYUNIONNAME.DUMMYSTRUCTNAME.EnableExportAddressFilterIf set this enables the Export Address Filter mitigation in enforcement mode for the process.
DUMMYUNIONNAME.DUMMYSTRUCTNAME.AuditExportAddressFilterIf set this enables the Export Address Filter mitigation in audit mode for the process.
DUMMYUNIONNAME.DUMMYSTRUCTNAME.EnableExportAddressFilterPlusIf set this enables the Export Address Filter Plus mitigation in enforcement mode for the process.
DUMMYUNIONNAME.DUMMYSTRUCTNAME.AuditExportAddressFilterPlusIf set this enables the Export Address Filter mitigation in audit mode for the process.
DUMMYUNIONNAME.DUMMYSTRUCTNAME.EnableImportAddressFilterIf set this enables the Import Address Filter mitigation in enforcement mode for the process.
DUMMYUNIONNAME.DUMMYSTRUCTNAME.AuditImportAddressFilterIf set this enables the Import Address Filter mitigation in enforcement mode for the process.
DUMMYUNIONNAME.DUMMYSTRUCTNAME.EnableRopStackPivotIf set this enables the stack pivot anti-ROP (Return-oriented-programming) mitigation in enforcement mode for the process.
DUMMYUNIONNAME.DUMMYSTRUCTNAME.AuditRopStackPivotIf set this enables the stack pivot anti-ROP (Return-oriented-programming) mitigation in audit mode for the process.
DUMMYUNIONNAME.DUMMYSTRUCTNAME.EnableRopCallerCheckIf set this enables the caller check anti-ROP (Return-oriented-programming) mitigation in enforcement mode for the process. Applies to 32-bit processes only.
DUMMYUNIONNAME.DUMMYSTRUCTNAME.AuditRopCallerCheckIf set this enables the caller check anti-ROP (Return-oriented-programming) mitigation in audit mode for the process. Applies to 32-bit processes only.
DUMMYUNIONNAME.DUMMYSTRUCTNAME.EnableRopSimExecIf set this enables the simulated execution anti-ROP (Return-oriented-programming) mitigation in enforcement mode for the process. Applies to 32-bit processes only.
DUMMYUNIONNAME.DUMMYSTRUCTNAME.AuditRopSimExecIf set this enables the simulated execution anti-ROP (Return-oriented-programming) mitigation in audit mode for the process. Applies to 32-bit processes only.
DUMMYUNIONNAME.DUMMYSTRUCTNAME.ReservedFlagsReserved.