Skip to content

Commit e12bdaf

Browse files
authored
Merge pull request #174 from trailofbits/yarden/extended-dll-characteristics
Add value for CETCOMPAT
2 parents abfb09e + de098b6 commit e12bdaf

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pe-parser-library/include/pe-parse/nt-headers.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,9 @@ constexpr std::uint16_t IMAGE_DLLCHARACTERISTICS_APPCONTAINER = 0x1000;
219219
constexpr std::uint16_t IMAGE_DLLCHARACTERISTICS_WDM_DRIVER = 0x2000;
220220
constexpr std::uint16_t IMAGE_DLLCHARACTERISTICS_GUARD_CF = 0x4000;
221221
constexpr std::uint16_t IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE = 0x8000;
222+
223+
// Extended DLL characteristics
224+
constexpr std::uint16_t IMAGE_DLLCHARACTERISTICS_EX_CET_COMPAT = 0x0001;
222225
#endif
223226
// clang-format on
224227

0 commit comments

Comments
 (0)