Advertisement
joxeankoret

Enums used in the video https://www.youtube.com/watch?v=YiGKVouxxa4

Mar 7th, 2021
850
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.75 KB | None | 0 0
  1. enum peb_bitfield_t
  2. {
  3.   ImageUsedLargePages = 0x1,
  4.   IsProtectedProcess = 0x2,
  5.   IsLegacyProcess = 0x4,
  6.   IsImageDynamicallyRelocated = 0x8,
  7.   SkipPatchingUser32Forwarders = 0x10,
  8.   IsPackagedProcess = 0x20,
  9.   IsAppContainer = 0x40,
  10.   IsProtectedProcessLight = 0x40,
  11.   IsLongPathAwareProcess = 0x80,
  12. };
  13.  
  14. enum SameTebFlags_t
  15. {
  16.   DbgSafeThunkCall = 0x1,
  17.   DbgInDebugPrint = 0x2,
  18.   DbgHasFiberData = 0x4,
  19.   DbgSkipThreadAttach = 0x8,
  20.   DbgWerInShipAssertCode = 0x10,
  21.   DbgRanProcessInit = 0x20,
  22.   DbgClonedThread = 0x40,
  23.   DbgSuppressDebugMsg = 0x80,
  24.   RtlDisableUserStackWalk = 0x100,
  25.   RtlExceptionAttached = 0x200,
  26.   InitialThread = 0x400,
  27.   SessionAware = 0x800,
  28.   LoadOwner = 0x1000,
  29.   LoaderWorker = 0x2000,
  30.   SkipLoaderInit = 0x4000,
  31. };
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement