I'm trying to obfuscate a qt app I'm getting the error:
Utils::Printf::Fail("Unsupported debug table type");
I put a breakpoint on it and i could see that
PIMAGE_DEBUG_DIRECTORY lpDebugTable = (PIMAGE_DEBUG_DIRECTORY)((DWORD_PTR)RawPE.lpDataBuffer + dwDebugBaseOffset);
if (lpDebugTable->Type != IMAGE_DEBUG_TYPE_CODEVIEW)
{
// only CV is supported for now
MessageBox(NULL, std::to_string(lpDebugTable->Type).c_str(), "Error", MB_ICONERROR | MB_OK);
Utils::Printf::Fail("Unsupported debug table type");
return FALSE;
};
The value on the message box indicates IMAGE_DEBUG_TYPE_POGO.
// only CV is supported for now
Any chance of supporting it?
I'm trying to obfuscate a
qtapp I'm getting the error:Utils::Printf::Fail("Unsupported debug table type");I put a breakpoint on it and i could see that
The value on the message box indicates
IMAGE_DEBUG_TYPE_POGO.Any chance of supporting it?