Created
May 24, 2023 23:09
-
-
Save herrcore/89337802f8ba8b6d36c80035b054b256 to your computer and use it in GitHub Desktop.
PE_BASE struct to help with IDA markup of PE access
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
union PE_BASE { | |
PVOID baseAddress; | |
IMAGE_DOS_HEADER *mz; | |
IMAGE_NT_HEADERS *pe; | |
}; | |
union PE_BASE64 { | |
PVOID baseAddress; | |
IMAGE_DOS_HEADER *mz; | |
IMAGE_NT_HEADERS64 *pe; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment