We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to obfuscate a qt app I'm getting the error: Utils::Printf::Fail("Unsupported debug table type");
qt
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.
IMAGE_DEBUG_TYPE_POGO
// only CV is supported for now
Any chance of supporting it?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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
The value on the message box indicates
IMAGE_DEBUG_TYPE_POGO
.Any chance of supporting it?
The text was updated successfully, but these errors were encountered: