Skip to content

Commit

Permalink
Merge pull request #174 from trailofbits/yarden/extended-dll-characte…
Browse files Browse the repository at this point in the history
…ristics

Add value for CETCOMPAT
  • Loading branch information
yardenshafir authored Nov 14, 2022
2 parents abfb09e + de098b6 commit e12bdaf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pe-parser-library/include/pe-parse/nt-headers.h
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,9 @@ constexpr std::uint16_t IMAGE_DLLCHARACTERISTICS_APPCONTAINER = 0x1000;
constexpr std::uint16_t IMAGE_DLLCHARACTERISTICS_WDM_DRIVER = 0x2000;
constexpr std::uint16_t IMAGE_DLLCHARACTERISTICS_GUARD_CF = 0x4000;
constexpr std::uint16_t IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE = 0x8000;

// Extended DLL characteristics
constexpr std::uint16_t IMAGE_DLLCHARACTERISTICS_EX_CET_COMPAT = 0x0001;
#endif
// clang-format on

Expand Down

0 comments on commit e12bdaf

Please sign in to comment.