Skip to content
New issue

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

Unsupported debug table type #2

Open
ghost opened this issue Sep 16, 2022 · 0 comments
Open

Unsupported debug table type #2

ghost opened this issue Sep 16, 2022 · 0 comments

Comments

@ghost
Copy link

ghost commented Sep 16, 2022

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

0 participants