Skip to content

Unsupported debug table type #2

@ghost

Description

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?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions