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

DetourCreateRemote->ReadProcessMemory failed. (3) #157

Open
ArturAlekseev opened this issue Sep 10, 2023 · 2 comments
Open

DetourCreateRemote->ReadProcessMemory failed. (3) #157

ArturAlekseev opened this issue Sep 10, 2023 · 2 comments

Comments

@ArturAlekseev
Copy link

ArturAlekseev commented Sep 10, 2023

I have this error now (version 1.4). Using latest x64dbg.

  1. Select Themida profile.
  2. Run target and get error at start.
    In logs:
    ERROR: Failed to write hook dll data

It only happens when any of these options enabled:
NtUserFindWindowEx
NtUserBuildHwndList
NtUserQueryWindow
NtUserGetForegroundWindow

It happens at:

ReadProcessMemory(hProcess, lpFuncOrig, originalBytes, sizeof(originalBytes), nullptr)
in DetourCreateRemote (InjectorCLI).

Params:
hProcess = 934
lpFuncOrig = 0x000002876e642180 (in win32u.dll address)

In target 0x000002876e642180 address is not initialized.
The address in target is 00007FF847802180 (NtUserFindWindowEx).

It is because win32u.dll base address in x64dbg process is different (2876E640000) and in target win32u.dll base is "normal" (7FF847800000).

The error happens because user dll VAs are got using GetProcessAddress from host process (in my case x64dbg process). But injection is done into target process (program loaded by x64dbg) where win32u.dll has different base address.
If accidently in same case target process will have same address initialized (but not with win32u.dll) then injection will happen not into win32u.dll functions, resulting in unknown buggy behavior.

@scanleale
Copy link

same problem while use Themida profile

@ArturAlekseev
Copy link
Author

same problem while use Themida profile

You can download build from my fork.

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

2 participants