-
-
Save schrodyn/6ca82fa3deefb413c3316ae8591bcdd5 to your computer and use it in GitHub Desktop.
PE_BASE struct to help with IDA markup of PE access
This file contains hidden or 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