perses icon indicating copy to clipboard operation
perses copied to clipboard

X86 Mutation Engine with Portable Executable compatibility.

Results 3 perses issues
Sort by recently updated
recently updated
newest added

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); } }...