perses
perses copied to clipboard
X86 Mutation Engine with Portable Executable compatibility.
If possible, I would like to enhance the support for SEH :)
template class RelocationDirectory : pepp::msc::NonCopyable { private: //! Setup the directory void _setup(Image* image) { m_image = image; m_base = reinterpret_cast( &image->base()[image->getPEHdr().rvaToOffset( image->getPEHdr().getOptionalHdr().getDataDir(DIRECTORY_ENTRY_BASERELOC).VirtualAddress)]); //this line m_section = &image->getSectionHdrFromVa(image->getPEHdr().getOptionalHdr().getDataDir(DIRECTORY_ENTRY_BASERELOC).VirtualAddress); } }...