Hello,
I have build a DLL as a PE32+ executable (64Bit).
With pefile in Python I read the ImageBase with pe.OPTIONAL_HEADER.ImageBase. The result in hex format is 0x180000000.
But when I use a Portable Executable Viewer like NikPEViewer the ImageBase is 0x80000000.
Hello, I have build a DLL as a PE32+ executable (64Bit). With pefile in Python I read the ImageBase with
pe.OPTIONAL_HEADER.ImageBase
. The result in hex format is0x180000000
. But when I use a Portable Executable Viewer like NikPEViewer the ImageBase is0x80000000
.I think
0x180000000
is not the correct address.