Skip to content

Instantly share code, notes, and snippets.

@okumura
Last active January 31, 2024 09:57
Show Gist options
  • Save okumura/7173625 to your computer and use it in GitHub Desktop.
Save okumura/7173625 to your computer and use it in GitHub Desktop.
Get PEB for Windows.
LPVOID mw32GetPeb() {
#if defined(_WIN64)
UINT64 uiPeb = __readgsqword(0x60);
return (LPVOID) (UINT_PTR) uiPeb;
#else
UINT32 uiPeb = __readfsdword(0x30);
return (LPVOID) (UINT_PTR) uiPeb;
#endif
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment