Portable Executable (PE)
The Portable Executable (PE) file format is mainly used on Windows for executable files (.exe) or dynamically linked libraries (DLL).
Common PE sections include:
.text: executable code.data: variables.rdata: constants.pdata: imported functions.pdata: exported functions
These can be visualized from pestudio.
We can examine DLL imports with CFF Explorer (π»).
π» To-do π»
Stuff that I found, but never read/used yet.
MZ(4D 5A) indicates an executable file- 0xrick's blog